Volume Control in SWF Movie

Im not much keen of action script.I managed to add frames and sound to my SWF.But I dont really know how to add volume control.Can anyone tell me how to add volume control??

Assuming your SWF is using Actionscript 3.0 you can set the volume to 50% by doing:

SoundMixer.soundTransform = new SoundTransform(0.5);

This sets the volume for ALL the sound in your SWF. You will need to make sure you import those two classes with:

import flash.media.SoundMixer;
import flash.media.SoundTransform;

It must be using action script,it has no another way