How to remove music and music icon?
Follow these simple instructions to remove music from the template:
- open index.fla, and unlock layer in the timeline called:
music_player_fullscreen
- double click on the movieclip on the stage called “console”.
- delete sound icon and loading text
- now, in the timeline select the fifth frame of the layer called AS
- open the actionscript panel, go to last lines and remove the lines between
and
-re-publish the index
- open index.fla, and unlock layer in the timeline called:
music_player_fullscreen
- double click on the movieclip on the stage called “console”.
- delete sound icon and loading text
- now, in the timeline select the fifth frame of the layer called AS
- open the actionscript panel, go to last lines and remove the lines between
//---------------------------------------------------------------------------- // Sound Variable to create sound object to load the background sound sound //----------------------------------------------------------------------------
and
//---------------------------------------------------------------------------- // Fullscreen function //----------------------------------------------------------------------------
-re-publish the index
How to give the menu buttons a sound?
It’s very easy to add a sound to menu buttons.
- Open your index.fla and open actionscript panel.
- Select the fourth frame of the layer called AS.
- In the actionscript panel add this lines ad the end of the code:
- in the data/sounds folder there should already be a file called 1.mp3. this is the sound of the button, you can change it with the sound you like, simply rename it.
- Open your index.fla and open actionscript panel.
- Select the fourth frame of the layer called AS.
- In the actionscript panel add this lines ad the end of the code:
//---------------------------------------------------------------------------------------------------------------------
// Sound Variable to create sound object to load the rollover sound
//---------------------------------------------------------------------------------------------------------------------
//
var s:Sound = new Sound();
s.loadSound("data/sounds/1.mp3");
s.setVolume(80);
//
- that’s all.- in the data/sounds folder there should already be a file called 1.mp3. this is the sound of the button, you can change it with the sound you like, simply rename it.


231 Purchases
124 Comments