Archive for the ‘Flex Mobile’ Category

Job: BMC Software looking for Flex Developer

Thursday, October 6th, 2011

The company I work for BMC Software, is looking for a mid-level to senior Flex/AIR developer.  This position is on the User Experience Design team and is located in Austin, Texas.  We are currently working on cutting edge mobile projects using Flex/AIR, AIR 3.0 and Flex 4.5.2 (4.6) prerelease.   This is a full-time position.  You can contact me directly if you have questions about the job.

Please check out the link below to apply, make sure to put Jason Graham as the referral name, so I get your information sent to me.

http://careers.peopleclick.com/careerscp/client_BMC/external/gateway.do?functionName=viewFromLink&jobPostId=28100&localeCode=en-us

Simple way to hide ScrollBar on Mobile List

Tuesday, August 30th, 2011

I am working on a project where I had the need to hide the scrollbar in my Flex mobile application.  Initially I went down the path of attempting to create skins for the scrollbar and remove the HScrollBar which I wanted to hide, this didn’t work, I then tried to set the visibility in the skin and had problems as well.  After fiddling around with this I realized a simple one line change in my CSS file made this happen.   The following would hide the horizontal scrollbar on all List in your application.

s|List s|HScrollBar
{
skinClass: ClassReference("spark.skins.mobile.supportClasses.MobileSkin");
}