Flash ActionScript Question...
RWB
Icrontian
OK, I'll try to explain as best as possible.
Something is wrong with my code... I am a complete noob right now. Basically I have a bunch of videos I need to navigate between... the videos are both my transitions and my information screens(all done in 3D). So right now I have 4 layers. From top to bottom they are: "labels", "actions", "buttons", and "content". "labels" being where I place my frame labels, "actions" being where I place my action scripts, "buttons" being where my buttons are, and "content" where my videos lay out across a thousand frames
The code I placed in the actions frame so far is...
images_btn.onRelease = function() {
content.nav = "main_to_images";
};
"images_btn" being the instance name given to the button I have that should go to the frame label "main_to_images". It should be pretty straight forward, but I am too used to Director.
What am I missing?
Something is wrong with my code... I am a complete noob right now. Basically I have a bunch of videos I need to navigate between... the videos are both my transitions and my information screens(all done in 3D). So right now I have 4 layers. From top to bottom they are: "labels", "actions", "buttons", and "content". "labels" being where I place my frame labels, "actions" being where I place my action scripts, "buttons" being where my buttons are, and "content" where my videos lay out across a thousand frames
The code I placed in the actions frame so far is...
images_btn.onRelease = function() {
content.nav = "main_to_images";
};
"images_btn" being the instance name given to the button I have that should go to the frame label "main_to_images". It should be pretty straight forward, but I am too used to Director.
What am I missing?
0
Comments