[flexcoders] want to load multiple XML files to populate various controls

2006-12-15 Thread danj520
can you have multiple instances of httpService? Here is my code: mx:HTTPService id=adapSrv url=data/adapters.xml/ mx:HTTPService id=attenSrv url=data/attenuators.xml/ mx:HTTPService id=btSrv url=data/biastees.xml/ mx:HTTPService id=combSrv url=data/combiners.xml/

[flexcoders] integrating PageFlip (flash file) into container

2006-12-19 Thread danj520
Another newbie here...Has anyone been successful integrating this Flash file into Flex? http://www.iparigrafika.hu/pageflip/ How can it be put inside a container, i.e., panel, canvas, etc. to use as a doc viewer? any help appreciated. Thanks in advance..

[flexcoders] no disk in drive error

2006-12-20 Thread danj520
I had to reinstall Windows recently and reinstall Flex 2.0 trial. When I run a file, it says No disk in drive and I can't continue. Anyone else have this problem or know how to solve? Thanks in advance.

[flexcoders] POST not working

2007-01-09 Thread danj520
Anyone know why this isn't working? When run, nothing is posted..all form fields exist and are valid...thanks in advance... mx:HTTPService id=userRequest url=data/forms/contact.txt useProxy=false method=POST mx:request xmlns=

[flexcoders] Re: POST not working

2007-01-10 Thread danj520
[mailto:[EMAIL PROTECTED] On Behalf Of danj520 Sent: Tuesday, January 09, 2007 3:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] POST not working Anyone know why this isn't working? When run, nothing is posted..all form fields exist and are valid...thanks in advance

[flexcoders] Alex's Distortion effects

2007-02-06 Thread danj520
http://weblogs.macromedia.com/auhlmann/archives/2006/11/download_distor.cfm The example has the following code: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:distortion=view.distortion.* distortion:SimpleFlip /

[flexcoders] Re: Alex's Distortion effects

2007-02-07 Thread danj520
:[EMAIL PROTECTED] On Behalf Of danj520 Sent: 07 February 2007 00:45 To: flexcoders@yahoogroups.com Subject: [flexcoders] Alex's Distortion effects http://weblogs.macromedia.com/auhlmann/archives/2006/11/download_distor. cfm http://weblogs.macromedia.com/auhlmann/archives/2006/11

[flexcoders] ComboBox URLs

2007-03-18 Thread danj520
I hope someone can help. I have a ComboBox that has a list of options. When an option is selected, I would like a corresponding XML file to be loaded. I assume I have to declare a string variable to assign the URL. The ComboBox dataProvider is hard-coded with an mx:Array, but I'm stuck on how to

[flexcoders] Re: ComboBox URLs

2007-03-18 Thread danj520
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danj520 Sent: Sunday, March 18, 2007 10:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox URLs I hope someone can help. I have a ComboBox that has a list of options. When

[flexcoders] Re: ComboBox URLs

2007-03-18 Thread danj520
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danj520 Sent: Sunday, March 18, 2007 10:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox URLs I hope someone can help. I have a ComboBox that has a list of options. When an option is selected, I would like

[flexcoders] Re: ComboBox URLs

2007-03-19 Thread danj520
function dispatchFilter():void { trace(appName.selectedItem.url); // use this url to fetch the XML } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danj520 Sent: Sunday, March 18, 2007 11:02 PM To: flexcoders

[flexcoders] error with HTTPService

2007-03-19 Thread danj520
Hello, I'm trying to bind the returned results from a ComboBox to a url in HTTPService. Flex returns a Value must be quoted error with this statement: mx:HTTPService id=productService url={appName.SelectedItem.url} result=productServiceResultHandler(event) showBusyCursor=true/ Here's my

[flexcoders] Re: error with HTTPService

2007-03-20 Thread danj520
Hi and thank you for your reply. Yes, I did bind the results like your example and it works great. Thank you! --- In flexcoders@yahoogroups.com, TCash21 [EMAIL PROTECTED] wrote: Did you try [EMAIL PROTECTED] --- In flexcoders@yahoogroups.com, danj520 danj520@ wrote: Hello, I'm trying

[flexcoders] How do you replay an effect?

2007-04-07 Thread danj520
I have numerous states, transitions and effects. When I enter a state and the effect plays, i.e. creationCompleteEfect={draw_panels}, it works fine the first time, but when leaving and re-entering the same state, the effects don't play and the components appear static. I'm guessing I need to

[flexcoders] REPOST - TileList 'change' not updating subsequent times

2007-04-15 Thread danj520
I wonder if anyone else has this issue. I have a TileList and when a tile is initially clicked, the change event works and evokes the State change normally. When I leave the state and return, even though I select the same tile, it does nothing. But, if I select other tiles, the state changes.

[flexcoders] Re: REPOST - TileList 'change' not updating subsequent times

2007-04-15 Thread danj520
--- In flexcoders@yahoogroups.com, danj520 [EMAIL PROTECTED] wrote: Found the problem myself...you need to specify itemClick= instead of: mx:change ![CDATA

[flexcoders] checkbox in itemRenderer

2007-06-07 Thread danj520
Hi, I have an itemrenderer that I want to insert a checkbox component. When I display the TileList, how can I detect when the checkbox has been checked (and its value, true/false) for each itemrenderer? I have approx 40 tiles...Thanks in advance..