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









 



[flexcoders] pulling my f'n hair out

2007-11-29 Thread Noyes, Jeff
I really cannot get the Flickr api's to work.   I've tried downloading
from google, from adobe, from random folks - nothing works. can someone
point me to a tutorial that a) tells you which is the right api to
download  B) if other files are needed (corelib), how do those file fit
into the director of the primary api files C) once all the api files are
together, how to create an MXML file that gets private images from
Flickr.
 
Any takers? Please, spare my remaining hair.


  _  

From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Matt Maher
Sent: Thursday, November 29, 2007 5:03 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: AIR Window and Mouse management



Well, that's just it. I don't have a mouseMove event as I'm
trying to 
test when the mouse is not over a flash container. MouseMove is
not 
heard by this window unless inside of the window...

Unless someone knows how to listen to something crazy like
System.system MouseMove ??

--- In flexcoders@yahoogroups.com
mailto:flexcoders%40yahoogroups.com , [EMAIL PROTECTED] wrote:

 Maybe checking the Array from getObjectsUnderPoint could
help 
you, inside a MouseEvent.MOUSE_MOVE event. 
 
 -- Keith H --
 
 
 
 
  Matt Maher [EMAIL PROTECTED] wrote: 
  Is there a class or object out there that I can get
reference to 
the 
  mouse no matter where it is? I can't seem to find anything.
  
  I have an AIR app with multiple native windows. I want to
show 
things 
  in those windows while the mouse is over them, but not show
them 
when 
  the mouse is elsewhere. 
  
  I have implemented the normal mouseOver mouseOut stuff but
it's 
very 
  easy to get into a scenario where mouseOut doesn't get
called 
(another 
  non-air window overlapping the air window for example). So I

think I 
  need to implement some form of collision detection in
reverse. I 
think 
  running a timer once I show things in the window (with
mouseOver) 
to 
  test to make sure the mouse is still within the boundaries
of 
said 
  window. But I cannot seem to get reference to the mouse
without 
an 
  event. And as far I know events are not broadcast into AIR
when 
they 
  occur outside of AIR (as far as I have been able to
replicate at 
least).
  
  Can someone steer me a bit here? I HAVE found the
deactivate 
event on 
  a native window. At least if the user clicks somewhere else
then 
I can 
  handle that...
 




 



[flexcoders] Flicker Authorization tutorials

2007-11-26 Thread Noyes, Jeff
Any good ones out there.  I've seen several for accessing public
pictures doing a search, but I'd like to access my own pictures.
 
Thanks


RE: [flexcoders] good examples of imagecropping?

2007-11-05 Thread Noyes, Jeff
No responses.  Are there no good examples?


  _  

From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Noyes, Jeff
Sent: Tuesday, October 30, 2007 3:07 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] good examples of imagecropping?




I'd like to see some good code examples of uploading images,
cropping, then saving.  Can anyone point me in the right direction?
http://geo.yahoo.com/serv?s=97359714/grpId=12286167/grpspId=1705007207/
msgId=91860/stime=1193360231/nc1=4507179/nc2=3848640/nc3=4840954 




 



[flexcoders] good examples of imagecropping?

2007-10-31 Thread Noyes, Jeff
I'd like to see some good code examples of uploading images, cropping,
then saving.  Can anyone point me in the right direction?
http://geo.yahoo.com/serv?s=97359714/grpId=12286167/grpspId=1705007207/
msgId=91860/stime=1193360231/nc1=4507179/nc2=3848640/nc3=4840954