[flexcoders] Cancelling drag

2009-03-21 Thread Julien Phalip
Hi, I'm using DragManager to drag some objects on the interface. And I'd like the dragging to be cancelled when the ESCAPE key is pressed. But I can't find a way to do it since DragManager doesn't seem to have a method for that. Here's what my code looks like: private function

[flexcoders] Flex 3 Image on Data Grid

2009-03-21 Thread sk8bmx099
http://img25.imageshack.us/img25/5109/datagrid.png I want it to show the IMAGE Skill_Name Like instead of the label being on the bottom, is it possible to be on the right side of the image? -=-==-=-=-=-=-=-\ ---

RE: [flexcoders] swf file size changes from build to build?

2009-03-21 Thread Alex Harui
Oh, yeah. Don't mind the sizes. They never add up. The main question is whether the set of classes is the same (they might be in different order though). Sounds like it isn't. Might be a bug. Try a simpler case with an external library and see what you get. Alex Harui Flex SDK Developer

RE: [flexcoders] Synonym Issue

2009-03-21 Thread Alex Harui
Maybe look for spell checkers Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of lehaianh1986 Sent: Thursday, March 19, 2009 11:21 PM To:

RE: [flexcoders] Activate Text Area

2009-03-21 Thread Alex Harui
Call setFocus, probably on creationComplete. But if the app hasn't been activated in the browser it won't work. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

Re: [flexcoders] Flex 3 Image on Data Grid

2009-03-21 Thread Paul Andrews
- Original Message - From: sk8bmx099 sk8bmx...@yahoo.com To: flexcoders@yahoogroups.com Sent: Saturday, March 21, 2009 7:00 AM Subject: [flexcoders] Flex 3 Image on Data Grid http://img25.imageshack.us/img25/5109/datagrid.png I want it to show the IMAGE Skill_Name Like instead of

[flexcoders] Re: A ModuleLoader issue

2009-03-21 Thread grg_blls
Hi all, hi Rob. As I work on the issue approaching it from a number of angles (also examining a future Deep Linking), I feel necessary to detail on your replies: According to ADOBE FLEX 3 Adobe Flex 3 Developer Guide [page 1089] You can disable history management for an entire application

[flexcoders] strange problem with remote object

2009-03-21 Thread johndoematrix
hi i have a datagrid that i want to populate here is the code. mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=100% backgroundColor=#40 creationComplete=remoteObj.userData.send() mx:Script ![CDATA[ import

[flexcoders] Re: Convert Air app. to Flex

2009-03-21 Thread Amy
--- In flexcoders@yahoogroups.com, Michael D Corbridge mdcor...@... wrote: change: mx:WindowedApplication to mx:Application and remove any AIR dependent code Has anyone successfully managed to have this make the change? I've had AIR projects before (when AIR was in beta) that

[flexcoders] Resizing containers individually

2009-03-21 Thread Easow Jacob
I have an issue. I have a Vbox,inside that i place 3 HBoxes and in each 3 Hboxes i place 2 others Boxes,when i am resizing each boxes inside the Hboxes individually,its is pushing whole Hboxes height. Below is the code VBox HBox id=hbx1 Box id=box1 /Box Box id=box2 /Box

RE: [flexcoders] strange problem with remote object

2009-03-21 Thread Tracy Spratt
You are not passing either of the parameters into the method call. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of johndoematrix Sent: Saturday, March 21, 2009 8:51 AM To:

RE: [flexcoders] Resizing containers individually

2009-03-21 Thread Tracy Spratt
All children must fit in their container, or the container must show scrollbars. If you set the height of hbx1 to a fixed value, then when you resize box1, the HBox will display scrollbars. Or set the HBox height large enough to contain the tallest child, but that will do exactly as you

[flexcoders] rollover is blinking

2009-03-21 Thread carloscarvalhar
Hi, My rollover is blinking and i don't know how to fix this. I have this structure: panel vbox image / /vbox canvas / /panel My image has the rollOver/rollOut (and i also tried mouseOver/mouseOut) but what i got is a simple blinking frustrating effect. My code in image is setting

RE: [flexcoders] rollover is blinking

2009-03-21 Thread Tracy Spratt
Yes, I have seen this happen. What I think is the problem is that when the component becomes visible, it triggers a rollover, which runs the code which toggles the visibility, going into a loop. Not seeing any code, I suggest putting a conditional in the handler that checks the visible state

RE: [flexcoders] rollover is blinking

2009-03-21 Thread Tracy Spratt
Put trace statements in the handler and other related functions to track what is actually happening. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Saturday, March

[flexcoders] StackTraces Log

2009-03-21 Thread nwebb
Hi, just had an issue where an application would run on any machine with the debug player installed, but would completely fail to load on any machine with the non-debug player. The issue us that there is a Logger singleton class which would find out the name of the calling class by throwing a

[flexcoders] Re: rollover is blinking

2009-03-21 Thread carloscarvalhar
Hi, I tried what you said, but didn't worked, it's blinking yet. Here's my code: public function toogleVisiOver():void{ if(! mycanvas.visible){ mycanvas.visible =true; } } public function toogleVisiOut():void{ if(mycanvas.visible){

Re: [flexcoders] AMFPHP Question

2009-03-21 Thread Alan K
Last time I made a data driven app with AMFPHP. I used PHP and MySQL. I did all of what your describing within PHP and MySQL. Everytime I querried the database, I always sent back the same kind of object to Flex. The object always had two properties, a Œsuccess¹ property and a Œmessage¹

[flexcoders] Re: ProgressBar with null _track

2009-03-21 Thread gmoniey22
Did you end up solving this? I'm getting the same thing... --- In flexcoders@yahoogroups.com, Richard Rodseth rrods...@... wrote: I'm getting a similar issue with a null _track in ProgressBar.measure() Admittedly this is a bit hairy, but I have a window with a repeater containing a

[flexcoders] Is it possible to query Flash Player attributes e.g. allowFullScreen?

2009-03-21 Thread Dave Kong
I couldn't find a way to check if allowFullScreen is set to true from within my Flex app. Is this possible at all? And to generalize, is it possible to query the other Flash settings that are set via object or embed tag in the html, such as wmode, etc?

[flexcoders] mx_internal BoxLayout?

2009-03-21 Thread gwangdesign
Hi, I am subclassing UIComponent to do something very similar to a VBox. The difference is that when a child is selected, all the children are then moved so that the selected one is centered vertically on the VBox. I thought this was easy. But my code never works except for when the

[flexcoders] Re: Is it possible to query Flash Player attributes e.g. allowFullScreen?

2009-03-21 Thread carloscarvalhar
about full screen: switch (Application.application.stage.displayState) { case StageDisplayState.FULL_SCREEN: /* If already in full screen mode, switch to normal mode. */ Application.application.stage.displayState = StageDisplayState.NORMAL; break; default: /* If not in full

[flexcoders] flex application inside flash loader and resize event

2009-03-21 Thread carloscarvalhar
Hi, I have a problem with resize event: My flex application is loaded inside a loader in Flash and when i resize my windows, my flash loader resizes (at least i think so) but my application doesn't resize. I tried to add listeners for both flash and flex. Here's the code: the loader in Flash:

[flexcoders] SF Adobe User Group Mtg w/ Ron Nagy, Adobe Systems - Using AIR in the Enterprise

2009-03-21 Thread rfong32039
SF Adobe User Group Mtg w/ Ron Nagy, Adobe Systems - Using AIR in the Enterprise Join us at our next Adobe User Group meeting in San Francisco. RSVP required at: http://baadaug.org http://baadaug.org March 24, 2009 - ad...@adobe: Ron Nagy, Senior Evangelist , Adobe IT Come hear about the

[flexcoders] Context Menu Bug in FlashPlayer ?

2009-03-21 Thread jmfillman
The code below causes both IE and Firefox to crash (haven't tried others). The problem seems to occure when removing an item from a custom context menu. It doesn't even debug, just crashes the browser. If I add this one line: menu.customItems.pop(); then the browser crashes. If I remove it,

RE: [flexcoders] Re: rollover is blinking

2009-03-21 Thread Tracy Spratt
First, don't use mouseOver, use rollOver and rollOut. The mouse events are lower level and are harder to deal with. Put trace statements in your handlers or step through in the debugger so you can see what is happening. Tracy Spratt, Lariat Services, development services available