RE: [flexcoders] Bitmap: Please, please help.

2008-01-31 Thread Noyes, Jeff
no, not quite.  Think of my need to be something like Photoshop layers.
I can create a layer, then another, and be able to see the first layer
behind the second.


  _  

From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou
Sent: Wednesday, January 30, 2008 1:06 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Bitmap: Please, please help.




do u mean sort of like this but you want to be able to drag and
drop? http://www.tileui.com/ http://www.tileui.com/  just warp the
mouse around all of them, is that kinda it?.


- Original Message 
From: Noyes, Jeff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, January 30, 2008 11:44:43 AM
Subject: [flexcoders] Bitmap: Please, please help.




I want to be able to drag and drop multiple images onto one
object - and have the images layer one on top of the other (see one
through the other).  Can that be done?


  _  

From: [EMAIL PROTECTED] ups.com http://ups.com/
[mailto:flexcoders@ yahoogroups. com] On Behalf Of Kyle Neath
Sent: Wednesday, January 30, 2008 11:53 AM
To: [EMAIL PROTECTED] ups.com http://ups.com/ 
Subject: Re: [flexcoders] got any good air styling
references?



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











  _  

Looking for last minute shopping deals? Find them fast with
Yahoo! Search.
http://us.rd.yahoo.com/evt=51734/*http://tools.search.yahoo.com/newsear
ch/category.php?category=shopping  



 



[flexcoders] Bitmap: Please, please help.

2008-01-30 Thread Noyes, Jeff
I want to be able to drag and drop multiple images onto one object - and
have the images layer one on top of the other (see one through the
other).  Can that be done?


  _  

From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Kyle Neath
Sent: Wednesday, January 30, 2008 11:53 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] got any good air styling references?



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









 



Re: [flexcoders] Bitmap: Please, please help.

2008-01-30 Thread Sherif Abdou
do u mean sort of like this but you want to be able to drag and drop? 
http://www.tileui.com/ just warp the mouse around all of them, is that kinda 
it?.


- Original Message 
From: Noyes, Jeff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, January 30, 2008 11:44:43 AM
Subject: [flexcoders] Bitmap: Please, please help.

I want to be able to drag and drop multiple images onto one object - and have 
the images layer one on top of the other (see one through the other).  Can that 
be done?



From: [EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf 
Of Kyle Neath
Sent: Wednesday, January 30, 2008 11:53 AM
To: [EMAIL PROTECTED] ups.com
Subject: Re: [flexcoders] got any good air styling references?


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



  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

RE: [flexcoders] Bitmap: Please, please help.

2008-01-30 Thread Gordon Smith
First, trying arranging mx:Images inside an mx:Canvas to overlap and
set their 'alpha' to something like 0.5 to make them semitransparent.
 
Then look at drag-drop examples.
 
Gordon Smith
Adobe Flex SDK Team



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Noyes, Jeff
Sent: Wednesday, January 30, 2008 9:45 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Bitmap: Please, please help.



I want to be able to drag and drop multiple images onto one object - and
have the images layer one on top of the other (see one through the
other).  Can that be done?




From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Kyle Neath
Sent: Wednesday, January 30, 2008 11:53 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] got any good air styling references?



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