• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Anyone familiar with Flash

danklumpp

Senior member
I have a Flash template that I need some help on. Does anyone know how to link some text to another frame?

Basically, this is how the template is set up: All of the different pages are in one movie clip. There is six pages, so there are six frames. If I would create one more page (a frame), how could I link some text to it? I read something about "_parent" in ActionScript, but I didn't understand any of it.
 
you have to give that all inclusive movieclip a name, then use the code:

on (release) {
_level0.movieclipinstancename.gotoAndStop(Frame#);}
 
Originally posted by: danklumpp
Thanks a million Mo0o, I just don't understand ActionScript very well, I need to learn it more.

basically _level0 refers to the very basic layer, which is the original canvas. Then you have the instance name, so flash will know to go into that movieclip's own timeline to seek out the the specific frame.

The on (release) refers to when you release the mouse on some object. I'm not sure if you're just using plain text as a link or not but if you're making a button out of only text keep in mind you have to clip on the black areas of the text for it to register.
 
I'm not sure if you're just using plain text as a link or not but if you're making a button out of only text keep in mind you have to clip on the black areas of the text for it to register.

What are the black areas? How do you clip it on.

Thanks

EDIT: The movie clip name is "mc_sp_main", so that would be the "movieclipinstancename" right? And the newly created page is in the 8th frame, that would be the frame#.
 
Originally posted by: danklumpp
I'm not sure if you're just using plain text as a link or not but if you're making a button out of only text keep in mind you have to clip on the black areas of the text for it to register.

What are the black areas? How do you clip it on.

Thanks

Black areas as in, the actual text lines, not the gaps in between. so a "s" you have to click on the squiggly area and not the gaps". ANd what do u mean clip it on, if you're wondering how to solve the problem, you can either add an invisible box behind the text.
 
You said to clip on the black areas of the text for it to register.

EDIT: nevermind, you edited yours to answer my question
 
Could someone explain the levels to me again?

Here is what I tried, but it didn't work:
on (release){_level0.mc_sp_main.gotoAndStop(Frame#8);}

"mc_sp_main" and "Frame#8) are the names of the movie clip and the frame # within it.

What level do I need to use?
 
Back
Top