Ilyas

I’m not sure we’re talking about the same thing because what I was doing was stupid :stuck_out_tongue: In fact I had forgotten to export my font for Actionscript ( :shame: )

Very nice tute by the way. actionscript-toolbox is an amazing site…

I exported mine for actionscript. I set it’s linkage settings and everything, but it wouldn’t work, then if I set embedFonts to false it worked fine for me, but of course not for people without the font.

Argh… eh, perhaps I will give it a try later tonight. I gotta go now, all of your footers are great man.

Oh and yeah, as-toolbox rocks.

Yep, fonts are evil…

See you, man :slight_smile: (and thanks :love: )

Just testing: can you see the font now?

Yes sir…

Thanks, my boy :cowboy:

happy birthday Ilyas… youve been here a whole year

Haha! True :slight_smile: But I was already there before, on the previous board :beam:

Yeah you are pom on actionscript.org right?

Yes I am :slight_smile: I haven’t been on as.org for quite as long as I’ve been here tough. This is the place that got me started :beam:

yeah! AS.org is for too serious stuff for serious people looking for too serious stuff! :slight_smile:

Actually, I like their Cool Sites section :slight_smile: Other than that, it’s true that there are very few people who hang out in their random forum :-\

yeah, but it’s still a great place to learn. I first stated learning intermediate scripting there then continued here!

are u guys talkin about some site where i can learn action script?
cool, is it rite from the basic??
as.org opened- american singles dotcom :stuck_out_tongue:
ahahhaa
http://actionscript.org/
???
hey i m gona pm either of u guys to help me n stuff:P
thanx in advance :bad:

Yea, AS.org is a dating service, but when we say it on a flash forum it is automatically mentally converted to actionscript.org :wink:

Great place indeed.

*Originally posted by lostinbeta *
**Great place indeed. **

Hmmm… i wonder wich site are u talking about :stuck_out_tongue:
hahahah
just kiddin m8 i know wat u meant

Are you sure :wink:

Ilyas: Since I have been experiencing much modem down time I have been experimenting with your motion blur code, I must say, that is some fun stuff to play around with!!! Here is one example of what I created…

http://www.lostinbeta.com/experimental/motionBlur2a.html

For anyone interested the code I used is…
[AS]TextField.prototype.updateTimeValue = function() {
myTime = new Date();
h = myTime.getHours();
m = myTime.getMinutes();
s = myTime.getSeconds();
ms = myTime.getMilliseconds().toString();
h == 12 || h == 0 ? hours=12 : h<10 ? hours=“0”+(h%12) : hours=h%12;
m<10 ? minutes=“0”+m : minutes=m;
s<10 ? seconds=“0”+s : seconds=s;
ms.length<2 ? milliSeconds=“00”+ms : ms.length<3 ? milliSeconds=“0”+ms : milliSeconds=ms;
h<12 ? amPM=“AM” : amPM=“PM”;
this.text = hours+" . “+minutes+” . “+seconds+” . “+milliSeconds+” . "+amPM;
};
nClips = 10;
time._visible = false;
time.timeBox.autoSize = true;
this.onEnterFrame = function() {
rot = 810*Math.sin(t += .01)Math.cos(b += .01);
for (var i = 0; i<nClips; i++) {
var clip = time.duplicateMovieClip(“time”+i, i);
clip._x=275, clip._y=200;
clip._rotation = i/nClips
rot;
clip._alpha = i/(nClips)*100;
clip.timeBox.autoSize = true;
clip.timeBox.updateTimeValue();
clip._name == “time”+(nClips-1) ? myColor=new Color(clip).setRGB(0xff0000) : null;
updateAfterEvent();
}
};[/AS] You may have to adjust the position of the textbox in the pom clip, you can get some interesting effects with that :slight_smile:

Haha! that’s sweet, Lost :slight_smile:

=) Thanks Ilyas!!!

Means a lot coming from you (my mentor) :beam: