Ilyas

Thats awesome Ilyas. I hope you don’t mind if I experiment with this :wink:

Please do, my friend :slight_smile:

Yippie! Now just to get ideas on what to do. Which shouldn’t be hard.

Thanx for the source ilyaslamasse, i never expected u wud do that :slight_smile: u r cool :slight_smile:

i tried that and my mouse arrow disappears when i take it over the movie.Am i missing something?
:q:
i m attaching my fla file, dunno if i did something wrong,but was it suppose to hide my mouse pointer only???(-:

*Originally posted by ilyaslamasse *
All you need is a symbol called “pom” on the scene and this code on the first frame of the movie (and a high frame rate)
If you don’t have that pom clip, all it will do is hide the mouse… :phil:

oh ok kool, well that pom symbol is everything :slight_smile:
anyway, thanx m8

I’ve updated the first one a tiny bit :slight_smile:

Hi pom
This is exactly what i m looking for a client, not even 1 % change in it.Amazing as ever, hopefully i can find something like this.Great job and it was an amazing entry at the flash menu battle too, thanx for the same =)

Do you want the source? (pretty much the same as posted before).

i have the source m8,but u know i am so dumb wid action scripting, dont know how it works and stuff, last time i tried it and u said i need tht symbol :stuck_out_tongue: hehehe, thanx for the offer tho :slight_smile: i kno tht’s the main thing.

thatS AmaZInG!! GrEat PieCe of Art

Still have’nt found anything even close…
we 'v got a winner, 2nd entry kicks some serious butt.
:stunned: jaz

Thanks Neo Geo :slight_smile: By the way, where are you from in Malaysia? :slight_smile:

I’m from Kuala Lumpur… capital city of malaysia…
been here before?

Yep, I spent some time in Singapore last year, so I took a few trips through Malaysia. I didn’t really like KL so much, it’s definitely too hot for me :P, I prefered Malacca and the Cameron Highlands (I froze my *** up there but ****! It’s beautiful!).

Cheers.
Ilyas :slight_smile:

Can you see the font in the last one??

Code:

// code by Zemax
cs = function (r, x, y) {
	this.createEmptyMovieClip("S"+z, (++z));
	var M = this["S"+z];
	M._x = x;
	M._y = y;
	for (var i=0; i<250; i++) {
		var a = i/8 * 1.5707963267948966192313216916398;
		var x = 1/5 * i * Math.cos(a);
		var y = 1/5 * i * Math.sin(a);
		var c = Math.round(255 * i / 500);
		M.lineStyle(5, (c<<16) + (c<<8) + c);
		M.lineTo(xo+x, yo+y, x, y);
		var xo = x;
		var yo = y;
	}
	M.onEnterFrame = function () {
		this._rotation += r;
	}
}
cs( 10, 50, 30);
this.createTextField("T", 1000, 130, 25, 300, 20);
//T.embedFonts = true;
var tf = new TextFormat();
tf.size = 8;
tf.font = "FFF Galaxy";
tf.selectable = false;
tf.color = "0";
T.text = "You are under control";
T.setTextFormat(tf);

Ilyas: No I cannot see the font in the last one. I don’t have FFF Galaxy installed and if it is created via AS you will have to import the font into the library and set embedFonts to true.

Also, maximum amount of entries is 2… you will have to remove 1 :-\ :frowning:

Lost >> Nevermind, I’ve figured it out (yipee! I suck with fonts, I know… :frowning: )

And I know I’m only allowed to 2, this was just for fun…

pom :phil:

OMG I HAVE THE SAME PROBLEM!!! I thought I was just being stupid, but I cannot at all get it to work!

Just to double check if I was doing it right I check out this tutorial from actionscript-toolbox…

http://actionscript-toolbox.com/flashmx_createtext.php

My code was almost exactly the same and it still didn’t work.

Geez, you coulda replied to me instead of editing your last post and making me look like an idiot :stuck_out_tongue:

So how did you fix your problem? I would REALLY like to know.