Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
Tikis Mikis #1
LInkButton clikc animation
Ok so I have this mxml component:
<mx:Canvas x="0" y="2" width="469" height="22"
id="filterHideCanvas"
visible="true">
<mx:LinkButton id="showFilterForm" label="Filter Results"
click="displayFilterForm();"/>
</mx:Canvas>
and my click event handler function:
public function displayFilterForm():void
{
//Alert.show("sdf");
var move:Move = new Move();
move.xFrom = 0;
move.xTo = 150;
move.easingFunction = Bounce.easeOut;
move.duration = 1000;
showFilterForm.setStyle("showEffect", move);
}
But no animation takes place! can anyone help me!! Thank you
Tikis Mikis Guest
-
Linkbutton does not look like a linkbutton
OK, I almost got my problem solved. Zen is almost there! Just that a LinkButton control inside a column in my datagrid doesn't show like a link... -
Adding CSS to LinkButton
Hi, Does anyone know how I can add a css to the following link button. I want to add it so that Update, Cancel and Edit have the css in the form... -
keyframe animation detected on a resource that will marge -this animation willbe lost
hi, sorry for the question but need a quick fix for it. i am exporting from max 5, a quick animation of a shark tail moving but on export i am... -
LinkButton
Hi, I create a LinkButton in runtime, and I want to be able to access a function when a user clicks on the generated link in the page. My problem... -
Format of LinkButton..?
How can I make my linkbuttons color always blue even if they are visited or not, and make them underline in hover mode free from browser settings..



Reply With Quote

