Re: [flexcoders] Problems Binding E4X to Datagrid after converting to Array Collection

2008-07-07 Thread Josh McDonald
You want to make it an ArrayCollection of typed objects along the lines of: [Bindable] public class NewsItem { public var newsId:Number; public var newsDate:Date; public var newsTitle:String; } And for each node in your xml you would var tmp:NewsItem = new NewsItem(); tmp.newsId =

Re: [flexcoders] Re: Caringorm Event

2008-07-07 Thread Tom Chiverton
I knew you were going to say that :-) What, you've foresaken ESP? :)) -TH --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 02 Jul 2008, [EMAIL PROTECTED] wrote: hi every i facing problem while re-dispatching Caringorm event. i have ...

[flexcoders] Re: RTE on DragManager when using Window component

2008-07-07 Thread Josef Gordon
I have found a solution!!! I needed to use both DragManager and DragManagerImpl inside my Air application. I found someone who rewrote SystemManager.as and DragManager.as in mx.managers. http://www.flexjunk.com/category/monkeypatch/ --- In flexcoders@yahoogroups.com, Yossi Gordin [EMAIL

Re: [flexcoders] What is best way to get data from MySQL database?

2008-07-07 Thread Alan
I' read the same about the speed also, but aparrently the new webORB 3.0 has been made all fancy pants fast. WebORB claims it is 300% faster.but I'm guessing that now it's as fast as AMFPHP. Also the idea that a team of people are on it now. AMFPHP has been at 1.9 for something like

[flexcoders] TextInput as item renderer for ComboBox

2008-07-07 Thread chandruflex
How is mx.controls.TextInput control used as an item renderer for mx.controls.ComboBox control?

Re: [flexcoders] tutorial video controls

2008-07-07 Thread Simon Bailey
I am unawar of the tutorial but if its a standard player using NetConnection and NetStream: Either use ns.pause() or ns.togglePause() with ns being your instance of NetStream. Cheers Simon newtriks.com On 7 Jul 2008, at 05:33, [EMAIL PROTECTED] wrote: In the tutorials that is on the

[flexcoders] displaying images in flex

2008-07-07 Thread nitishdhar
how to browse an image from the local system and display it in flex -- View this message in context: http://www.nabble.com/displaying-images-in-flex-tp18310336p18310336.html Sent from the FlexCoders mailing list archive at Nabble.com.

Re: [flexcoders] BlazeDS SOAP Basic authentication

2008-07-07 Thread Jeremy Anderson
Nevermind...I figured out that I need to set the remote credentials before calling loadWsdl(); Now if I could just get the logout() function to behave. --Jeremy On Sat, Jul 5, 2008 at 4:04 PM, Jeremy Anderson [EMAIL PROTECTED] wrote: I have a SOAP Web Service that I'm trying to connect to

[flexcoders] Item renderers cause processor to max out

2008-07-07 Thread Tom McNeer
Hi, I began asking about this problem last week and Alex Harui tried to help me. But I did such a bad job of explaining my problem, I don't think he quite understood the issue. Also, I've done a lot more work over the weekend, stepping through the debugger. And my problem is a bit different than

[flexcoders] ComboBox Problems

2008-07-07 Thread hardaur55
Hey all. Having a silly problem with 3 comboboxes and can't seem to find anything very helpful via google. I'm creating a user registration wizard with multiple pages that contains a custom component. The custom component is a date selection component consisting of 3 combo boxes (month, day,

[flexcoders] Re: question for the sample code for BlazeDS?

2008-07-07 Thread markflex2007
Hi Fidel, Thank you for help. I have a question about the source code.why all the source code have to be zipped?Do I have to zip my code with the zipped file if I need develope a new application with BlazeDS? Thanks a lot Mark --- In flexcoders@yahoogroups.com, Fidel Viegas [EMAIL

Re: [flexcoders] FB3 standalone doesn't find Eclipse plugin

2008-07-07 Thread Tom Chiverton
On Friday 04 Jul 2008, maximecowez wrote: plugin for years on all flavors of Eclipse (Europe, Aptana, CFEclipse, PDT, ...). But the FB standalone version just won't use it. Probably missing a dependency. -- Tom Chiverton This email is

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread Tom Chiverton
On Thursday 03 Jul 2008, jonese wrote: Still looking for anyone who can help fix this issue Firewall in the way ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability

Re: [flexcoders] SWFObject example

2008-07-07 Thread Tom Chiverton
On Thursday 03 Jul 2008, Richard Rodseth wrote: Can anyone please point me at a SWFObject 2 example wrapper with a header, footer, and Flex app that resizes to fill the browser window (except for the header/footer of course). No browser scrollbars. They've got many on their site, alone with an

Re: [flexcoders] Have doubt on Remote Object

2008-07-07 Thread Tom Chiverton
On Saturday 05 Jul 2008, satishedara wrote: with out AMF can we use remote call to connect the java? Yes, but not using AMF - you can connect to a normal web service, or make REST-type AJAX calls instead. -- Tom Chiverton This email is

[flexcoders] Channelset disconnectAll problem, urgent, thanks!

2008-07-07 Thread icykorpio
hello everyone, i create a ChannelSet and add a AMFChannel to it. and attach to some remoteobjects. when i'm making some requests from those remoteobject, i call disconnectAll to interrupt the process(because user can cancel it), but the problem is : after i call disconnectAll on ChannelSet,

Re: [flexcoders] Item renderers cause processor to max out

2008-07-07 Thread Ralf Bokelberg
Hi Tom Have you trid using a labelFunction instead of the item renderer? Kind regards, Ralf On Mon, Jul 7, 2008 at 3:37 PM, Tom McNeer [EMAIL PROTECTED] wrote: Hi, I began asking about this problem last week and Alex Harui tried to help me. But I did such a bad job of explaining my problem,

Re: [flexcoders] Item renderers cause processor to max out

2008-07-07 Thread Tom McNeer
Hi Ralf, Thanks for your reply. On Mon, Jul 7, 2008 at 10:25 AM, Ralf Bokelberg [EMAIL PROTECTED] wrote: Have you trid using a labelFunction instead of the item renderer? I'm not sure how I could do that. Perhaps you could help me understand. While the labelFunction could certainly render

[flexcoders] Re: Caringorm Event

2008-07-07 Thread Tim Hoff
Too funny. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: I knew you were going to say that :-) What, you've foresaken ESP? :)) -TH --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiverton@ wrote: On Wednesday 02 Jul 2008, parjan@ wrote: hi

[flexcoders] Re: Item renderers cause processor to max out

2008-07-07 Thread Tim Hoff
Hi Tom, What are you doing with this event in set data? dispatchEvent(new FlexEvent(FlexEvent.DATA_CHANGE)); It's a loop. -TH --- In flexcoders@yahoogroups.com, Tom McNeer [EMAIL PROTECTED] wrote: Hi, I began asking about this problem last week and Alex Harui tried to help me. But I did

[flexcoders] Print Preview, figuring out just how to do it.

2008-07-07 Thread bredwards358
Thankfully, the basic printing functionality of Flex was all I needed to print out the very basic looking reports I need for my application. However, another requirement is adding Print Preview functionality. So far in my experimentation I've managed to display what should be on the report by

Re: [flexcoders] Print Preview, figuring out just how to do it.

2008-07-07 Thread Tom Chiverton
On Monday 07 Jul 2008, bredwards358 wrote: Now, I am aware of the marvelous looking FlexReport at http://www.kemelyon.com/bts/, however I am at a loss as how to install it so to speak (Meaning I have no idea what files and components I need to copy over in order to use it). Ummm, from

[flexcoders] Re: Missing AsnDecoder Class - SOLVED

2008-07-07 Thread Geoffrey
I was missing the flex-messaging-req.jar. --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: Odd, the AsnDecoder class isn't listed in the online LCDS Java API. Maybe they didn't release this class. I can't seem to find any info about this class online. Jeeze, what the

Re: [flexcoders] Help: Project location problems - Newbie issue

2008-07-07 Thread Tom Chiverton
On Monday 30 Jun 2008, brucewhealton wrote: I then thought, ok, I need to select FileNewFlex Project This was not without problems as well. I was not allowed to define the project using the same folder as before as it claimed that there was an overlap with an existing project. Move the

[flexcoders] Binding for Dynamic Datagrid

2008-07-07 Thread limhy0306
Hi, I've created a custom Dynamic Datagrid component. I would like to ask, how can I bind data to this DG? My codes: // Data to the datagrid. This data is dynamically changing. [Bindable] public var myData:ArrayCollection(); public var myDG:MyDG; // Called when creationComplete private

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread jonese
I'm running this all from localhost windows XP Pro, built in IIS. jonese http://www.jonese.us http://twitter.com/jonese On Mon, Jul 7, 2008 at 10:06 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 03 Jul 2008, jonese wrote: Still looking for anyone who can help fix this issue

[flexcoders] Setting HTTP headers on mx.controls.Image?

2008-07-07 Thread Robert Csiki
Is it possible to set HTTP headers (e.g. a cookie) when requesting a JPG from the network with an mx.controls.Image? Thanks, Robert

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread jonese
i've also uninstalled in reinstalled flex builder today. still no joy. next i'll uninstall flash players, flex builder and let flex builder install the player and see if that works jonese http://www.jonese.us http://twitter.com/jonese On Mon, Jul 7, 2008 at 11:23 AM, jonese [EMAIL

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread Tom Chiverton
On Monday 07 Jul 2008, jonese wrote: I'm running this all from localhost Doesn't stop a software firewall from getting in the way. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited

[flexcoders] Re: Print Preview, figuring out just how to do it.

2008-07-07 Thread bredwards358
Of course, Subversion, I haven't used that since my last Java class back in school, I just need to figure out how to use it again. :P That should help quite a bit once I get it downloaded and figure out what component goes where. Thanks. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL

[flexcoders] BlazeDS application to AIR?

2008-07-07 Thread markflex2007
Hi, I have a Flex/BlazeDS/Webservice application.Do you think if it is possible I can convert it to Air application .Thanks. Do you have a reference URL so I can follow the steps.I am so new for AIR.Thanks Mark

Re: [flexcoders] Have doubt on Remote Object

2008-07-07 Thread Fidel Viegas
On Mon, Jul 7, 2008 at 3:20 PM, Tom Chiverton [EMAIL PROTECTED] wrote: On Saturday 05 Jul 2008, satishedara wrote: with out AMF can we use remote call to connect the java? Yes, but not using AMF - you can connect to a normal web service, or make REST-type AJAX calls instead. Or use the

Re: [flexcoders] Re: Item renderers cause processor to max out

2008-07-07 Thread Tom McNeer
Hi Tim, Thanks for the reply. On Mon, Jul 7, 2008 at 10:54 AM, Tim Hoff [EMAIL PROTECTED] wrote: What are you doing with this event in set data? dispatchEvent(new FlexEvent(FlexEvent.DATA_CHANGE)); It's a loop. You're absolutely correct, of course. Unfortunately, my error was

Re: [flexcoders] Binding for Dynamic Datagrid

2008-07-07 Thread Simon Bailey
myDG.dataProvider={ myData } On 7 Jul 2008, at 16:26, limhy0306 wrote: Hi, I've created a custom Dynamic Datagrid component. I would like to ask, how can I bind data to this DG? My codes: // Data to the datagrid. This data is dynamically changing. [Bindable] public var

Re: [flexcoders] Passing value's from C to Actionscript?

2008-07-07 Thread Tom Chiverton
On Friday 04 Jul 2008, Flex Frenzy wrote: Any resources on passing values from C to Flex/Air? Where is the C program running, and where is the Flex/AIR client running ? If the same machine, you could use a shared folder, or a simple socket server. -- Tom Chiverton

Re: [flexcoders] Automatically granting local trust in Flex Builder 3

2008-07-07 Thread Tom Chiverton
On Thursday 03 Jul 2008, Stephen Downs wrote: I thought Flex Builder 3 was supposed to automatically grant local trust to all swfs when debugging. That's what I'm trying to do, but I'm finding that all swfs are by default set to the local-with-network sandbox. I just add '--use-network=false'

[flexcoders] Re: Item renderers cause processor to max out

2008-07-07 Thread Tim Hoff
Ok, that makes sense. One other thing that might be contributing is: updateComplete=setGridHeight(event) You might want to try: valueCommit=setGridHeight(event) instead. Good luck Tom, -TH --- In flexcoders@yahoogroups.com, Tom McNeer [EMAIL PROTECTED] wrote: Hi Tim, Thanks for the

RE: [flexcoders] ComboBox Problems

2008-07-07 Thread Alex Harui
How are you verifying that selectedIndex is correct? I assume the dropdowns still contain the correct arrays? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hardaur55 Sent: Monday, July 07, 2008 6:47 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread Sherif Abdou
ESET anti-virus/NOD 32 blocks out the flash port. if you have it then it will not work. - Original Message From: jonese [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 10:23:31 AM Subject: Re: [flexcoders] Flex Builder Debug Issue I'm running this all

RE: [flexcoders] displaying images in flex

2008-07-07 Thread Alex Harui
Use AIR? Flash can't get to the local file system other than to upload a file to your server. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nitishdhar Sent: Sunday, July 06, 2008 11:57 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] TextInput as item renderer for ComboBox

2008-07-07 Thread Alex Harui
It is only in the display field. It is not the renderer for the dropdown. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of chandruflex Sent: Sunday, July 06, 2008 10:06 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] TextInput

[flexcoders] Question: need flex to read text files on another server and display in textArea

2008-07-07 Thread Body Works Studio
Hello All, I need to make a pop up that will display the contents of a text file. I want to use a text Area as the file is read only. What is the best way to get Flex to access and read the file on the other server. The file contents are currently ascii text files. Any help would be much

RE: [flexcoders] Re: Problem Adding Custom Event Listeners in a component?

2008-07-07 Thread Alex Harui
In general, you have to be listening to the object that is dispatching. If you use bubble or capture, you can listen to parents if they are display objects. 3 siblings would need to know about each other and listen to each other. Having them register with a central object that dispatches on

RE: [flexcoders] Trick button into rendering mouseover/mouseout states

2008-07-07 Thread Alex Harui
Skin the way you normally do, but set the alpha=0 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dennis Falling Sent: Sunday, July 06, 2008 12:43 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Trick button into rendering

[flexcoders] Re: FB3 standalone doesn't find Eclipse plugin

2008-07-07 Thread maximecowez
What a comment of just 4 words can do... It turns out FB standalone only partially implements JDT (Java Developer Tools), so I downloaded the libs and there's my VSS plugin. Thanks Tom Max --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 04 Jul 2008,

[flexcoders] Variable scope

2008-07-07 Thread markgoldin_2000
I am having some strange (for me) results when I run my program. Here are some parts of the code: My DG declaraton. Note ContextMenuSelected. public class TrainReceivingGrid extends destinationGrid { [Bindable] private var cm:ContextMenu; private

[flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
I have been trying to fix this error for almost 12 hours, now the problem is everything works fine on my own computer but when I move it to a live server i get Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed: url: 'http://mysitename.com/flex2gateway/cfamfpolling'. Now when

[flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-07 Thread Tim Hoff
Doesn't work if you want to keep the button icons visible. Wouldn't this also affect embedded fonts? -TH --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Skin the way you normally do, but set the alpha=0 From:

Re: [flexcoders] Re: Item renderers cause processor to max out

2008-07-07 Thread Tom McNeer
Hi Tim, Thanks again for your help. But ... On Mon, Jul 7, 2008 at 12:03 PM, Tim Hoff [EMAIL PROTECTED] wrote: Ok, that makes sense. One other thing that might be contributing is: updateComplete=setGridHeight(event) You might want to try: valueCommit=setGridHeight(event) I

[flexcoders] Creating a hyperlink mailto in advanced data grid

2008-07-07 Thread Adrian Williams
Hi All, I am using an advanced data grid to display a variety of data, one of which is a users email address. I'd like to be able to set it up so that for any given row in the report, the email addresses are actually hyperlinks to open a mailto: that address. How do I do this? Thanks,

Re: [flexcoders] SWFObject example

2008-07-07 Thread Richard Rodseth
Hi Tom None that I've found, that include a header and footer area outside of the 100% SWF. I guess this is somewhat off-topic, and I've joined the SWFObject mailing list, where I got the following advice: - when your top header and footer do need to be in HTML, you should use JavaScript (fixed

RE: [flexcoders] Re: Item renderers cause processor to max out

2008-07-07 Thread Tracy Spratt
If you are just displaying a comma delimited list in a non-editable cell, then labelFunction is the way to go. If you *use the dataProvider API* to update the item, it will cause the labelFunction to run and re-display the new values. Also, if you find the loop and stay with the

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread João Fernandes
Sherif, can you try to point it directly to the cfserver port instead apache port 80? http://mysitename. com:{CFServerPortNumber}/flex2gateway/cfamfpolling and see if it throws the same error? -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org Portugal Adobe User Group

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
How do I know what the CFServerPortNumber is? THanks - Original Message From: João Fernandes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 12:11:19 PM Subject: Re: [flexcoders] flex2gateway Error Sherif, can you try to point it directly to the cfserver

RE: [flexcoders] Creating a hyperlink mailto in advanced data grid

2008-07-07 Thread Tracy Spratt
There are several ways to do this. One way is to create an itemRenderer using htmlText. htmlText can include an a href= / tag. You can have the click dispatch a bubbling TextEvent, and in the handler, access the dataProvider item via the event.currentTarget property, and use the url to build

RE: [flexcoders] ComboBox Problems

2008-07-07 Thread Tracy Spratt
Implement the wizard using a ViewStack. The control states will not change when you navigate around. Or just set the comboBox selectedIndex on show or some other event. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Re: Data binding in item renderers

2008-07-07 Thread Tracy Spratt
Also, you must use the dataProvider API to update the item, in order for the collection to dispatch the events necessary to update the UI. There is also an itemUpdated() method, and several other techniques for causing the UI to refresh. Tracy From:

RE: [flexcoders] Re: Translate HTTPService

2008-07-07 Thread Tracy Spratt
Loop over the item in your data, and in the loop, create a new value object, assign the property values from your current data item, and push the value object onto an Array. After the loop, wrap the Array in an ArrayCollection. Tracy From:

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
Actually, I tried it and no i still get a 404 page Error and it doesnt connect. - Original Message From: Sherif Abdou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 12:14:03 PM Subject: Re: [flexcoders] flex2gateway Error How do I know what the

RE: [flexcoders] I am looking for flex property file?

2008-07-07 Thread Tracy Spratt
I set site/instance specific values using the html wrapper to pass values into the flex app using flashvars. So a single, compiled application can service many instances. I also believe however, that a db connection string should not be compiled into the client app, especially if it includes

[flexcoders] Re: Item renderers cause processor to max out

2008-07-07 Thread Amy
--- In flexcoders@yahoogroups.com, Tom McNeer [EMAIL PROTECTED] wrote: Hi Tim, Thanks again for your help. But ... On Mon, Jul 7, 2008 at 12:03 PM, Tim Hoff [EMAIL PROTECTED] wrote: Ok, that makes sense. One other thing that might be contributing is:

[flexcoders] loading attributes in a flex custom tag

2008-07-07 Thread Fernando Wermus
Hi all! I have a custom component made by myself. I have to asign the values from the tag's attributes to some object when they are being created in the constructor custom component time. The problem is that Flex doesn't load the attributes when it calls the the constructor and therefore I

RE: [flexcoders] How to trigger the faulthandler of a httpservice

2008-07-07 Thread Tracy Spratt
Return invalid xml. But, why would you want that? Save the fault handler for exceptions you cannot control, like network failure. I wrap all of my data in a consistently formatted status node, that contains any exception data I need on the client. The result handlers look at the status

RE: [flexcoders] Datagrid - Connect to multiple tables

2008-07-07 Thread Tracy Spratt
How far have you gotten? Are you successfully displaying the values from a single table? Are you using one of the RPC protocols? Which? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cox.blair Sent: Friday, July 04, 2008 6:18

[flexcoders] Question for mx:RemoteObject?

2008-07-07 Thread markflex2007
Hi, I just want to make sure if I have to save swf/html (created by Flex) and backed end code in same web server when I use mx:RemoteObject to do the backend access. But I can save swf/html and backend code in different server when I use web service. Thanks Mark

RE: [flexcoders] loading attributes in a flex custom tag

2008-07-07 Thread Tracy Spratt
Don't set them in the constructor, implement them as public properties. If variables, make the [Bindable], or use getter/setter methods for full control. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Fernando Wermus Sent:

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread jonese
we have symantec anti virus running on our corporate network and it has been running like this from day one. I've completely blown away my eclipse 3.3.x installation. downloaded a new copy of eclipse 3.3.2 and installed that. Then re-ran the FB3 installer. everything installs fine. code runs

[flexcoders] rails gateway

2008-07-07 Thread [p e r c e p t i c o n]
Hi Folks, is there a remoting gateway for Rails or django? you know like amfphp...etc... thanks percy

[flexcoders] Re: Problem Adding Custom Event Listeners in a component?

2008-07-07 Thread pbrendanc
Thx - I think I get it now - the default dispatcher works only for parents /child relationships of graphics objects only. If objects are external (e.g. siblings, non visual etc.) a custom dispatcher than maintains a list of related components via some registration mechanism is required. I

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread João Fernandes
check if in your web.xml ( under {cfusionInstance}/WEB-INF/ ) you have the flex2gateway mapping listed !-- Flash Remoting/Flex mapping -- servlet-mapping id=coldfusion_mapping_0 servlet-nameMessageBrokerServlet/servlet-name url-pattern/flex2gateway/*/url-pattern

Re: [flexcoders] What is best way to get data from MySQL database?

2008-07-07 Thread dnk
On 6-Jul-08, at 9:30 PM, Alan wrote: I' read the same about the speed also, but aparrently the new webORB 3.0 has been made all fancy pants fast. WebORB claims it is 300% faster.but I'm guessing that now it's as fast as AMFPHP. Also the idea that a team of people are on it now.

RE: [flexcoders] rails gateway

2008-07-07 Thread Lukas Ruebbelke
WebORB http://www.themidnightcoders.com/weborb/rubyonrails/ I use the .NET version and it is fantastic. _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [p e r c e p t i c o n] Sent: Monday, July 07, 2008 11:19 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-07 Thread Alex Harui
Interesting. It should work because the icon and text is not a child of the skin. Maybe I don't understand what he wants or what you tried. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tim Hoff Sent: Monday, July 07, 2008 10:02 AM

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
Yes I Do. - Original Message From: João Fernandes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 1:33:26 PM Subject: Re: [flexcoders] flex2gateway Error check if in your web.xml ( under {cfusionInstance} /WEB-INF/ ) you have the flex2gateway mapping

[flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-07 Thread nathanpdaniel
I'm not sure but what's the difference between a link button and what you're trying to accomplish? It seems to me what you're looking for would be easily accomplished with a little CSS the LinkButton component rather than reskinning the Button component. --- In flexcoders@yahoogroups.com,

[flexcoders] Starting Builder problem

2008-07-07 Thread markgoldin_2000
I am starting Flex Bulder 3 and it's not going. It says: Loading project . and a progress bar is not moving. I have waitind for a very long time. Anything I can do to rcover from that? Thanks

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
Do you think PHP is blocking it? - Original Message From: Sherif Abdou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 2:04:31 PM Subject: Re: [flexcoders] flex2gateway Error Yes I Do. - Original Message From: João Fernandes

[flexcoders] Internet Explorer cannot display the webpage

2008-07-07 Thread chuck.searisen
Hi, When viewing a webpage in IE, I got a pop-up from IE saying something about Intranet settings, I clicked Yes. Ever since then I've been unable to run Flex applications from Flex Builder. I'm using IE7 and Vista, normally no problems, but I've searched the internet for any fix and cannot

Re: [flexcoders] Flex Builder Debug Issue --- RESOLVED

2008-07-07 Thread jonese
OK the problem was in my browser. I found a closed bug on adobe's bug tracker talking about how some plugins like greasemonky and FF3 can cause issues becuase of a bug in FF3. (should be fixed in 3.01). I didn't have greasemonkey installed so i shut off all my plugins and tried it again. It

Re: [flexcoders] Re: Item renderers cause processor to max out

2008-07-07 Thread Tom McNeer
To both Tracy and Amy, Thanks a lot for your advice. Tracy, I'm pretty new to Flex, so I need to ask you for a little clarification: On Mon, Jul 7, 2008 at 1:22 PM, Tracy Spratt [EMAIL PROTECTED] wrote: If you **use the dataProvider API** to update the item, it will cause the labelFunction

[flexcoders] Re: Trick button into rendering mouseover/mouseout states

2008-07-07 Thread Tim Hoff
Maybe I misunderstood. You were probably saying, set the skin's alpha to 0; not the button's alpha. He just wants the button's icons and label to show (with rollover changes); no background or border. Because the button control is a bit more complicated to programatically skin than other

Re: [flexcoders] loading attributes in a flex custom tag

2008-07-07 Thread Fernando Wermus
What about the order? Flex loads randomly the attributes. I have one called autoplay that if it is set in true play a song, but first I need Flex sets the url attribute. How can I manage this? Thnks On Mon, Jul 7, 2008 at 10:50 AM, Tracy Spratt [EMAIL PROTECTED] wrote: Don't set them in the

RE: [flexcoders] loading attributes in a flex custom tag

2008-07-07 Thread Tracy Spratt
That would be a good candidate for a setter funcion. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Fernando Wermus Sent: Monday, July 07, 2008 3:26 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] loading attributes

RE: [flexcoders] Re: Item renderers cause processor to max out

2008-07-07 Thread Tracy Spratt
Do not operate on the underlying Array. Use the ArrayCollection API, specifically addItem(). No refreshing is necessary. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom McNeer Sent: Monday, July 07, 2008 2:10 PM To:

[flexcoders] Re: Starting Builder problem

2008-07-07 Thread markgoldin_2000
It finally started. But now when I try to export Release version I am getting an error but no reason. Details show this: Encountered errors or warnings while building project accidents.mxml. accidents.mxml: variable 'i' has no type declaration. accidents.mxml: Duplicate variable

Re: [flexcoders] loading attributes in a flex custom tag

2008-07-07 Thread Fernando Wermus
I make it work overrading this function, but I don' t know why this is the convenient way. updateDisplayList *override* *protected* *function* updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):*void*{ *if*(*this*._autoPlay *this*.source!=*null*){ *this*.play(); } } If autoplay

Re: [flexcoders] Re: Starting Builder problem

2008-07-07 Thread Willy Ci
are u importing flex 1.5 project? that is maybe why. Willy -- maybe today is a good day to write some code, hold on, late me take a nap first ... Zzzz Q: How do you spell google? A: Why don't you google it?

Re: [flexcoders] Internet Explorer cannot display the webpage

2008-07-07 Thread Willy Ci
are you using FB3? I would try reinstall the flash player debug first, you can change the browser default to FF. go to preferences, under general - Web Browser, select the browser you like to use, Willy -- maybe today is a

Re: [flexcoders] Re: Item renderers cause processor to max out

2008-07-07 Thread Tom McNeer
Tracy, On Mon, Jul 7, 2008 at 3:56 PM, Tracy Spratt [EMAIL PROTECTED] wrote: Do not operate on the underlying Array. Use the ArrayCollection API, specifically addItem(). No refreshing is necessary. But the problem is that I'm not adding an item to the ArrayCollection. I'm adding an

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread João Fernandes
If you try to make your app to load directly from the ColdFusion instance instead of Apache, PHP wouldn't be able to interfere in the process. Check server logs to see if there was any problem to load the MessageBrokerServlet. -- João Fernandes http://www.onflexwithcf.org

[flexcoders] Hiding items in Tree

2008-07-07 Thread twcrone70
I have a tree that renders a two level hierarchy (e.g. State/City). Each state has a collection of cities. State and city have a boolean flag 'visible'. Without modifying the collection directly, can I somehow make is so that states/cities with 'visible=false' do not show in the tree at all?

Re: [flexcoders] Re: Starting Builder problem

2008-07-07 Thread Enjoy Jake
These probably are just warnings. When you export a release version it likes to show you any warnings, even if there aren't any errors. Check the filesystem to see if your release version SWF really is getting created. If it is, then you have nothing to worry about. However, you should get rid

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
No it is loaded it says MessageBrokerServlet:init - Original Message From: João Fernandes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 3:07:28 PM Subject: Re: [flexcoders] flex2gateway Error If you try to make your app to load directly from the

[flexcoders] Re: Starting Builder problem

2008-07-07 Thread markgoldin_2000
No, this is not a warning. The release version is not created and here is from the Log: !ENTRY org.eclipse.core.resources 4 1 2008-07-07 15:19:40.093 !MESSAGE Internal Error !STACK 0 java.lang.IllegalArgumentException: Element not found: /BRC/bin- release4/test. at

Re: [flexcoders] Creating a hyperlink mailto in advanced data grid

2008-07-07 Thread Adrian Williams
Tracy, Thanks for the help!! I have some additional questions on this. I am very new to flex/as and am stuck on a couple items. I found some examples on how to setup the renderer and have implemented this. I created a function to create the actual mailto string and have hit these

[flexcoders] text style prop not applied to checkboxes?

2008-07-07 Thread blc187
does the textRollOverColor style get applied for the text on checkboxes? I'm styling my checkbox and I can get the label text to change color with checkbox.setStyle(color, 0xff00ff) but not with checkbox.setStyle(textRollOverColor, 0x00ff00) Anyone using it successfully anywhere else?

RE: [flexcoders] loading attributes in a flex custom tag

2008-07-07 Thread Gordon Smith
You normally override commitProperties() when you want to be able to set properties in any order and do something later after you know all their values. To ensure that commitProperties() gets called, call invalidateProperties() in the property setters. Gordon Smith Adobe Flex SDK Team

RE: [flexcoders] Re: Starting Builder problem

2008-07-07 Thread Jim Hayes
Have you tried starting flexbuilder with the -clean argument? If often sorts out mysterious errors on startup (I believe it cleans up/rebuilds the workspace, but I'm no expert). -Original Message- From: flexcoders@yahoogroups.com on behalf of markgoldin_2000 Sent: Mon 07/07/2008 21:23

Re: [flexcoders] text style prop not applied to checkboxes?

2008-07-07 Thread Enjoy Jake
change: checkbox.setStyle( textRollOverCol or, 0x00ff00) to either: checkbox.setStyle( textRollOverCol or, 0x00ff00) or checkbox.setStyle( textRollOverCol or, #00ff00) You don't need the quotes if you're sending the color as a hexidecimal uint. - Original Message From: blc187

RE: [flexcoders] Item renderers cause processor to max out

2008-07-07 Thread Alex Harui
We don't know how your renderer is set up, but here are some things to consider: -a variableRowHeight renderer needs to measure() correctly right after the data property is set. Depending on what component is doing word-wrapping, the measurements may be fluctuating causing the DG to re-render

  1   2   >