Skip to main content
Participant
December 10, 2013
Answered

Creating Enhanced CD

  • December 10, 2013
  • 1 reply
  • 841 views

     I'm interested in making an enhanced CD for a personal project. Ultimately I want it to look something like this:

http://www.youtube.com/watch?v=AQJrmBiCYlA

     My knowledge of flash is fairly basic, but I'm somewhat comfortable working with the program and have already finished pieces to this project.

     I've made a compilation video from recordings and music videos that I would like to use as the intro. I've imported it to Flash already and it plays in it's own scene, just confused on how to create buttons and link from scene to scene. I've also got the player/jukebox working properly.

     I've been googling for tutorials for the last hour to no avail; so I decided to try my luck here. If anyone knows of any tutorials or would be kind enought to at least get me started that would be great.

Thank you in advance!

-Kevin

This topic has been closed for replies.
Correct answer kglad

create a button (insert>new symbol>button) and place it on stage.  in the properties panel while it's selected, assign it an instance name, eg (gotoMenu_btn).

click on the frame with your menu and in the properties panel assign a frame name (eg, menu_frame).

you can then attach to the frame that contains gotoMenu_btn (in the actions panel):

gotoMenu_btn.onRelease=function(){

_root.gotoAndStop("menu_frame");

}

1 reply

Participant
December 10, 2013

I would like the hierarchy of the flash project to go like this:

-Main Intro (with "jump to menu" button)

-Sub Intro (with "jump to menu" button)

-Menu

     -Player/Jukebox

     -Videos

     -Bio

Working in ActionScript 2 and CS5.

kglad
Community Expert
kgladCommunity ExpertCorrect answer
Community Expert
December 10, 2013

create a button (insert>new symbol>button) and place it on stage.  in the properties panel while it's selected, assign it an instance name, eg (gotoMenu_btn).

click on the frame with your menu and in the properties panel assign a frame name (eg, menu_frame).

you can then attach to the frame that contains gotoMenu_btn (in the actions panel):

gotoMenu_btn.onRelease=function(){

_root.gotoAndStop("menu_frame");

}