فلیش میں سونامی مینو بنانا



// Copy the below ActionScript & Paste it in the first frame of your movie

menutriggerdist = 150;
// This is the distance under which the movie clips will start to change scale and move.
menumaxscale = 300;
// This is the maximum scale for each clip.
menumultiplier = 1.5;
// This is an arbitrary variable that affects the scaling rate.

// Copy the above ActionScript & Paste it in the first frame of your movie

 
 // Copy the below ActionScript & Paste it on any movie clips

on (press) {
// here starts normal movie clip event handlers
getURL("http://www.urdupages.com");
}
on (rollOver) {
this._alpha = 100;
}
on (rollOut) {
this._alpha = 25;
// here ends the normal movie clip event handlers
}
//sets event to mousemove or you'll get strange wobbling of your movie clips.
onClipEvent (mouseMove) {
//calculates distance from mouse to movie clip
dist = Math.sqrt(Math.pow(Math.abs(_xmouse), 2)+Math.pow(Math.abs(_ymouse), 2));
// if within a certain distance, triggerdistance, then start changing the clips scale
if (dist<=_root.menutriggerdist) {
currscale = (1-(dist/(_root.menumultiplier*_root.menutriggerdist)))*(_r oot.menumaxscale-100);
this._xscale = currscale;
this._yscale = currscale;
// if outside of triggerdistance, then make the scale equal to 100
} else {
this._xscale = 100;
this._yscale = 100;
}
}
// Copy the above ActionScript & Paste it on any movie clips



<<< پچھلا صفحہ اگلا صفحہ >>>

اگر آپ کے کمپوٹر میں اردو کی بورڈ انسٹال نہیں ہے تو اردو میں تبصرہ کرنے کے لیے ذیل کے اردو ایڈیٹر میں تبصرہ لکھ کر اسے تبصروں کے خانے میں کاپی پیسٹ کرکے شائع کردیں۔


اپنی قیمتی رائے سے آگاہ کریں

اہم اطلاع :- غیر متعلق,غیر اخلاقی اور ذاتیات پر مبنی تبصرہ سے پرہیز کیجئے, مصنف ایسا تبصرہ حذف کرنے کا حق رکھتا ہے نیز مصنف کا مبصر کی رائے سے متفق ہونا ضروری نہیں۔

کچھ میرے بارے میں

Powered by Blogger.