[flexcoders] How to use Proxy script with Flex WebService?

2007-03-23 Thread rzilist
Hi folks, I'm consuming a webservice from secured domain which with no crossdomain.xml file at server root. To get around the Security error accessing url message, and as the only feasible solution, I wrote a proxy script in .NET and uploaded to the IIS server hosting the swf. Now, when I try

Re: [flexcoders] Re: How to asynchronously dispatch an event

2007-03-23 Thread John Mark Hawley
I don't see why you can't use the equivalent of an AsyncToken in a sync call if you really want to. I don't understand the problem. There's at least one DoLater.as class floating around in AS2..a doLater is basically just adding an onEnterFrame to an handy MovieClip that calls a given method

Re: [flexcoders] OS X Dock implemented in Flex

2007-03-23 Thread Doug McCune
I'm working on getting the source for that released, honestly. I'm about to add the Fire effect as a component to flexlib (next day or two), I wanted to get that done before I published the source of that mashup since it uses the fire. But I'm definitely working on getting the source out to

[flexcoders] Multiple Selection Menu?

2007-03-23 Thread Kevin
i am looking for a menu type component that allows you to select multiple items in the menu. This would be used to toggle values on off. I know I have seen it, but I can't remember the name and where. Ring a bell? Thanks, Kevin

RE: [flexcoders] Re: How to asynchronously dispatch an event

2007-03-23 Thread Peter
Thanks for the guidance, and apologies if I am asking very newbie questions. While I have a decent Java background, I do have a lot of new flex/flash things to try and get a grip on. I don't see why you can't use the equivalent of an AsyncToken in a sync call if you really want to. I don't

RE: [flexcoders] How to use Proxy script with Flex WebService?

2007-03-23 Thread Peter Farland
If you set useProxy=true WebService will generated an HTTPRequestMessage as it is expecting to communicate with the FDS ProxyService which runs on a messaging backbone. The format of the message depends on the ChannelSet assigned to the WebService (or the defaults set for the DefaultHTTPS

[flexcoders] setting listeners and component parameters from the class

2007-03-23 Thread lazylittleprince
Hi... What i want to manage is, seperating the code from the mxml completely. And here is my attempt but it is not working. I guess my problem is about adding the event listeners or setting the component id s in the class file. How should i change the code so that it works ? and any good practice

RE: [flexcoders] Multiple Selection Menu?

2007-03-23 Thread Trevor.Peace
You want to use mx:MenuBar. Peace out... From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: Friday, March 23, 2007 3:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Multiple Selection Menu? i am looking

[flexcoders] Can't read FLV Duration

2007-03-23 Thread Rod Perkins
I've read the threads on reading the duration of FLV files and have used the FLVMDGUI shareware tool to set the meta data information for all of the FLV files I am using. However, there are situations when my metaDataclient does not get called. In particular I have one stubborn file that

RE: [flexcoders] setting listeners and component parameters from the class

2007-03-23 Thread Alex Harui
In Flex, when writing UI code in ActionScript, you not only instantiate UI widgets, but you must explicitly add them to the display list. Adding mx:Button id=btn width=100 height=100%/ to an MXML file is equivalent to: var btn:Button = new Button btn.id=btn; btn.width = 100;

[flexcoders] Apollo - Saving flv files locally from camera

2007-03-23 Thread alexandermaccaw
Is it possible to save flv files locally straight from a user's webcam?

[flexcoders] Apollo TShirt

2007-03-23 Thread scalenine
In case anyone is interested I made some Apollo TShirts based on community input and they are now for sale. They were home made on a screen printer I have and they are made on a per order basis. Check 'em out: http://scalenine.com/blog/2007/03/22/apollo-tshirts-now-available/ This may be the

[flexcoders] What is the correct way to detect activation of a Canvas in a ViewStack?

2007-03-23 Thread wdsnapper
I am using a ViewStack to contain a set of Canvas'. I switch between items in the stack by clicking on buttons. I want to be able to detect when a Canvas gains focus and run a method to initialize content on that Canvas. What is the correct event to monitor to achieve this behavior? Thanks in

RE: [flexcoders] Multiple Selection Menu?

2007-03-23 Thread Gordon Smith
The Menu component supports having multiple items of type check which can be toggled on or off by selecting them. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: Friday, March 23, 2007 3:09 PM To:

Re: [flexcoders] How to use Proxy script with Flex WebService?

2007-03-23 Thread Osvaldo Aufiero
Roman, have you read http://livedocs.adobe.com/flex/201/langref/mx/rpc/http/mxml/HTTPService.html? (that link explains the difference between setting useProxy to true or to false) I had the same situation and I solved it using a proxy.php (downloaded from Adobe) with the final url (the one

[flexcoders] Re: setting listeners and component parameters from the class

2007-03-23 Thread lazylittleprince
thanks for your reply. But i have a problem in this situation. Because my main point is to seperate model (and/or data) from presentation. Otherwise i would just put the code in the Script tag in mxml. From what you have written here : Should i understand the fact that this is not possible ?

RE: [flexcoders] Line inbetween comboItems

2007-03-23 Thread Trevor.Peace
No custom renderer necessary... Just swap your ComboBox for a MenuBar, and bind it to an array like this one: [Bindable] public var compList : Array = [{label: separating menu options, children: [ {label: ya gotta, type: normal,

[flexcoders] Re: How to asynchronously dispatch an event

2007-03-23 Thread Paul DeCoursey
Ok, I have never really used AsyncToken so I don't really understand the benefits to it. But what would you add to it that would be of any use? Could you not just have an object you pass in the doAction function that is added to the token? I suppose it's all the things I can't think of that make

[flexcoders] Re: Constant Variable declaration in Custom Component

2007-03-23 Thread madhukiranm
Got It... Thanks, Madhu --- In flexcoders@yahoogroups.com, madhukiranm [EMAIL PROTECTED] wrote: Hi, I need to declare a constant public variable in a custom component (say direction with values horizontal and vertical). When I use this custom component in any MXML, and try to

[flexcoders] Problem updating Flex Builder to 2.0.1

2007-03-23 Thread Rick Root
I'm attempting to update Flex Builder on my system from 2.0 to 2.0.1 Please note that Flex Builder 2 is running fine. When I run the installer (flexbuilder2_201updater.exe), I specify the location of Flex Builder 2 (C:\Program Files\Adobe\Flex Builder 2) and I get an error: Please choose an

[flexcoders] Re: Application background colour during pre-loader

2007-03-23 Thread Patrick Reagan
Here are cookbook instructions for the compiler technique and for adjusting the html file for preloader backgroundColor changes. The html approach worked for me. http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailspostId=1421productId=2 Patrick

Re: [flexcoders] Re: Caching problem

2007-03-23 Thread slangeberg
Hmm, i've had this experience on both Apache IIS. I'm not talking about a server cahce, I believe this is browser related. Upload SWF to server, and do not see change in browser till cache is cleared. No one else experiences this? My current understanding is that since nothing about the page

[flexcoders] Problem installing Flex 2.0.1 updater

2007-03-23 Thread Rick Root
I'm attempting to update Flex Builder on my system from 2.0 to 2.0.1 Please note that Flex Builder 2 is running fine. When I run the installer (flexbuilder2_201updater.exe), I specify the location of Flex Builder 2 (C:\Program Files\Adobe\Flex Builder 2) and I get an error: Please choose

[flexcoders] Trimming a request sent using mx:httpservice /

2007-03-23 Thread Thomas Newcomen
I have an application that is to post XML to a url and return a resultset as XML. When using a html form to post the xml, it has to be in a formfield named xml. When I attempt to debug the service call, it /looks/ as if the xml being sent contains nothing extra, but I keep getting the response

[flexcoders] Re: Problem installing Flex 2.0.1 updater

2007-03-23 Thread Rick Root
BTW it would appear that nobody has ever had this problem before, because if I google for the exact phrase Please choose an existing Eclipse 3.1 there are zero documents. I'm always amazed when I google for something that doesn't exist! On 3/23/07, Rick Root [EMAIL PROTECTED] wrote: I'm

[flexcoders] Set as Default Application: for an AS Class

2007-03-23 Thread Anthony Lee
Hi All, I'm working through a tutorial that instructs me to right click on my .as class in the navigator and select Set as Default Application. The problem is: This option is grayed out for .as classes in my version of Flex Builder, 2.0.1. Is there a known reason for this? Is there something I

[flexcoders] Flex Data Services:Live feed possible from python web service?

2007-03-23 Thread suyash jape
Hi all I want to do charting of some data being collected from a python web service. Can i have live real time feed to the charts in Flex. The Web service has to be in python. Or for real time feed in charts,does the server providing the data has to Flex data server? Can i integrate

<    1   2