Re: [Flashcoders] Inserting Smiley Images in Textarea

2008-06-13 Thread Elia Morling
Yes, I need full 8-bit smilies. :( Elia - Original Message - From: Kerry Thompson [EMAIL PROTECTED] To: 'Flash Coders List' flashcoders@chattyfig.figleaf.com Sent: Friday, June 13, 2008 2:40 AM Subject: RE: [Flashcoders] Inserting Smiley Images in Textarea Keith Reinfeld wrote: I

Re: [Flashcoders] looking at the maths for an osx style dock

2008-06-13 Thread allandt bik-elliott
thanks for the input guys - it's really helpful (always learning and all that) did anyone have an opportunity to look at the _x positioning stuff to see how it could be any better? alz On Thu, Jun 12, 2008 at 6:27 PM, Merrill, Jason [EMAIL PROTECTED] wrote:

Re: [Flashcoders] Inserting Smiley Images in Textarea

2008-06-13 Thread Ashim D'Silva
small little inline images? htmlText property parses that. Maybe you can write a server side script that converts text gestures to an img/ tag. 2008/6/13 Elia Morling [EMAIL PROTECTED]: Yes, I need full 8-bit smilies. :( Elia - Original Message - From: Kerry Thompson [EMAIL

Re: [Flashcoders] looking at the maths for an osx style dock

2008-06-13 Thread allandt bik-elliott
on a side note - if i want the _xmouse in relation to the thisContainer - how would you pass that to the delegated function (now scoped to the object instance)? a On Thu, Jun 12, 2008 at 6:27 PM, Merrill, Jason [EMAIL PROTECTED] wrote: mcScrollingIconContainer[clip+i].onRelease =

RE: [Flashcoders] Inserting Smiley Images in Textarea

2008-06-13 Thread Kerry Thompson
Elia Morling wrote: Yes, I need full 8-bit smilies. :( I'm not sure what you mean by 8-bit smilies. Do you mean 8-bit color? You can set the text color with HTML, or you could embed an image tag and put an image in-line with the text. Or do you mean 8-bit, as in ANSI--i.e., 200 possible

Re: [Flashcoders] Flip movie clip

2008-06-13 Thread Bassam M
Need help here please On 6/12/08, Bassam M [EMAIL PROTECTED] wrote: yes it's On 6/12/08, Jiri Heitlager [EMAIL PROTECTED] wrote: Is the center point in the middle? Jiri Bassam M wrote: Hi I have Video playing in the center of the stage and I'm using button to filp it function

Re: [Flashcoders] Real Time Lip Sync

2008-06-13 Thread Viktor Hesselbom
Imagine it would be possible with ActionScript3's computeSpectrum? On Fri, 13 Jun 2008 02:03:34 +0200, Elia Morling [EMAIL PROTECTED] wrote: Okay, purely hypothetical. The sound file is approx 30-60 seconds long. How long would it take to pre-analyze that in Flash for a volumetric

Re: [Flashcoders] Flip movie clip

2008-06-13 Thread Geografiek
Hi Bassam, How about: function filp(event:MouseEvent):void { mySampleMC.scaleY *= -1; mySampleMC.y = mySampleMC.y - mySampleMC.height; } Willem Op 12-jun-2008, om 14:44 heeft Bassam M het volgende geschreven: Hi I have Video playing in the center of the stage and I'm using

Re: [Flashcoders] Conversion SWF - PDF/EPS

2008-06-13 Thread nospam
Hi Ricky, Finally thank you for pointing me out the SVG format. It's an XML based format so I'll manage to generate such files from Flash. Thank you again. ___ Florent Quoting Ricky Bacon [EMAIL PROTECTED]: It's not impossible, it's just a bit of a PITA. A couple years ago I did a

[Flashcoders] FLV issue

2008-06-13 Thread Fabio Pinatti
Hi all, I'm getting a error that is drving me crazy. I'm using as2+flv playback in a project, and my video has 4 seconds length. when I put this value as buffer time in component, it pre-buffers the video, but when it plays, it goes very quiclky to the end, when the expected would be the video

[Flashcoders] Insert breakpoints and run debugger without Flash CS3?

2008-06-13 Thread Alistair Colling
Hiya, is there a way I can add breakpoints to my code and execute it block by block now I am not using the Flash IDE? Thanks, Alistair -- Alistair Colling Interactive Developer FPP Brand Communications (Newcastle upon

[Flashcoders] Insert breakpoints and run debugger without Flash CS3?

2008-06-13 Thread Ali Drongo
Hiya, is there a way I can add breakpoints to my code and execute it block by block now I am not using the Flash IDE? Thanks, Alistair ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] looking at the maths for an osx style dock

2008-06-13 Thread allandt bik-elliott
did anyone have an opportunity to look at the _x positioning stuff to see how it could be any better? my example is here: http://www.m2surveys.com/homeserve/dock/ my positioning code is: var thisXmouse = Math.round(this._xmouse); // gives relative mouse position - minus numbers

RE: [Flashcoders] Insert breakpoints and run debugger without Flash CS3?

2008-06-13 Thread Kerry Thompson
Ali Drongo wrote: Hiya, is there a way I can add breakpoints to my code and execute it block by block now I am not using the Flash IDE? I don't know. What are you using instead of the IDE? And, BTW, it's kind of impolite to post the same question twice. There was only 7 minutes between your

[Flashcoders] delegate.create query

2008-06-13 Thread allandt bik-elliott
the delegate questions have kinda hijacked the other question i've asked so i'd like to have a separate discussion here if i can i've got a method that broadcasts a message to the instancing class but if i delegate it, it doesn't seem to work here is my original method with the anonymous

RE: [Flashcoders] Flip movie clip

2008-06-13 Thread Mendelsohn, Michael
Try looking into the transform matrix. I use AS2, not sure if it's the same in AS3, but with that, you can flip it, and offset it back to its original position. - MM ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] mouse events disabled then restored back

2008-06-13 Thread natalia Vikhtinskaya
Hi to all I have mc with pictures in line. They all have _alpha=50; If mouse is RollOver it should be 70. Only one picture after clicking can have alpha 100. I want to delete any mouse events for this picture after clicking. These events should be restored for this picture after clicking on

Re: [Flashcoders] mouse events disabled then restored back

2008-06-13 Thread Matt Hawley
pic.enabled = false is what you use to disable the mouseevents. There are alot of ways you could do it. Here is one: -- var totalPics:Number = 4; var pics:Array = new Array(); for (var i = 0; i totalPics; i++){ pics[i] =

Re: [Flashcoders] mouse events disabled then restored back

2008-06-13 Thread natalia Vikhtinskaya
Thank you very much for help! 2008/6/14 Matt Hawley [EMAIL PROTECTED]: pic.enabled = false is what you use to disable the mouseevents. There are alot of ways you could do it. Here is one: -- var totalPics:Number = 4; var pics:Array = new