[SIZE=1]hi guys,
i want to create a pop up text on the bottom of my flash application whenever a button
is rollovered. this makes it convenient for the user to know what is it about before proceeding to click
on the button to find out what it is. i was thinking about having a variable thingy. meaning that.
each image contains some kind of overwriting data, when the image is rollovered,
the dyamic text located on the bottom will automatically refreshed from an empty data to
the input of the image rollover given, when it is rollout, the data will be emptied back
is it too difficult to do? i dont have the basic skills in making the variable actionscript
========================================================================
Credit: napulj + macaroni ted
[/SIZE][SIZE=1]**Solution 1 : Napulj method
**Create 1 button & 1 dynamic text
Give the dynamic text instance name = “info”
Add the following codes in the button
[/SIZE]
on(rollOver){
info.text="this is a button" ;
info._visible = true ;
}
on(rollOut){
info._visible = false ;
}
[SIZE=1]**Solution 2 : Macaroni Ted method
**Create 1 button & 1 dynamic text
Give the dynamic text variable name = “info”
Add the following codes in the button
[/SIZE]
on(rollOver){
_root.info="this is a button"
}
on(rollOut){
_root.info=""
}