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

help with a flash movie

Guest
Jun 21, 2014 Jun 21, 2014

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.

TOPICS
ActionScript
231
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 ,
Jun 21, 2014 Jun 21, 2014

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.

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
Guest
Jun 21, 2014 Jun 21, 2014

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

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 ,
Jun 21, 2014 Jun 21, 2014

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");

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
Guest
Jun 22, 2014 Jun 22, 2014

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

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 ,
Jun 22, 2014 Jun 22, 2014
LATEST

you should go through some basic as3 tutorials.

google: actionscript 3 novice tutorial

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