[flexcoders] Can't seem to get [RouteEvents] for Spring ActionScript working

2010-08-19 Thread twcrone70
I have [EventHandler] tag working for components in my project but can't seem to get the events automatically routed to the EventBus via the [RouteEvents] metatag. The only thing that works is EventBus.dispatchEvent() explicitly which is not very clean to use throughout the code. I have

[flexcoders] Re: ContextMenu 'clipboardMenu' property

2010-04-06 Thread twcrone70
Sure...nothing exciting though... import flash.ui.ContextMenu; ... private var _contextMenu:ContextMenu; ... private function init() : void { _contextMenu = new ContextMenu(); _contextMenu.hideBuiltInItems(); _contextMenu.clipboardMenu = true; // compiler error _contextMenu[

[flexcoders] Re: ContextMenu 'clipboardMenu' property

2010-04-06 Thread twcrone70
Ah...that's the kicker. Our project should be compiling to FP10 but it is set to 9. Is there a good way to know properties/methods only available in FP10? I'm not aware of such things in SDK documentation. Thanks! - Todd --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@...

[flexcoders] Re: ContextMenu 'clipboardMenu' property

2010-04-06 Thread twcrone70
Wow. Okay, thanks for the info Oleg. Very helpful. - Todd --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: I'm afraid, that it is not possible to know that at compile time, unless you define some compiler variable for that. However, at runtime you can always check the

[flexcoders] ContextMenu 'clipboardMenu' property

2010-04-05 Thread twcrone70
Can't get access to the ContexMenu's clipboardMenu property as the Flex docs specifies at http://livedocs.adobe.com/flex/3/langref/flash/ui/ContextMenu.html. Error is rror: Access of possibly undefined property clipboardMenu through a reference with static type flash.ui:ContextMenu... Using

[flexcoders] Logic diagram library for Flex

2009-09-18 Thread twcrone70
Anyone know of any Flex libraries for creating logic diagrams or the like? Basically something that facilitates dragging 'items' on to a canvas and connecting with logical operations to create 'flows' with branching. Thanks, - Todd

[flexcoders] Flex 3 Debugger hanging

2009-08-01 Thread twcrone70
I have used the debugger in Flex Builder 3 Professional happily on my MacPro for a while. Recently I tried to profile our app and had some issues and now everytime I try to just use the debugger it shows in the console [SWF]

[flexcoders] SWFLoader to load Flash Lite SWF in Flex

2009-06-01 Thread twcrone70
I am using the SWFLoader to load a swf built for Flash Lite's VM (version?) into a Flex window built to run in Flash 9+. The SWFs seem to load but interacting with them is a little sketchy. In an HTML wrapper they work fine. How do I force the SWFs to be loaded in a different version Flash VM

[flexcoders] SWFLoader showing images originally off the 'canvas'

2009-05-22 Thread twcrone70
In Flex I am trying to show examples of SWFs that run on portable devices in FlashLite. I am able to open them in a Flex control (HBox, TitleWindow etc.) and pass necessariy parameters but some images that are normally off the 'canvas' or 'stage' for the flash SWFs are showing up outside the

[flexcoders] Re: Flash 10 File Chooser

2009-03-09 Thread twcrone70
file that initiated the upload or download to access the uploaded or downloaded file or the file's location on the user's disk. See: http://livedocs.adobe.com/flex/3/langref/flash/net/FileReference.html --JIm --- In flexcoders@yahoogroups.com, twcrone70 twcrone70@ wrote: Is there anyway

[flexcoders] Re: Selected item/index in ComboBox

2009-03-05 Thread twcrone70
--- In flexcoders@yahoogroups.com, twcrone70 twcrone70@ wrote: I recently moved a form into a pop up window. One of the form items is a ComboBox of countries. If you are 'editing' and existing record I preselect (selectedItem) the one associated with the record already. This worked before but now since

[flexcoders] Flash 10 File Chooser

2009-03-05 Thread twcrone70
Is there anyway to get the fully qualified path to a selected file rather than just the filename? - Todd

[flexcoders] Selected item/index in ComboBox

2009-03-04 Thread twcrone70
I recently moved a form into a pop up window. One of the form items is a ComboBox of countries. If you are 'editing' and existing record I preselect (selectedItem) the one associated with the record already. This worked before but now since the form is being populated with countries

[flexcoders] Re: FileReference.upload

2009-01-30 Thread twcrone70
Can't give an answer but if you don't already know, there is a rails/flex site you might find useful. http://flexonrails.net/ Good luck! - Todd --- In flexcoders@yahoogroups.com, tchredeemed apth...@... wrote: Hello, I am using RubyAMF to save information to the database. The

[flexcoders] Flex training

2008-12-10 Thread twcrone70
We might be getting funding for Flex training early next year. What are some good training vendors that will come on-site for Adobe Flex training? Thanks - Todd

[flexcoders] Can the Loading message be localized?

2008-11-07 Thread twcrone70
I am currently passing the 'localeChain' into a SWF as a flash var and using it to explicitly set the locale on the resourceManager. This is working for the application but is there anyway to the Initializing message in the beginning openning swf to be localized? Thanks, - Todd

[flexcoders] Re: Broken Tomcat server within Eclipse - NullPointerException on startup

2008-09-15 Thread twcrone70
I'm guessing you are using the Web Tools Platform in Eclipse for this... Are you using data services from LCDS, Granite or something else? I'm going to guess tomcat isn't really the issue. Rather eclipse's attempt at making things easier is messing things up. If you are making changes to Java

[flexcoders] Code metrics

2008-09-12 Thread twcrone70
Does anyone know of a good tool for AS3 code metrics? Measuring things like cyclomatic complexity. Similar to tools used to check quality of Java code. Thanks, - Todd

[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?

[flexcoders] Re: Does Flex 2/3 support left to right languages?

2008-06-25 Thread twcrone70
. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of twcrone70 Sent: Tuesday, June 24, 2008 1:52 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Does Flex 2/3 support left to right

[flexcoders] Does Flex 2/3 support left to right languages?

2008-06-24 Thread twcrone70

[flexcoders] Re: A great feature for Flex Builder would be getter and setter automation.

2008-06-20 Thread twcrone70
Please remember that if all you need is default behavior as the script you provided does, that is implicitly provided by creating your var public in AS3. Yes, it feels funny having a public member variable coming from Java since it is bad to expose your objects state. But, if you need to

[flexcoders] Re: A great feature for Flex Builder would be getter and setter automation.

2008-06-20 Thread twcrone70
contact [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of twcrone70 Sent: 20 June 2008 15:34 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: A great feature for Flex Builder would be getter and setter

[flexcoders] Multiple applications in SWF file

2008-06-09 Thread twcrone70
Is there a case where you would have more than one root Application in a SWF? - Todd

[flexcoders] Re: I must be stupid or something

2008-05-28 Thread twcrone70
People are pretty helpful around here but I think a code snippet might get a better answer. - Todd --- In flexcoders@yahoogroups.com, George [EMAIL PROTECTED] wrote: I have an HTTPService which returns an XML result. This works fine. I used the result format of e4x when the service is called

[flexcoders] Re: Async Concurrent Requests with AMF for BlazeDS or LCDS

2008-05-22 Thread twcrone70
Your server code might be able to run things concurrently but unless I misread something, Flash is currently single threaded I believe. So actually sending the requests at the 'same time' is difficult if even possible. - Todd --- In flexcoders@yahoogroups.com, MyoT [EMAIL PROTECTED] wrote:

[flexcoders] Re: Flex automation - AutoQuick sample application

2008-05-22 Thread twcrone70
to prove it can be done so any assistance would be great! My justification for open sourcing it is because I need help this time since this version is meant to be more featured and used for more than one project. - Todd --- In flexcoders@yahoogroups.com, twcrone70 [EMAIL PROTECTED] wrote: Trying

[flexcoders] Re: Dynamic HTTPService Request

2008-05-21 Thread twcrone70
Try doing your HTTPService request in ActionScript instead. e.g. var params:Object = new Object(); params.parameter1 = value; params.parameter2 = value2; var myService:HTTPService = new HTTPService( /myuri ); var at:AsycToken = myService.send( params ); at.addResponder( new Responder(

[flexcoders] Flex automation - AutoQuick sample application

2008-05-21 Thread twcrone70
Trying to get the AutoQuick automation sample application running on my own and for some reason the automationManager is always null. Line 355 in the AQAdapter. Anyone know why this might not be getting initialized properly? Feel like I followed the instructions pretty well...

[flexcoders] Re: Grr, HTTPService doesn't work when it should

2008-05-20 Thread twcrone70
On the contrary to an earlier response, I believe you need to change checkJobs.lastResult.jobs.job to checkJobs.lastResult.job It's been a while since I interacted with XML based responses but I think the root tag is essentially ignored and you specify the level past that. - Todd --- In

[flexcoders] Re: Is it possible to invoke a AMF call just before browser close?

2008-05-20 Thread twcrone70
My guess is this is highly unlikely to work consistently if at all. We simply have our session timeout short enough that the session will not be 'orphaned' very long. In the client app, we put in a 'keep alive' call to 'something' on the server on a timer shorter than the session timeout. If

[flexcoders] Re: Flex decoding soap complex objects in complex objects

2008-04-24 Thread twcrone70
If you have control of the web service itself and no one is forcing you to use SOAP you have other less complex, better performing options. 1) If you want to use XML, try using REST style web services or a straight XML representation of your object and you can explicitly control how you

[flexcoders] Re: passing parameters to eventlistener functions

2008-04-24 Thread twcrone70
Create a custom event that has a field or fields that hold your parameter(s). When you create the event for dispatching you can then add the parameter(s) and since that event is passed in to the handler method, you will have the parameter(s) in the event instance. package mypkg { import

[flexcoders] Re: Error thrown in application is being 'swallowed'

2008-04-16 Thread twcrone70
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of twcrone70 Sent: Tuesday, April 15, 2008 7:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Error thrown in application is being 'swallowed' If there is a critical

[flexcoders] Error thrown in application is being 'swallowed'

2008-04-15 Thread twcrone70
If there is a critical failure in my applications I make sure to throw and error to bring the system down so that nothing fails quietly that can't be recovered from gracefully. However, I just found a case where a custom Error instance is thrown and even though it is not being caught in code,

[flexcoders] Re: Artemis

2008-04-01 Thread twcrone70
Sounds like you can't ship an AIR application with jar file and then interact with it on the client machine. Is this true? Is anyone using AIR to do anything on the client's network like find other computers, printer etc.? - Todd --- In flexcoders@yahoogroups.com, Jhonny Everson [EMAIL

[flexcoders] Re: Newbie, RemoteObject with ActionScript

2008-03-31 Thread twcrone70
defined in views.module.')), ); } --- In flexcoders@yahoogroups.com, twcrone70 twcrone70@ wrote: Method signature is my attempt to be language neutral when asking for the interface like in Java it might be: public List getSomething( int param, String param ); The getNodes() call

[flexcoders] Re: Any reason to use Flash CS3 over Flex?

2008-03-31 Thread twcrone70
Well for me one part of the decision would be skill set of your developers. We have alot of hard core Java developers, so using Flex and Flex Builder IDE makes alot of sense to us. But I imagine if you have people used to using Flash or are more graphic designers, I think CS3 might be a better

[flexcoders] Re: Newbie, RemoteObject with ActionScript

2008-03-30 Thread twcrone70
to do with my use of remoteObject. I'm not exactly sure what you mean by server code signature, but I'm running Drupal 5 with services and the AMFPHP module. Thanks, Ben --- In flexcoders@yahoogroups.com, twcrone70 twcrone70@ wrote: Well at first glance it appears that you

[flexcoders] Re: Newbie, RemoteObject with ActionScript

2008-03-29 Thread twcrone70
Well at first glance it appears that you are passing parameters in the actionscript and not in the MXML so they are each looking for a different method on the server. When I get no such method error it is usually because I have specified the wrong parameters or in the wrong order. What is the

[flexcoders] Re: Can a SWF be hosted on server A and have access to server B which does r

2008-03-28 Thread twcrone70
For your channel definition instead of using a relative URL for an endpoint... endpoint uri=http://{server.name}:{server.port}/{context.root}/blazeds/amf; class=flex.messaging.endpoints.AMFEndpoint

[flexcoders] Adobe Updater quite unexpectedly

2008-03-27 Thread twcrone70
On Leopard, FB3 I always get Adobe Updater exception a minute or so after I start up the IDE. Any ideas how to fix this? On that note is it okay to update Eclipse itself to 3.3.2 etc. underneath the stand-alone FB3? I encounter some issues that I hear will be fixed in 3.4 and don't really want

[flexcoders] Re: Adobe Updater quite unexpectedly

2008-03-27 Thread twcrone70
: On Thursday 27 Mar 2008, twcrone70 wrote: On Leopard, FB3 I always get Adobe Updater exception a minute or so after I start up the IDE. Any ideas how to fix this? Do you have an internet connection, and the settings in the Eclipse preferences for proxy etc set ? On that note

[flexcoders] Re: progress bar with remote objects

2008-03-12 Thread twcrone70
Looks like that would 'work' but it is usually a bad idea to pass a view component to a service method. Another option would be to have the method that is parsing the XML file to fire off events (or in PureMVC notifications) that something managing the progress bar can listen for. The event (or

[flexcoders] Re: Flex Charts with Large Data Set

2008-03-12 Thread twcrone70
James Ward has a RIA benchmark app which is probably at least a little self-serving since he IS an Adobe Flex Evangelist but...still could shed some light on different transfer format speeds. http://www.jamesward.org/census/ - Todd --- In flexcoders@yahoogroups.com, Abyss Knight [EMAIL

[flexcoders] Re: Flex data services

2008-03-03 Thread twcrone70
You might want to post this on the javaflexcoders group forum. They are more likely to be able to help you with the Java web app aspects of your work. - Todd --- In flexcoders@yahoogroups.com, Sanjit Kumar [EMAIL PROTECTED] wrote: hi all I want to use Flex data services for my application.

[flexcoders] Flex 3 Upgrade

2008-02-27 Thread twcrone70
In order to be eligible for the Flex Builder 3 Upgrade do you only need a Flex Builder 2 license or do you need a Flex 2 Charting license also? Are there any other requirements that would make getting the full license preferable? Thanks, - Todd

[flexcoders] Re: How do YOU do functional testing and automation package questions

2008-01-18 Thread twcrone70
I'd love to hear how FunFX works out for you. We are currently using some extensions I wrote to Selenium to test our Flex (2.0.1) UI. It is working pretty well for us. There was some talk last year of making it open source this year but I'm not sure what approvals/time I will get to facilitate

[flexcoders] Re: Flex Dot Net

2007-12-27 Thread twcrone70
If you want to build simple XML-based services with your server code it really doesn't make much difference to Flex. You can even use SOAP web services and Flex has a way to interact with them although I wouldn't suggest starting off using SOAP unless mandated but that is a different issue.

[flexcoders] Re: How do YOU do functional testing and automation package questions

2007-12-27 Thread twcrone70
I wish this tool was planned for platforms other than Windows. --- In flexcoders@yahoogroups.com, tnajaryan [EMAIL PROTECTED] wrote: AFAIK, there are two tools that you can currently use for Flex GUI testing: Mercury QTP and TestComplete (which is not using mx.automation and thus is of

[flexcoders] Re: How do YOU do functional testing and automation package questions

2007-12-27 Thread twcrone70
I am actually a ways into developing an in house extension to Flex for Selenium. I looked for others doing the same a couple months back (Sept/Oct) and found none. Can you direct me to the others you have found doing this? We are going to approach this with management again after the New

[flexcoders] Re: showing last child of vbox..

2007-12-27 Thread twcrone70
This is probably considered a 'hack' but you can always get the y value of the child and then move the vertical scroll position to the location manually... var newPosition:int = child.y; vbox.verticalScrollPosition = newPosition; Now this of course assumes that your vbox is the first or only

[flexcoders] Re: How do YOU do functional testing and automation package questions

2007-12-27 Thread twcrone70
I am actually a ways into developing an in house extension to Flex for Selenium. I looked for others doing the same a couple months back (Sept/Oct) and found none. Can you direct me to the others you have found doing this? We are going to approach this with management again after the New

[flexcoders] Re: Automated UI Testing for FLEX (Help!)

2007-09-29 Thread twcrone70
This sounds pretty much what I am currently doing with my extension to Selenium for QA testing our Flex code. Where did you guys end up on this? I've made pretty decent progress this month working on extensions to test our current application but there is alot more to do and I'd love some help

[flexcoders] Flexenium: The Selenium Extension to Flex

2007-09-28 Thread twcrone70
Okay, kinda cheesy subject line but you are reading my message. I am currently working on an extension to Selenium that allows you to use the Selenium (www.openqa.org) core to build QA tests for a Flex application rather than use the expensive alternative, Mercury QTP. I'm a few weeks into it

[flexcoders] Selecting a file for FileRef in browse window

2007-09-10 Thread twcrone70
I'm current working on an extension to Selenium that allows me to exercise a Flex UI. One use case requires that a file be selected from the FileRef browse window. Haven't tried anything yet, but I am guessing that is hard. Anyone have any ideas how to pick a file from the browse window in AS

[flexcoders] Accessing an Alert (or popup window) programmatically

2007-09-05 Thread twcrone70
Anyone know how to click a button in an Alert or a window being managed by the PopupManager? Writing a testing tool that needs to be able to close down popups that are programmatically summoned via automated button clicking etc. Also would love to know how to programmatically access the popup's