Re: [flexcoders] AIR - including other files

2008-02-05 Thread Nils Millahn
and db files can. I tried including a swc, but it wouldn't let me, so I had to change the extension, then use the file API to have the application rename it back when I wanted to work with it. On Feb 4, 2008 4:46 AM, Nils Millahn [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi all

[flexcoders] AIR - including other files

2008-02-04 Thread Nils Millahn
Hi all, does anybody have information on how to include further files in an AIR package? I'd like to include a few image resources and a database file with the published AIR install but can't figure out how to tell the AIR compiler to do so. cheers - Nils.

[flexcoders] ViewStack - auto-remove child instances?

2008-01-31 Thread Nils Millahn
Hi there, is there an option for ViewStacks similar to creationPolicy='auto' that removes instances from memory again when the user navigates away from that particular page? Thanks - Nils.

[flexcoders] Flex3 MenuBar selects on rollover

2008-01-22 Thread Nils Millahn
Hi everybody, I'm using a mx:MenuBar component in Flex 3 without any submenus - just top-level menu entries. The problem is that once you've selected a menu item (by clicking on it), the selection changes even when you only rollover with the mouse. eg: Item AItem BItem C - click

Re: [flexcoders] Preserving whitespace in XML nodes

2008-01-22 Thread Nils Millahn
Have you tried using a CDATA around them? - Nils. Dave Glasser wrote: I've tried using the static XML.ignoreWhitespace property to solve this problem. Not only does it not work, but I don't want the setting applied globally. When I run this code: var x:XML = myXML/; x.a =a;

[flexcoders] Cairngorm event types

2007-12-13 Thread Nils Millahn
Hi everybody, I've started using Cairngorm on a couple of projects and wondered where people generally define their event type identifiers. The FrontController/EventDispatcher setup requires unique event names across the application, which is hard to control on large projects with multiple

Re: [flexcoders] Cairngorm event types

2007-12-13 Thread Nils Millahn
; //... } } Cheers Ralf. On Dec 13, 2007 2:22 PM, Nils Millahn [EMAIL PROTECTED] wrote: Hi everybody, I've started using Cairngorm on a couple of projects and wondered where people generally define their event type identifiers. The FrontController/EventDispatcher setup