Written by Administrator
In Flex you have an Image showing a broken image link if you have not set an image on it. How do you get it to not show the broken image link? You do this by setting the broken image skin, you can also sent the broken image skin to null. The mx:Image then does not show the broken image link.
1 |
|
Written by Philip
Contact : This e-mail address is being protected from spambots. You need JavaScript enabled to view it
To Embed a local font in Flex using CSS you will first need to create your CSS file. Once created specify your local font using the following @font-face. And say you wish to access your embeded font from the CSS use font-family:ArialEmbed to access it.
1 |
@font-face{ |
Written by Philip
To make a Flex Hand Cursor appear on something like an or , try the following from the MXML. useHandCursor="true" mouseChildren="false" buttonMode="true".
.
Contact : This e-mail address is being protected from spambots. You need JavaScript enabled to view it
To remove the headers from a Flex Datagrid set the showHeaders property to False. i.e. showHeaders="false".
Written by Philip
Remember you'll need to import mx.utils.StringUtil; so your code should look like as follows.
|
var stringWithSpacesOnEnd:String = "hello "; |
Page 1 of 2