Posted by: flashfever on: October 19, 2009
When using control just like play pause on any presentation the animation play slow or fast. That mean the voice is not properly co-ordinate with animation.
To solve this problem follow the given step:
1. Putting voice over on the timeline.
2. Go to publishing setting and follow the setting of the sound from given screen short.
Posted by: flashfever on: March 9, 2009
//Create a movie clip. Instant Name is image_mc.
//Put this script on the timeline.
var Xcor = image_mc._x;//X coordinate of MovieClip
var Ycor = image_mc._y;//Y coordinate of Movie Clip
var Wmap = image_mc._width;//Widht of Movie Clip
var Hmap = image_mc._height;//Height of Movie Clip
image_mc.onRelease = function() {
var tempWidth = Wmap;//Getting a fix ratio to increase the Movie Clip
var tempHeight = Hmap;
var xMouse = _root._xmouse;//Getting the X value of Mouse on the Stage
var yMouse = _root._ymouse;//Getting the Y value of Mouse on the Stage
var tempX:Number = xMouse-Xcor;//What is the different between Origin of Movie Clip and Mouse
var tempY:Number = yMouse-Ycor;
//trace(‘tempX’+tempX+’|'+’tempY’+tempY);
this.onEnterFrame = function() {
if (tempWidth>=2) {
var tWidth = tempWidth/2;
var tHeight = tempHeight/2;
var tX = tempX/2;
var tY = tempY/2;
tempWidth = tWidth;
tempHeight = tHeight;
tempX = tX;
tempY = tY;
image_mc._width += tWidth;
image_mc._height += tHeight;
image_mc._x = image_mc._x-tX;
image_mc._y = image_mc._y-tY;
} else {
delete this.onEnterFrame;// if Incremetnt value is less then 2 then delete onEnterFrame
}
};
};