full flash screen
full flash screen
Out of context: Reply #16
- Started
- Last post
- 31 Responses
- sureshot0
create an empty _mc..name it name it : bg
drop your image/whateva into it.
drop this code in the first keyframe of your movie:
(the copy/paste thingy might Fck this code tho.)
Stage.scaleMode = "noScale";
Stage.align = "lt";
this.onResize = function()
{
updatestageStuff();
}this.onEnterFrame = function()
{
updateStageStuff();
}Stage.addListener(this);
_global.updateStageStuff = function()
{var sw = Stage.width;
var sh = Stage.height;bg._width = sw;
bg._height = sh;
};
bg.onResize = function() {
this._x = Stage.width - this._width - 50;
this._y = Stage.height - this._height - 50;
}
Stage.addListener(controllo);
MovieClip.prototype.move = function(x,y){
this._x += (x-this._x)/0;
this._y += (y-this._y)/0;
}