hey you guys once again need your help … like always hehe
i did a search on kirupa already but cant find one tutorial or source file of a volume control but not a slider, turnable volume control see example at
hehe, belive it or not that works exaclty in the same way as my footer
the volume thing goes just in 180 degrees ok?
so 0 degrees are 0% volume and 180 degrees are 100& volume
then, you have to activate a function onEnterFrame that will be refreshing the volume acording to the position (angle) of the volume controller
onPress + onMouseMove you have to acivate a function that will change the _rotation of the controler clip depending on the position of the mouse:
function rotate(clip){
a = _parent[clip]._y-_parent._ymouse;
b = _parent[clip]._x-_parent._xmouse;
angleA = Math.atan2(a, b);
degrees = angleA/(Math.pi/180);
_parent[clip]._rotation = degrees;}
that code must be placed inside another movie clip,that can be an empty one