Drag-and-drop question

2005-02-12 Thread Pilby
Does Flex's drag-and-drop support dropping of mx:Button or mx:Text objects into a container like a mx:VBox? Or am I limited to dragging only items from a Tree, a List,or a datagrid? When I try to drag a mx:Text control onto a mx:VBox, everything seems to go find until the DragDrop event

RE: [flexcoders] DW Builder

2005-02-12 Thread Jose Lora
Title: Message I used Flex Builder for both with no problem. What type of issues are you having? From: John C. Bland II [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 7:43 PM To: [EMAIL PROTECTED] Subject: [flexcoders] DW Builder You guys who use DW

Re: [flexcoders] Drag-and-drop question

2005-02-12 Thread Manish Jethani
Pilby wrote: Does Flex's drag-and-drop support dropping of mx:Button or mx:Text objects into a container like a mx:VBox? Or am I limited to dragging only items from a Tree, a List, or a datagrid? You can drag-drop anything. var dragItems = event.dragSource.dataForFormat(items); and dragItems is

RE: [flexcoders] DW Builder

2005-02-12 Thread Jose Lora
Title: Message I guess I learned Flex before, so it looks natural to me to just use Flex for ColdFusion stuff. Im not sure if FlexBuilder has all the extensions or capabilities included in WD. Ive seen the new rich forms in ColdFusion and they look similar to the Flex components. Is

Grid alignment

2005-02-12 Thread John C. Bland II
Title: Message I'm usinga grid for layout purposes and can't seem to get one of my items to align right. I basically want two items on the same row but one of them aligned right and one aligned left (labels). -- JDEV Inc. John C. Bland II CEO [EMAIL

RE: [flexcoders] axis label rotation

2005-02-12 Thread Ely Greenfield
I honestly don't remember ;) There are a few factors that determine whether or not labels will rotate: - is the font embedded. If it's not, the player can't rotate them anyway, so don't bother. - is there an explciit angle set for the labels. - is there enough room to lay out the labels end to

RE: [flexcoders] Grid alignment

2005-02-12 Thread Steven Webster
Title: Message I'm using a grid for layout purposes and can't seem to get one of my items to align right. I basically want two items on the same row but one ofthem aligned right and one aligned left (labels). Hey John - this is what we'd call a "bad code smell" and is one of the MXML

RE: [flexcoders] Localizing Alert box button text

2005-02-12 Thread Dirk Eismann
Try: mx.controls.Alert.yesLabel = Jau; mx.controls.Alert.noLabel = Nix; mx.controls.Alert.okLabel = Klaro; mx.controls.Alert.cancelLabel = Und tschüss... you can also modify the default button width of the Alert control if your localized text gets too long: mx.controls.Alert.buttonWidth = 100;

DW Builder

2005-02-12 Thread dunwerkin
I was a actually a little disappointed to see that there wasn't at least an *option* to better separate the usage of the two products. I use DW for most things, and dabble in FB when I have time to play with Flex. Since they seem to maintain a common set of site definition files, and were intially

RE: [flexcoders] Grid alignment

2005-02-12 Thread John C. Bland II
Title: Message Ok coo Steven. I'll give that a look. I started to ask the question if using Grids was like using tables in html. Should I only use them for data layout (row duplication)? -Original Message-From: Steven Webster [mailto:[EMAIL PROTECTED] Sent: Saturday, February

compiled swf issues with HTTPService and RemoteObject

2005-02-12 Thread jonbez
Hi all, We are trying to compile our app to a swf file. It works fine - comes up. As soon as it accesses a HTTPService or RemoteObject it just breaks with an error message. The same code works perfectly if run as MXML. Any ideas? Do I need to do something special to make it work? Thanks

RE: [flexcoders] Grid alignment

2005-02-12 Thread John C. Bland II
Title: Message Sounds good Senior Webster. :-) I'll look @ it right now and will definitely try harder on my layouts. Thx! -Original Message-From: Steven Webster [mailto:[EMAIL PROTECTED] Sent: Saturday, February 12, 2005 10:01 AMTo: flexcoders@yahoogroups.comSubject:RE:

Flex and AMFPHP

2005-02-12 Thread Bart Ronsyn
Hi, I wondered if it's possible to combine Macromedia Flex and AMFPHP (or another opensource PHP solution) ? Sincerely, Bart Ronsyn

Re: [flexcoders] Highlight

2005-02-12 Thread Rich Tretola
That is what I was asking for, the name of the style that changes this property. Anyone else ? Rich On Fri, 11 Feb 2005 18:38:14 -0500, Jeff Tapper [EMAIL PROTECTED] wrote: Ah well, probably a style property for that in there somewhere, dont have it in front of me though. At 06:31 PM

mask / depth position

2005-02-12 Thread John C. Bland II
Title: Message I have a layout using a canvas and inside of the canvas I have an hbox with a loader insideof it. The loader loads the image but the image is on top of the canvas's border. How can I force it to stay "inside" the canvas? -- JDEV Inc.

Re: [flexcoders] Localizing Alert box button text

2005-02-12 Thread David Ringley
Thanks, Dirk. That's exactly what the doctor ordered! Do you recall where you read that? On Sat, 12 Feb 2005 13:01:21 +0100, Dirk Eismann [EMAIL PROTECTED] wrote: Try: mx.controls.Alert.yesLabel = Jau; mx.controls.Alert.noLabel = Nix; mx.controls.Alert.okLabel = Klaro;

RE: [flexcoders] Re: WebService Connection Keeps Resetting... ?

2005-02-12 Thread Matt Chotin
I dont really have any good suggestions for you guys. Dustin, since youre hitting localhost right now maybe try setting useProxy=false on the WebService and just make sure that you dont run into similar problems when not going through our proxy (I dont think youll need crossdomain.xml if

RE: [flexcoders] compiled swf issues with HTTPService and RemoteO bject

2005-02-12 Thread Matt Chotin
Make sure you hard-code the location of the amf-gateway and http-service-proxy in flex-config.xml before compiling. Otherwise they probably are trying to hit some unknown location (relative to where the SWF was loaded). Matt From: jonbez [mailto:[EMAIL PROTECTED] Sent:

RE: [flexcoders] Re: how can I refresh a datagrid?

2005-02-12 Thread Matt Chotin
Youre trying to reset the values to before you started selecting/deselecting checkboxes?  I think in this case youll probably need to have a copy of the dataProvider that you pass to the DataGrid.  If you decide to keep your changes you overwrite the original with your copy.  If you want

RE: [flexcoders] Re: AssetRenderer with a swf

2005-02-12 Thread Matt Chotin
I looked at the code quickly and it looks like the image must be embedded. Can you have a file that embeds all of the potential images and then simply have the AssetRenderer use the symbol that was created? Matt From: Alan Greenblatt [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: [flexcoders] mask / depth position

2005-02-12 Thread Matt Chotin
Title: Message Have you set the loaders width/height to 100%? Matt From: John C. Bland II [mailto:[EMAIL PROTECTED] Sent: Saturday, February 12,2005 10:32 AM To: [EMAIL PROTECTED] Subject: [flexcoders] mask /depth position I have a layout using a canvas and inside of

Re: htmlText question

2005-02-12 Thread David Gassner
Here's a link to a technote describing asfunction: http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_15639 --- In flexcoders@yahoogroups.com, Jeff Tapper [EMAIL PROTECTED] wrote: continue to use mx:Text, and just use a links within. You'll need to find the specific syntax for

Effects and and a ViewStack

2005-02-12 Thread temporal_illusion
I'm trying to create a viewstack with a linkbar to control it and when adding effects, I'm noticing some behaviour that probably indicates that I'm doing things totally wrong :) One thing I want to do is have the mx:LinkBar/ fade in and out depending on other things. I can do this no problem,