Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-23 Thread Jeremy Rottman
I got one final question that really does not pertain to a problem of more then how to do something. I need to pass a filename through the function I'm running of createWindow(). When that function is run I need it to take that argument and do an addChild(filename) after the title window is

Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman
Sorry for the delay, that code ended up working. I now have a few more issues to deal with but this is a good start at least it's one less issue I have to deal with. Thanks for the post. On 10/20/06, dougmccune [EMAIL PROTECTED] wrote: try: public function

Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman
You are correct on not wanting to make the TitleWindow to be able to be dragged however I have yet to figure out how to disable the dragging on the TitleWindow. Our original idea was to use a panel however we would like it to be able to have the ability of a close button on the top right to

Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman
Also just another quick note, using your code of event.currentTarget as DisplayObject rendered the error of 1067: Implicit coercion of a value of type flash.display:DisplayObject to an unrelated type mx.core:IFlexDisplayObject .On 10/20/06, mdoberenz [EMAIL PROTECTED] wrote:

RE: [flexcoders] Re: Creating JarJam button Effect.

2006-10-19 Thread Dustin Mercer
In your removePopup statement you are passing this, which is actually the application try event.currentTarget instead. public function removeMe(event:CloseEvent){ PopUpManager.removePopUp(event.currentTarget) } From: flexcoders@yahoogroups.com