Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

buttons or movieclips? 1

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Here's my question lets say I have a circle in the center of a scene....good now when th mouse goes over (onmouseover)I want a movieclip to play eg a ball orbiting on that circle using the circle as it guide? question two lets say you have a series of pictutrs that you want to move continuously fr right to left again when the mouse goes over each pic I want it to enlarge ann display a box denoting it's discription whiout stopping now is that possible? if so how and if actionScripts aree used please xplain the hows and whys
thanks tino
 
on question one. I aint a flash user but I think this is how to do it. Create a movieclip of the animation you want for the mouse over. Now create a button and in the over frame put the movieclip. that should be all you need to do.

question 2. um, yeah its possible. you would need to use actionscripts, basically to detect the mouseover and mouseleave events. Use Set property and alter the scale to change the pics size. the text box is done using a text field and set valible in the mouseover script.

something like
on mouseover
set proerty "pic" "scale = 150"
end mouseover

on mouseleave
set property "pic" "scale = 100"
end mouseleave
hope this moves you in the correct direction.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top