[flexcoders] Re: noob question, css to swf, stylemanager

2008-09-05 Thread dsds99
The complete event does trigger I do see the alpha change from my css. But the background image still remains the same Thanks, for pointing out the StyleManager events --- In flexcoders@yahoogroups.com, "Douglas Knudsen" <[EMAIL PROTECTED]> wrote: > > you can listen for failures, eh? > > //lo

[flexcoders] noob question, css to swf, stylemanager

2008-09-05 Thread dsds99
by accident I posted on flexcomponents* I saw a tutorial online, yet I can't make it work...@@ My css: /** ChangeBG.css **/ Application{ background-alpha:0.1; background-image: Embed(source="water.jpg"); } All my files are in the src package and then I just run the option Compile css to swf. I

[flexcoders] Re: Debugging manual drag and drop events

2008-03-12 Thread dsds99
> > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of dsds99 > Sent: Wednesday, March 12, 2008 11:46 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Debugging manual drag and drop events > > > > Ok I d

[flexcoders] Debugging manual drag and drop events

2008-03-12 Thread dsds99
Ok I drag the green box onto the white one during the capture phase bigBox.addEventListener(DragEvent.DRAG_ENTER,dragEnterHandler) output = "Entered bigBox" Now if I set it to capture phase bigBox.addEventListener(DragEvent.DRAG_ENTER,dragEnterHandler,true) output = nothing I think the output sh

[flexcoders] flexbuilder code formatter

2008-02-29 Thread dsds99
I'm still very new to the eclipse environment found jalopi..but it's not free

[flexcoders] custom drag & drop

2008-02-25 Thread dsds99
How do I reference the custom drag image in my dragDrop(e:DragEvent) handler?

[flexcoders] Manual drag drop between canvases...

2008-02-22 Thread dsds99
Trying to add the dragged item to where it drops on the second canvas. I have canvas.addChild(draggedItem); 1) How do I reference the draggedItem after that. I can only think of canvas.getChildAt(canvas.numChildren - 1)..but that's definitely not the right way to do it. 2) To position it where

[flexcoders] as3 global variables - no more

2008-02-22 Thread dsds99
Yes, using global variables was easy solution to referencing movieclips from anywhere. I'm trying to link up my play button to play the selected track in a listbox. The two components are in separate classes. one solution is that in my main class I pass a reference of the listbox to my playbutton

[flexcoders] DisplayList traversal

2008-02-21 Thread dsds99
Let's say I have a text field at stage.displayObject1.displayObject5.displayObject67.myText and it's name is "LoginField"; Is there a way to get to myText display object with something like: stage.getChildByName(LoginField);

[flexcoders] embedded background image not loading

2008-02-21 Thread dsds99
Trying to make a simple component..and trying to set the background image.. package{ import flash.display.Bitmap; import mx.containers.HBox; public class Hbox1 extends HBox{ [Embed(source="SkyBackground.jpg")] [Bindable] pu

[flexcoders] Re: Polymorphism....?

2008-02-19 Thread dsds99
eck > > Senior Developer > > > > RESOURCE INTERACTIVE > > <http://www.resource.com/> www.resource.com <http://www.resource.com/> > > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > > > > ___

[flexcoders] Polymorphism....?

2008-02-19 Thread dsds99
I have 2 unrelated classes that extend UIComponent ultimately..;) and each class implements a boolean property called "isClosed" Passing these classes into the function as untyped. If I don't cast, it works. Trying to understand why it doesn't work this way. A compile time error occurs in the i

[flexcoders] The width change works in Flash CS3 but not in Flex

2008-02-19 Thread dsds99
// ActionScript file package{ import mx.core.UIComponent; public class Tint extends UIComponent{ public function Tint():void{ graphics.beginFill(0x9fe9c9,1); graphics.drawRect(0,0,100,100);

[flexcoders] how do I get displayobjects under mouse

2008-02-18 Thread dsds99
Was wondering if there is a function available in as3 Like Mouse.getObjects or something that will return a list of displayobjects that is currently under the mouse..hmmm

[flexcoders] mouse api -> displayobject

2008-02-18 Thread dsds99
Without explicitly writing an eventListener for my visual objects .Is there a function that outputs what display objects are under the mouse? I thought I read that somewhere...