Re: [flexcoders] got any good air styling references?

2008-01-30 Thread Kyle Neath
The best method I've found is to just remove all native controls (by
uncommenting a directive in the air xml file, and adding showChrome=false
to your WindowedApplication).  From there, it's pretty trivial to mimic
native functions.  Here's the ones used for beta 3 (they changed it, so
googling around gets confusing):

this.nativeWindow.minimize(); // minimizes the window

this.nativeWindow.close(); // closes the window

this.nativeWindow.startResize(); // call this within a MouseDown event on
your resizing handle

this.nativeWindow.startMove(); // call this within a MouseDown event on your
moving handle (title bar)


All assuming this is the current window.


- Kyle


[flexcoders] got any good air styling references?

2008-01-30 Thread blc187
anybody know any good sites about skinning air apps, specifically ways 
to skin air windows?
or have any good tips?