Re: [Flashcoders] Why isn't my TextField multiline? AS2

2008-05-08 Thread Christoffer Enedahl
Try \n or \r\n HTH/Christoffer Alistair Colling skrev: Thanks guys :) works perfectly. Now it seems my line returns (\r) aren't being recognised (they show up in the textfield). Anyone got any ideas whats going on? Cheers On 7 May 2008, at 18:19, Robert Leisle wrote: Hi Alistair, Try

Re: [Flashcoders] Why isn't my TextField multiline? AS2

2008-05-08 Thread Alistair Colling
Thanks for your reply Chistoffer, I'm afraid it's still not working, the characters appear in my text field. Here's the code I am using to create the text format and textfield, maybe something here is screwing it up: var myM:TextFormat = new TextFormat();

Re: [Flashcoders] Why isn't my TextField multiline? AS2

2008-05-08 Thread Alistair Colling
Thanks for your reply Chistoffer, I'm afraid it's still not working, the characters appear in my text field. Here's the code I am using to create the text format and textfield, maybe something here is screwing it up: var myM:TextFormat = new TextFormat();

Re: [Flashcoders] Why isn't my TextField multiline? AS2

2008-05-08 Thread Alistair Colling
Thanks guys :) works perfectly. Now it seems my line returns (\r) aren't being recognised (they show up in the textfield). Anyone got any ideas whats going on? Cheers On 7 May 2008, at 18:19, Robert Leisle wrote: Hi Alistair, Try adding this to your code: tmpField.wordWrap = true;

Re: [Flashcoders] Flash Unicode issue (Latin extended Romanian chars)

2008-05-08 Thread Abe Pazos
I think someone with more experience in licenses and copyrights should reply to that... I don't think there shouldn't be any difference between embedding in the IDE and through ActionScript. I guess the resulting binary file is quite similar, and lets you do the same things with fonts. I

Re: [Flashcoders] FPS limit of flash player inside browser?

2008-05-08 Thread Jon Bradley
On May 7, 2008, at 1:06 PM, Steven Sacks wrote: The fact of the matter is, running at a higher frame rate makes things look smoother. Period, end of statement. That's not an accurate generalization. Higher frame rate != smoother display in all cases. It matters for progressive elements

Re: [Flashcoders] Why isn't my TextField multiline? AS2

2008-05-08 Thread Rich Shupe
I think the problem is that you're pulling your string from another text field. In that case, the characters are just characters, rather than control codes. This subset of your code works fine: var tmpField:TextField = this.createTextField(my_txt, 1, 0,0,100,100); tmpField.selectable = false;

Re: [Flashcoders] Why isn't my TextField multiline? AS2

2008-05-08 Thread Alistair Colling
hmm, the string that is being targeted is held in a variable that is set from an xml file so should just be a regular string, i'll look into this tho. Thanks Rich On 8 May 2008, at 13:38, Rich Shupe wrote: I think the problem is that you're pulling your string from another text field. In

Re: [Flashcoders] Why isn't my TextField multiline? AS2

2008-05-08 Thread Rich Shupe
In that case, use HTML and br and/or try wrapping the content in a CDATA tag. On 5/8/08 8:52 AM, Alistair Colling wrote: hmm, the string that is being targeted is held in a variable that is set from an xml file so should just be a regular string, i'll look into this tho. Rich

[Flashcoders] Retrieve The Web Link

2008-05-08 Thread ACE Flash
Hi there, I embedded my SWF into HTML page, when I have launched the page on web, I would like to retrieve the URL. Any suggestion? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Re: Retrieve The Web Link

2008-05-08 Thread ACE Flash
I am using AS2, thanks On Thu, May 8, 2008 at 9:47 AM, ACE Flash [EMAIL PROTECTED] wrote: Hi there, I embedded my SWF into HTML page, when I have launched the page on web, I would like to retrieve the URL. Any suggestion? ___ Flashcoders mailing

Re: [Flashcoders] Re: Retrieve The Web Link

2008-05-08 Thread Dennis - I Sioux
/flashcoders __ NOD32 3086 (20080508) Informatie __ Dit bericht is gecontroleerd door het NOD32 Antivirus Systeem. http://www.nod32.nl ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo

RE: [Flashcoders] FPS limit of flash player inside browser?

2008-05-08 Thread Merrill, Jason
The fact of the matter is, running at a higher frame rate makes things look smoother. Period, end of statement. No, in most cases, yes, but performace on some machines can actually cause it to drop frames and look even choppier than a lower framerate. It all depends on what kind of animation

Re: [Flashcoders] Re: Retrieve The Web Link

2008-05-08 Thread ACE Flash
? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders __ NOD32 3086 (20080508) Informatie __ Dit bericht is gecontroleerd door het NOD32 Antivirus

Re: [Flashcoders] Re: Retrieve The Web Link

2008-05-08 Thread Juan Pablo Califano
on web, I would like to retrieve the URL. Any suggestion? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders __ NOD32 3086 (20080508

[Flashcoders] Best AS3 MenuBar component for Flash CS3

2008-05-08 Thread Joe Cutting
Hello, I'm looking for recommendations for a menu bar component for Flash CS3. I'm looking for something which matches the graphic look of the other Adobe UI components. I'd also like something which is very flexible and doesn't need your whole UI to be part of its framework. I've been

Re: [Flashcoders] FPS limit of flash player inside browser?

2008-05-08 Thread Rich Shupe
I've only had a chance to glance at this thread, but it seems that most of the replies are leaning this way. I agree with what appears to be the majority sentiment, expressed most recently by Jason. Many things will cause performance to suffer with a higher frame rate. Injudicious use of bitmap

Re: [Flashcoders] Best AS3 MenuBar component for Flash CS3

2008-05-08 Thread Rich Shupe
I've been pretty impressed with the Jumpeye components (www.jumpeyecomponents.com), but I'm not sure if the menu components come with a skin that looks like the other CS3 components. They're really easy to skin, though. Rich http://www.LearningActionScript3.com

[Flashcoders] [ANN] haXe Website

2008-05-08 Thread Nicolas Cannasse
Hi, In case you missed it, a new website for haXe is now online on http://haxe.org If you don't know what haXe is about or didn't yet have time to check about it, don't hesitate to have a look ;) Best, Nicolas ___ Flashcoders mailing list

[Flashcoders] AS3- Word Wrap for Dynamic DataGrid Cell Content

2008-05-08 Thread David Rogers
Does anybody have any code that sets the cells in a DataGrid so they display text content to automatically word wrap instead of displaying single line? This is for Flash CS3/ Actionscript 3. ___ Flashcoders mailing list

[Flashcoders] Setting an AIR applications file types to default

2008-05-08 Thread Sidney de Koning
Hi List, I'd like to set my AIR application to handle specific files, and the when i double click these file on my file system i want them to open with my AIR app. What i've done sofar is ajusted the descriptor xml to fit my needs for my files, mp3's in this case and want to use the

Re: [Flashcoders] FPS limit of flash player inside browser?

2008-05-08 Thread Zeh Fernando
Depends on the browser. Different browsers choke plugins in different ways. Two links: http://graphics-geek.blogspot.com/2008/04/off-bubblemark.html http://www.kaourantin.net/2006/05/frame-rates-in-flash-player.html Film is at 24fps... Disney animation, so compelling, was two-up, or twelve

Re: [SPAM] Re: [Flashcoders] FPS limit of flash player inside browser?

2008-05-08 Thread Muzak
Google flash magic framerate I have no idea if this still stands with the current Flash Player and the new VM, but there used to be magic framerates that worked better than +1 or -1 fps from those magic framerates, especially on the MAC. Those magic framerates all ended with 1: 21, 31, 41,