RE: [flexcoders] Catching IOError on Loader

2007-02-09 Thread Gordon Smith
Loader doesn't dispatch an ioError event. (It isn't listed in the ASDoc for Loader at http://livedocs.macromedia.com/flex/201/langref/index.html.) This event is dispatched by the Loader's contentLoaderInfo object., which is an instance of LoaderInfo. I don't remember at the moment why the Player's

Re: [flexcoders] Re: Object.addEventListener vs.. adding them inline via MXML

2007-02-09 Thread Ralf Bokelberg
Hi Gordon, Is this a documented behaviour or just the current implementation? Where can we find the documentation? Cheers Ralf. On 2/9/07, Gordon Smith [EMAIL PROTECTED] wrote: Didn't I read somewhere that the order you add listeners is the order they get dispatched in as3 now?

[flexcoders] Image Component using BLOB-data from the database

2007-02-09 Thread bcncgn3
Ist ist possible to pass to an image component blob data from the database?

[flexcoders] Opening GIF in Safari (offtopic?)

2007-02-09 Thread Roman Protsiuk
Hi, everyone. Dunno maybe it's offtopic. However, the question is: if I try opening GIF image in a Safari browser via ExternalInterface, e.g. ExternalInterface.call(window.open, /content/some.gif, _blank); I get it saved instead of showed. Browser just saves image and that's all. I'm not keen on

Re: [flexcoders] Opening GIF in Safari (offtopic?)

2007-02-09 Thread ilya . devers
Its probably the mime type (or content type) of the server that serves up the gif... Hi, everyone. Dunno maybe it's offtopic. However, the question is: if I try opening GIF image in a Safari browser via ExternalInterface, e.g. ExternalInterface.call(window.open, /content/some.gif, _blank);

Re: [flexcoders] Opening GIF in Safari (offtopic?)

2007-02-09 Thread Roman Protsiuk
Thanks, I'll check that out. R. On 2/9/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Its probably the mime type (or content type) of the server that serves up the gif... Hi, everyone. Dunno maybe it's offtopic. However, the question is: if I try opening GIF image in a Safari browser

[flexcoders] Re: Getting duration of FLV 1.0 videos

2007-02-09 Thread beecee1977
Thanks Jim, I'll give that a go. --- In flexcoders@yahoogroups.com, Jim Cheng [EMAIL PROTECTED] wrote: beecee1977 wrote: Hi, I want to be able to get the duration of any flv file using the videoDisplay object. This works fine most of the time (just myVideoDisplay.totalTime)...

[flexcoders] hide text area

2007-02-09 Thread sekar r
Hi all here i want how to hide and add mulitble text area one by one while on click add textlink. actually the text area should in invisible. while click the add link that time it should be visible and add next textarea. how we can do? plz send me some samples. sekar

[flexcoders] SQL DATABASE CONNECTION

2007-02-09 Thread sekar r
Hi all, here i am trying to connect sql database from flex. my apllication server is tomcat. i am using java. how we can store the data's in sql database. what are the step and method i should do. How we can connection throguh java pl give me guide. plz help me. it may

[flexcoders] flex tree dynamic

2007-02-09 Thread sekar r
Hi all, i want load the tree based new user login. my db is sql. based. how we can load the new user in tree from db. send me some samples.i am java. - Any questions? Get answers on any topic at Yahoo! Answers. Try it now.

[flexcoders] Show/Hide Column of Grid using Context Menu

2007-02-09 Thread sanjaypmg
Hi all, Am making a function of show/hide column of dataGrid using Context Menu. Contextmenu comes when user clicks right button of mouse on header. I have made a mxml component and added in headerRender of the dataGrid Column. But when I click on my hide column button of context menu it

Re: [flexcoders] What's the official consensus of using CodeBehind??

2007-02-09 Thread Stephen Downs
I originally was all go to separate the view and code using the source prop in a script tag. What i didn't like about this was that it was a loose link. Code behind makes this a more solid link but after experimenting with that also i've found I end up with some many files open it begins

[flexcoders] Custom Componenet : ScrollBar Functionality

2007-02-09 Thread rajafaisal09
HI, I want to Create a Custom Component using Action Script 3, extending Panel Class. I want to add my own ScrollBar functionality through coding. Any one have got any idea how to do it or which section of Flex 2 API i should refer. I don't want the Default Scrollbars, I just want 2 buttons

[flexcoders] Custom Component: Creating Scrolling Functionality

2007-02-09 Thread Faisal Raja
HI Everyone, I hope everyone is having a nice time. I want to create a Custom Component that i am plannign to extend from Panel. I want to create Scrolling feature in my component using two buttons. (I don't want the default Scrollbar thing). Can any1 tell me how I can implement this or tell

[flexcoders] More Information About Adobe Flash Player Trace Move...

2007-02-09 Thread idpjc
(This is regarding Adobe changing the trace output location done by the debug flash player supplied with Flex 2.0.1 to C:\Documents and Settings\{UserName}\Application Data\Macromedia\Flash Player\Logs) As I use the trace output from the flash player for my companies flex continuous

[flexcoders] Do I need an ISV support plan if...

2007-02-09 Thread wilsonpaulsen
I'm hoping someone here can help me. After spending several weeks programming using the Flex SDK, I found this on the Adobe website: For ISVs that develop software applications for sale that are built on or embed Flex, an Adobe ISV support plan and/or OEM license and redistribution agreement is

Re: [flexcoders] Registration Points and Flex -

2007-02-09 Thread Cortlandt Winters
Hi Mike, I did notice recently that the zoomInstance class has a public registration point. I think you pass each icon into the constructor of a subclass of the zoomInstance class that determines, based on the icon type, whether to set the originx and originy to the center or the upper left.

[flexcoders] BoxDivider background image

2007-02-09 Thread jscrummack
Hi, I'm looking to set a repeating background image to the actual divider between two panels in a dividerbox, I can change the actual knob image no problems but all attempts to setting an image on its background seem to fail (only seem to have access to the background image on the whole

Re: [flexcoders] Re: How to have datagrids with different filterfunction for a single dataprovide

2007-02-09 Thread EECOLOR
This is possible if you use the class below. It extends ArrayCollection and adds two methods: addReflection(reflection:ArrayCollection) removeReflection(reflection:ArrayCollection) This class makes sure the reflections share the list (inner dataProvider) of the main collection. If something

[flexcoders] Re: StartDrag() versus DragManager.doDrag()

2007-02-09 Thread Derrick Grigg
I can't find anywhere that we use startDrag()in the framework, including in the DragManager. My bad, you know what they say about 'assuming'. Just did some more digging, in the DragProxy class and was very surprised to see that it actually uses a mouse move event listener and then

[flexcoders] Re: View State - How to call a function on a custom component???

2007-02-09 Thread boy_trike
If I understand your question, you have a public function in your component that you want to call after it is added when the view state changes. I do this all the time. The trick is to have a function called when you enter the state ie: mx:State name=OrderEntry basedOn=oneItem

[flexcoders] Re: SQL DATABASE CONNECTION

2007-02-09 Thread jrunrandy
In Flex, you access the database indirectly, using HTTPService, WebService or RemoteObject. If you have to use Java, you should use the HTTPService tag to invoke a servlet or JSP that access the database and returns the data as XML. It should look something like this: users user

Re: [flexcoders] SQL DATABASE CONNECTION

2007-02-09 Thread Rich Tretola
If you are running FDS, you can use RemoteObject to connect to your java class files. The java files need to handle the database connection. Rich On 2/9/07, sekar r [EMAIL PROTECTED] wrote: Hi all, here i am trying to connect sql database from flex. my apllication server is tomcat. i am

[flexcoders] Does anyone know how to set a legendMarkerRenderer dynamically ???

2007-02-09 Thread mgrayfmr
I am creating LineSeries objects dynamically, and I want to be able to use the CircleItemRenderer for the legend. I tried doing this several ways, but get an error that the renderer cannot be cast to a type of IFactory. I tried making sure CircleItemRenderer was imported, and using new

Re: [flexcoders] Show/Hide Column of Grid using Context Menu

2007-02-09 Thread Adam Royle
Hi Sanya, I have done this in my app successfully, however with a different technique. My context menu shows all of the columns in the datagrid, with a prefix that denotes whether it is visible or not. Once clicked, it figured out which column was clicked and toggle's the visibility. It works

Re: [flexcoders] Image versus SWFLoader for loading external SWF Files

2007-02-09 Thread Daniel Freiman
Image is a subclass of SWFLoader. Thus SWFLoader is probably more lightweight than Image. Both import JPEG, PNG, GIF, and SWF. The only real difference is that Image implements IDataRenderer../core/IDataRenderer.html, IDropInListItemRenderer listClasses/IDropInListItemRenderer.html,

[flexcoders] FormItem adds extra space on the left . . .

2007-02-09 Thread crumpelfungus
Does anyone know how to control the space within a FormItem? If I have a FormItem and then add a RadioButton (or any other control for that matter), I always get a bunch of extra space to the left of the control. That space cannot be influenced or manipulated with any of the available style

RE: [flexcoders] Catching IOError on Loader

2007-02-09 Thread Robb Cundick
Thanks for the reply. I did try just setting an image component's source property at runtime. It works fine if the image is there but if there is no image it just shows a blank (with a red x) and doesn't generate an error. The reason I need to catch the error is that I am building a directory

[flexcoders] filterFunction

2007-02-09 Thread kumarpal jain
Hi All, Can some one help me in filterFunction method of listcollectionView or Array Collection .. I am looking for some examples on the same which will help . I am a bit confused in this I want to filter some records in array collection and can we use this method for

Re: [flexcoders] StartDrag() versus DragManager.doDrag()

2007-02-09 Thread Igor Costa
Hi Mike I particulary do not like to use DragManager for containers or UIComponents. I use both methods but in some case I just use isDragging method of DraManager Class. Here's a short example of that. mx:Script ![CDATA[ import mx.managers.DragManager; private var

[flexcoders] Personalized framework ASDocs

2007-02-09 Thread Daniel Freiman
I want to create an ASDoc of the flash and mx packages with my own personal annotations (It just seems like a good place to keep notes and would be a convenient way to publish those notes if there aren't any copyright issues, which I'll have to look into). I've tried running ASDocs on the

Re: [flexcoders] Re: StartDrag() versus DragManager.doDrag()

2007-02-09 Thread Daniel Freiman
I can't speak to Adobe's intent, but I regularly avoid startDrag because I need more fine control over the drag. For example if you want to program a drag that implements snap to functionality, you're going to want to have direct control over the placement of the object, instead of letting the

Re: [flexcoders] filterFunction

2007-02-09 Thread Clint Tredway
I have what I call filter functions that will find items and remove them or if not found add them.. not sure what you are meaning by filter... On 2/9/07, kumarpal jain [EMAIL PROTECTED] wrote: Hi All, Can some one help me in filterFunction method of listcollectionView or Array Collection ..

Re: [flexcoders] FormItem adds extra space on the left . . .

2007-02-09 Thread Clint Tredway
Dont use the form or formItem tags, use a grid to layout your form. On 2/9/07, crumpelfungus [EMAIL PROTECTED] wrote: *Does anyone know how to control the space within a FormItem?* If I have a FormItem and then add a RadioButton (or any other control for that matter), I always get a bunch

Re: [flexcoders] Re:HTML in Flex

2007-02-09 Thread Kevin Newman
Robi Ray wrote: You can use the iframe trick, but rather than iframe try using the 'div' 'layer' html tags along with JavaScript. This will remove cross browser issues. Cheers ! OMG, the layer html tag! I think I lost a few years of life when I read that. Please tell me no one is still

Re: [flexcoders] Catching IOError on Loader

2007-02-09 Thread Doug McCune
Gordon's original answer, which is that the Image or SWFLoader components dispatch ioError events, should still apply. If you set an event listener for the flash.events.IOErrorEvent.IO_ERROR event, then it should get dispatched if the image file can't be found. Make sure you're listening for

[flexcoders] Cairngorm: Set the DataGrid selectedItem value - best practice?

2007-02-09 Thread Danko Kozar
I'm interested what's the best practice for this issue: I edit a DataGrid items - not in the grid but in the form that pops up on items double-click. After the edited item is submitted to the database, I'd like to change it's on-screen appearance. If I change its value in a DataProvider -

RE: [flexcoders] Catching IOError on Loader

2007-02-09 Thread Robb Cundick
The brokenImageSkin sounds like just what I need. I'll check that out. Thanks! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Doug McCune Sent: Friday, February 09, 2007 9:17 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

[flexcoders] TextInput - Incorrect focus behavior

2007-02-09 Thread acooleagle
Hi all, Seems to me that focus events in TextInputs are a bit out of whack. The test application below should never allow focus on the phoneNumberInput field, since its focusIn event immediately redirects focus back to the zipcodeInput field. However, the zipCodeInput field remains active (as

[flexcoders] Re: FormItem adds extra space on the left . . .

2007-02-09 Thread crumpelfungus
Clint, Thank you for your swift reply. Are you saying that there is no benefit in using FormItem with a RadioButton? (At least, nothing that couldn't be done otherwise.) --- In flexcoders@yahoogroups.com, Clint Tredway [EMAIL PROTECTED] wrote: Dont use the form or formItem tags, use a grid

Re: [flexcoders] Yahoo API: Vote for Flex 2 version

2007-02-09 Thread Shannon Hicks
I think Yahoo plans on releasing the new API's at 360Flex. http://360flex.org/2007/01/360flex-adds-yahoo-as-sponsor.html The topics are called Yahoo! AS3 and Flex 2 Libraries part 1 and 2. Shan TJ Downes wrote: Currently the Yahoo Maps Flex API is limited to Flex 1.5. In order to use Yahoo

Re: [flexcoders] Re: FormItem adds extra space on the left . . .

2007-02-09 Thread Clint Tredway
If you need to have complete control over how the form is laid out, I wouldn't use the form container, I would use something else. I am not sure if you are aware of this, but you can use other containers inside a formItem tag, i.e. a HBox or VBox... etc.. but that will not solve your issue of

[flexcoders] Re: Yahoo API: Vote for Flex 2 version

2007-02-09 Thread TJ Downes
Shan, that's exciting news! Thanks for the link. Mike, I completely agree. There's an application I am building for the advertising industry that will benefit greatly from an integrated API and I have been holding off on the mapping functionality until the new API is released. I'm extremely

[flexcoders] Basics question about FLEX 2 (newbie with flex )

2007-02-09 Thread sshaders
Hi all, I have two questions about flex: I need to be compliant with flash player 7, can flex 2 compile AS2 code target to player 7? I'm using Remoting extension for flash MX 2004; can I use the same Remoting extension with flex 2? Basicly i'm using AMFPHP, maybe there exist new connection

RE: [flexcoders] Do I need an ISV support plan if...

2007-02-09 Thread Matt Chotin
Hi Hyrum, The only time you need the ISV support plan or OEM agreement is if you actually include the SDK as part of your product. Two examples: 1) you send your software to customers and include the Flex SDK so that they can compile SWFs or CSS, etc 2) as part of your product

[flexcoders] more news on our upcoming marketing efforts

2007-02-09 Thread Matt Chotin
http://weblogs.macromedia.com/flexteam/archives/2007/02/flex_campaign_f. cfm Hopefully we're going to see an influx of people trying Flex, any suggestions the community wants to put together for helping folks get up and running are always appreciated. Matt

[flexcoders] Re: more news on our upcoming marketing efforts

2007-02-09 Thread maunger
You go Matt! (And all of the Flex team for that matter!) excellent news Mitch --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: http://weblogs.macromedia.com/flexteam/archives/2007/02/flex_campaign_f. cfm Hopefully we're going to see an influx of people trying Flex,

[flexcoders] Re: Is it possble to drag and drop a line chart ?

2007-02-09 Thread helihobby
Or maybe another solution to the problem ? Regards, Sean. --- In flexcoders@yahoogroups.com, helihobby [EMAIL PROTECTED] wrote: Hello all, Can anyone shed some light on how ( if possible ) to drag a line chart bar. Basically, I wish to modify the underline data provider using a line

[flexcoders] Re: issue with dataManagementService and spring (i suppose)

2007-02-09 Thread billy_d_white
Did you ever get a solution to this issue? I'm having the same issue and my setup is very similar (Tomcat with FDS, Spring, Hibernate, etc). I've found that I can create an object, and it immediately appears in the list component so the fill method is picking it up after it is saved on the

[flexcoders] Newbie Question on Menubar/MenuBarItem transition

2007-02-09 Thread jscrummack
Hi, How do I effect the transition of a menubar list as it displays? It currently looks like its doing some kind of wipe right transition. Could just be me but I can't get a handle on what I need to override to change / remove this transition? Thanks Jason

[flexcoders] Re: How many phone call does it take to convert a license?

2007-02-09 Thread Tom Cornilliac
Quick update on this issue; Matt Chotin stepped up big time and was able to get me a new key in less than 24 hours. Thank You, Thank You, Thank You Matt! ~Tom On 2/8/07, Tom Cornilliac [EMAIL PROTECTED] wrote: This is off topic, forgive me. I'm furious and I need to vent publicly and I'm sure

[flexcoders] Re: Basics question about FLEX 2 (newbie with flex )

2007-02-09 Thread ben.clinkinbeard
Flex 2 can only target FP9. HTH, Ben --- In flexcoders@yahoogroups.com, sshaders [EMAIL PROTECTED] wrote: Hi all, I have two questions about flex: I need to be compliant with flash player 7, can flex 2 compile AS2 code target to player 7? I'm using Remoting extension for flash MX

[flexcoders] Re: TextInput - Incorrect focus behavior

2007-02-09 Thread superstella_uk
--- In flexcoders@yahoogroups.com, acooleagle [EMAIL PROTECTED] wrote: Cant you just set the TextField.selectable = false ? Hi all, Seems to me that focus events in TextInputs are a bit out of whack. The test application below should never allow focus on the phoneNumberInput field,

RE: [flexcoders] Re: StartDrag() versus DragManager.doDrag()

2007-02-09 Thread Gordon Smith
Why go through all that instead of just using the startDrag that is a core method of the Sprite class? I'll try to find out... - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Derrick Grigg Sent: Friday, February 09,

RE: [flexcoders] Re: Is it possble to drag and drop a line chart ?

2007-02-09 Thread Karl Johnson
I am sure there are a lot of interesting ways to tackle this. I doubt there is any kind of native support for this functionality, but it is a pretty interesting and fun problem to tackle. I would start by doing something like laying a transparent canvas over top of the chart component, and listen

[flexcoders] Self Signed Cert. For Secure SecureRTMPChannel

2007-02-09 Thread vitopn
What steps do I need to take to get a self signed certificate to work with SecureRTMPChannel? I generate the keystore file with something like this: keytool -genkey -alias flex2cert -dname CN=localhost, OU=Presidio, O=Presidio, L=San Francisco, S=California, C=CA -validity 3650 and configure the

Re: [flexcoders] more news on our upcoming marketing efforts

2007-02-09 Thread Jack Park
Lots more example code. Tons of example code. All kinds of use cases, all kinds of interfaces to external technologies (e.g. java, javascript, php, ruby on rails, whatever). On 2/9/07, Matt Chotin [EMAIL PROTECTED] wrote:

[flexcoders] Missing SDK Source Code

2007-02-09 Thread j.conley
Just wondering why the source for I/O related classes are mysteriously missing from the Flex2 SDK when it is present for most other components. for example: mx.rpc.* mx.messaging.*

RE: [flexcoders] Re: Object.addEventListener vs.. adding them inline via MXML

2007-02-09 Thread Gordon Smith
It should be documented, but I'm not sure that it is. I can't find it in the ASDoc, for example, which doesn't seem to discuss the case of registering multiple listeners for the same event with the same priority. - Gordon From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: FormItem adds extra space on the left . . .

2007-02-09 Thread Gordon Smith
The purpose of a FormItem is to associate a label with one or more controls like this: Name: |-| |-| Address: |-| It looks like you don't need the label, so you don't need to use a FormItem. But FormItem should be OK to use even

RE: [flexcoders] Basics question about FLEX 2 (newbie with flex )

2007-02-09 Thread Gordon Smith
can flex 2 compile AS2 code target to player 7? No, sorry. Flex 2 relies on AS3, which requires Player 9. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sshaders Sent: Friday, February 09, 2007 8:25 AM To:

[flexcoders] PHP FLEX Login Component Free Source

2007-02-09 Thread omnipotencezennou
I have just publish a working PHP / Flex login/Registration component to my blog. You can right click to view the source. It is fully commented and includes lots of features like client side validation and a remember username feature for creating cookies on the client computer. Hope that this

[flexcoders] Re: filterFunction

2007-02-09 Thread Mark
I was just about to post the same question before I saw this and thought I'd ride this one out to see where it goes. I've found a bunch of examples on how to filter an ArrayCollection with a text box such as this one (maybe it will help you Kumar):

Re: [flexcoders] Re: filterFunction

2007-02-09 Thread Clint Tredway
if you want, I can post how I iterate through a collection which should get you started. On 2/9/07, Mark [EMAIL PROTECTED] wrote: I was just about to post the same question before I saw this and thought I'd ride this one out to see where it goes. I've found a bunch of examples on how to

[flexcoders] Custom TreeItemRenderer??

2007-02-09 Thread tinkiknit
Hi again Flexperts... I'm still working on my tree of query terms...I'm perplexed about customizing the TreeItemRenderer so that my nodes (these are actually my custom component which is used to create query terms) show up instead of the default file icon and label. Example in plain text:

RE: [flexcoders] Re: Object.addEventListener vs.. adding them inline via MXML

2007-02-09 Thread Francis Cheng
It is documented, in two places: 1) ActionScript Language Reference: http://www.adobe.com/livedocs/flex/201/langref/flash/events/EventDispatc her.html In the method detail for flash.events.EventDispatcher.addEventListener() see the description of the priority parameter: If two or more

[flexcoders] Re: Self Signed Cert. For Secure SecureRTMPChannel

2007-02-09 Thread Doug Lowder
Looks like you didn't add the self-signed certificate to the keystore. Check out the keytool -import command. http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/keytool.html#Comman\ ds http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/keytool.html#Comma\ nds

[flexcoders] amfphp + codeigniter

2007-02-09 Thread joshua gatcke
Has anyone ever created a Flex + PHP project using AMFPHP + Codeigniter? I have been trying to integrate the two with no luck. Or maybe I shouldn't integrate the two, the question then becomes: does anyone know how to consume webservices from external sources with amfphp? what I mean is,

[flexcoders] problem loading an AS3 Swf into another one

2007-02-09 Thread nicolasparziale
basically what happens is that i can load the first AS3 swf(a.swf) into another AS3. but when i try to load it into another project it seems to have a security trouble or something that don't let me access the SWFLoader.content , but of course that it's fully loaded when i try on doing that. Did

[flexcoders] remove comments on compile - strip comments - optimize SWF size - reduce size

2007-02-09 Thread Jason Hanson
Is there a way to remove comments or strip comments out of the AS3 code during compiler preprocessing? I have noticed that the SWF size is larger if comments are left in. It is not a huge amount of added size, but it can add up to 10-20 KB for a large project. I am working on an AS3 project

[flexcoders] retreiving object height after adding it as a child object

2007-02-09 Thread scott_flex
How or when can you retreive the height of a display object when you add it to your vbox or hbox. I have code that looks like this: var myObject:myControl = new myControl(); // call the public load method with xml to set some text // on myControl and other display values.

Re: [flexcoders] Flex 2 + Wiimote + PaperVision 3D = good times

2007-02-09 Thread Kevin Newman
slangeberg wrote: By way of bytearray.org http://bytearray.org: http://blog.je2050.de/2007/02/02/wiiflash-and-papervision3d/ : : ) Scott I must have missed it. Does the Wii support Flash Player 9 now? Kevin N.

[flexcoders] Re: filterFunction

2007-02-09 Thread Mark
That would be a great start, thanks --- In flexcoders@yahoogroups.com, Clint Tredway [EMAIL PROTECTED] wrote: if you want, I can post how I iterate through a collection which should get you started. On 2/9/07, Mark [EMAIL PROTECTED] wrote: I was just about to post the same question

[flexcoders] Re: any interest in an alternative to QTP to automate Flex apps?

2007-02-09 Thread Chris Luebcke
I think you could have saved yourself some time by adding ${FRAMEWORKS}\libs\automation.swc (there's also an automation_charts.swc) to your project's library path. Matt Chotin, et al: Is there a licensing restriction on using the mx.automation package (i.e. FDS)? This thread has kind of lead me

Re: [flexcoders] Flex 2 + Wiimote + PaperVision 3D = good times

2007-02-09 Thread slangeberg
No, if you read his articles, or watch the right movie (can't remember!) you'll see he wrote a socket server (C++?) that communicates with the Wii. Then, flash hooks up with a binary socket and reads from that. -Scott On 2/9/07, Kevin Newman [EMAIL PROTECTED] wrote: slangeberg wrote: By

Re: [flexcoders] How to get Flex2 Maven Plugin?

2007-02-09 Thread Thijs Triemstra | Collab
Hi Cristian, The pom.xml below is a copy-paste of the example on your site, it also uses version '1.0-SNAPSHOT' and after reading your reply I realized that this should be '1.0-alpha-2' instead. Maybe you should modify the examples on your site or point out it needs to be changed to the

RE: [flexcoders] Re: any interest in an alternative to QTP to automate Flex apps?

2007-02-09 Thread Matt Chotin
Yes, there is a licensing restriction on mx.automation. The implementation of IAutomationManager which is the main entry point into the system is restricted by the per-seat license of FDS as we've been discussing. The reason the rest of the code is included is because you need to be able to

[flexcoders] Re: any interest in an alternative to QTP to automate Flex apps?

2007-02-09 Thread brian.knorr
Ya...I discovered that there isn't an AutomationManager implementation in the automation packages in the SDK. But now I am looking into implementing the IAutomationManager and the IAutomationObjectHelper myself with my own classes. With this I should be able to play events to instrument the

[flexcoders] Re: Does anyone know how to set a legendMarkerRenderer dynamically ???

2007-02-09 Thread mgrayfmr
I tried something else on a suggestion, that also did not work, even though it seems OK. I created a style sheet entry like this: .legendRenderer { legendMarkerRenderer: ClassReference (mx.charts.renderers.CircleItemRenderer); } I made sure the style sheet was included in my app. I

RE: [flexcoders] Re: Object.addEventListener vs.. adding them inline via MXML

2007-02-09 Thread Gordon Smith
Thanks, Francis. Sorry I didn't read the ASDoc carefully enough! - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Francis Cheng Sent: Friday, February 09, 2007 10:26 AM To: flexcoders@yahoogroups.com Subject: RE:

[flexcoders] Problem populating datagrid after state change, need a Repeater maybe?

2007-02-09 Thread Cashorali, Tanya M.
I have a form collecting data about an experiment. There's a numeric stepper that specifies number of repeated experiments there will be. Once the user enters all the data and presses submit, there's a state change triggered if the numeric stepper value is 1. I'd like the data from the form

RE: [flexcoders] remove comments on compile - strip comments - optimize SWF size - reduce size

2007-02-09 Thread Gordon Smith
Comments are not compiled into the SWF; no source code is. The debug version of the SWF has opcodes which have file paths and line numbers. So there is a tiny effect from comments affecting the line numbers (possibly to have more digits) which can then change the SWF compression. But this is

[flexcoders] Datefield inconsistencies? Or is it just me!

2007-02-09 Thread baserath_2001
This little error is driving me crazy: I am trying to populate a datagrid with values from a table based on the day selected in the datefield. I can use the datefield to choose and pass the value to my webservice but the result returned does not reflect the date selected. For example I can

RE: [flexcoders] Re: any interest in an alternative to QTP to automate Flex apps?

2007-02-09 Thread Matt Chotin
I don't know of gotchas right now. I don't think we can stop you from writing your own impls, though don't take that as a complete legal blessing. As far as technical hurdles I don't know enough, I just know we spent a while on them :-) From:

[flexcoders] Using setSyle on dynamic created button not working

2007-02-09 Thread darylgmyers
I'm creating a number of objects dynamically in actionscript. then I'm using setStyle to set certain styles before addChild actually adds the object to the container. The setStyle is not working. Below is a small piece of the code. varnewButton:Button = new Button; newButton.label=Update;

RE: [flexcoders] Flex Form Field Focus

2007-02-09 Thread Jagos, Allan
Unless I missed it I didn't see any responses on this. Can this not be done or is it a bad question. I am new to Flex. :-) -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jagos, Allan Sent: Wednesday, February 07, 2007 2:41 PM To:

[flexcoders] AMF3/WebService benchmark app

2007-02-09 Thread Mark Piller
Hey guys, Does anyone know whatever happened to the Census app built by James Ward? It used to be available at http://www.jamesward.org/census/. The application used to compare performance of various ways of accessing server-side data (remoting, web service, http get, etc). If anyone saved a copy

Re: [flexcoders] more news on our upcoming marketing efforts

2007-02-09 Thread Cortlandt Winters
Hi Matt, Something I'd like to see would be a contest like you had when Flex2 first came out, but with two differences. 1) The focus is on porting open source libraries from other languages to As3. 2) The prizes aren't tv's, but licences to either Flash Media Server or Flex Data Sevices. That

[flexcoders] mouseOver an element within a TileList problem

2007-02-09 Thread bensmith5774
Hello, I hope someone can help me with my problem - I think I may be missing something rather obvious. I have a TileList populated with data (ArrayCollection). Underneath the TileList I have a blank area. When the user mouseOver's a row in the TileList I want some of that data (for example

[flexcoders] Flex 2 API for Yahoo! Maps

2007-02-09 Thread Tariq Ahmed
There's a suggestion on the Yahoo Developer Network for a Flex 2 API for Yahoo Maps. All of you want it, even if you don't think you do. :) So throw in that vote! http://suggestions.yahoo.com/detail/?prop=ydnfid=3208

Re: [flexcoders] more news on our upcoming marketing efforts

2007-02-09 Thread Cortlandt Winters
I should add that there was one more reason I suggested this that relates more to your original question. I think the best way to start with Flex is not to focus on MXML or the Flex framework or the nice components or liquid layout so much up front, but to focus on the As3 language first. To

[flexcoders] Re: remove comments on compile - strip comments - optimize SWF size - reduce siz

2007-02-09 Thread Jason Hanson
Thanks for your response and all the info about the way the SWF is compiled. I am looking for an obfuscator, but all the 3rd party tools out there are still in development. If the comments are not complied into the SWF then there must be something else that is causing the size difference - like

RE: [flexcoders] Re: no rtmp connection on win xp ?

2007-02-09 Thread Jeff Vroom
I think that this is just the generic can't connect error. Usually you get this when the player is unable to connect to the socket. I was going to suggest a firewall issue or something like that but you already tried that? Can you to something like: telnet localhost 2038 If that

[flexcoders] Trigger?

2007-02-09 Thread Tom Cornilliac
The ComboBox.close() method accepts a trigger:Event = null argument. What does the trigger do? What I'm trying to do is close the combobox from a function and then dispatch and event when it's done closing. Any ideas? ~Tom

Re: [flexcoders] PHP FLEX Login Component Free Source

2007-02-09 Thread Hilary Bridel
Thank you Anthony, This will be useful to many. Hilary www.bridel.org On 2/10/07, omnipotencezennou [EMAIL PROTECTED] wrote: I have just publish a working PHP / Flex login/Registration component to my blog. You can right click to view the source. It is fully commented and includes lots

RE: [flexcoders] more news on our upcoming marketing efforts

2007-02-09 Thread Matt Chotin
Hey Cortland, This could be an interesting idea and I'll pass it on. When we had the derby when Flex 2 launched, no one submitted any utility libraries. I'd be curious if others would be interested if we were to focus on an area like this. Matt From:

[flexcoders] Controlling a Component in an Item Renderer

2007-02-09 Thread Paul Whitelock
I have an item renderer specified for a List component and there is a CheckBox component within the item renderer so that each List element displays a CheckBox. What I'd like to do is if a certain condition exists in the application I'd like to disable the item renderer's CheckBox for specific

RE: [flexcoders] Custom TreeItemRenderer??

2007-02-09 Thread Tracy Spratt
Here is an example that is pretty easy to understand. You can ignore the line drawing stuff for your purposes. http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=575 I suggest you rename this to what you want yours to be called and then get it working with your tree.

[flexcoders] Re: Controlling a Component in an Item Renderer

2007-02-09 Thread nathanpdaniel
The field used to determine if the Item should be checked or not from the list stand point will also be able to tell your Item to ckeck the checkbox. For Example: xml data - rootitem check=yes /item ckeck=no //root Load the data into your list. Then in your Item's MXML file, you'd use

RE: [flexcoders] Controlling a Component in an Item Renderer

2007-02-09 Thread Tracy Spratt
You must work with the dataProvider. The renderer must set its enabled state based on a field/property/attribute in the dataProvider in the set data() function. When you update the dataProvider using the API, and set the enabled field/property/attribute on the desired items, the itemRenderer

  1   2   >