Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Creating Enhanced CD

New Here ,
Dec 10, 2013 Dec 10, 2013

     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

TOPICS
ActionScript
789
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Dec 10, 2013 Dec 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");

}

Translate
New Here ,
Dec 10, 2013 Dec 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.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 10, 2013 Dec 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");

}

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guru ,
Dec 13, 2013 Dec 13, 2013
LATEST

While you are right that your project is perfectly doable with Flash, you realize that there are tons of freeware porducts out there that specialize in that kind of requirement ?

( http://www.cupidsystems.com/products/smart-cd-menu-creator/).

Apart from being a not-so-useful exercise in learning an (outdated) programing language version: expect some trouble when you actually burn that CD and want to distribute it to your firends or add it to an online portfolio.

Just saying.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines