all groups > flash (macromedia) > january 2004 >
You're in the

flash (macromedia)

group:

VERY basic Flash question


VERY basic Flash question pereldar
1/28/2004 11:16:29 PM
flash (macromedia):
I feel so ashamed, myself being an experienced flash user but... How do you incorperate scroll-over changes and changing page via clicking? I have never had to use the mouse before; I always used buttons outside of the flash movie and mainly used flash as an animation program. Please help.....


Re:VERY basic Flash question Carl Fink
1/29/2004 4:17:29 PM
[quoted text, click to view]

Do you mean mouse-over changes? They're built into buttons. For movieClips you have
to write code to make them work, but it's really easy code.

Changing page via clicking: again, you write code, using the getURL() command. You
can find the necessary syntax in the Flash help system.
--
Carl Fink
Please respond to the newsgroup only.


Re:VERY basic Flash question mlavalley
1/29/2004 5:38:00 PM
For a movie clip put this type of ActionScripting on the mc itself for a mouse over effect:

on mouseOver {
this.doSomething
that.doSomethingElse
}

to allow clicking on a movie clip use this code:

on release {
getURL("http://mywebsite.com");
//Or
gotoAndPlay("Scene2",1);
}

you could also use on press {} but on release {} is nice for buttons.

Re:VERY basic Flash question pereldar
1/30/2004 3:15:38 AM
Thanks a lot! Yeah, I got it now....



Referring URLs
http://dumples.com



AddThis Social Bookmark Button