Copy link to clipboard
Copied
hello! I made a video flash to my site that I'm building with scenes and the scenes conected with actionscript2 how can it be with actionscript3 with buttons play, stop forwerd, back, and how can the noise of the sound not to be loud of all scene more or less (I did not put sound in every scene because it makes noise i want to put in every scene) what to do and is there a guide to know how you can put actionscript3 in sceness? thanks galia.
Copy link to clipboard
Copied
you can use the adobe flash help files for as3 info, though the as2 and as3 goto methods are identical.
you should use the as3 sound class to control your sounds instead of adding sounds to frames.
Copy link to clipboard
Copied
hello! i don't learned how to put sound with as3 class i don't know how to use that and were is how to connect scenes with as3? thanks galia
Copy link to clipboard
Copied
for your sound, use,
var s:Sound = new YourSoundClass; // assign a class to your sound symbol
var sc:SoundChannel=s.play();
var st:SoundTransform=sc.soundTransform;
st.volume=.5;
sc.soundTransform=st;
for your scene navigation, use:
this.gotoAndPlay("whateverframe","whateverscene");
Copy link to clipboard
Copied
hello! first can you tell me were to put the code Exactly and the sound? i tried in the past with gotoAndPlay but it did not work (I learned it with codesnippets)and i had to go to actionscript2 (this is a project that i have to send) i have buttons play, stop ,forewerd ,back can you tell me with every buttons how to do it in code snippets thanks galia
Copy link to clipboard
Copied
you should go through some basic as3 tutorials.
google: actionscript 3 novice tutorial
Find more inspiration, events, and resources on the new Adobe Community
Explore Now