Re: [flexcoders] how to get GET POST variable

2006-09-04 Thread Abdul Qabiz
This might help you:http://www.abdulqabiz.com/blog/archives/macromedia_flex/how_to_get_url.php-abdul On 9/4/06, Yiðit Boyar [EMAIL PROTECTED] wrote: hello,i need to send variables to a php page which has flex inside...as an example, you know flex automatically

Re: [flexcoders] Re: Need help with Image Tile List and ZOOM

2006-09-04 Thread Phil Marston
Hi David, I'm not sure about the choppyness my only thought about the direction of the zoom is whether alignment attributes have any effect? I see from your example there was no alignment attribute used in the Tile component (assuming there even is such an attribute for that component), but

Re: [flexcoders] how to get GET POST variable

2006-09-04 Thread Abdul Qabiz
Hi,Just updated the code and demo there to use new xml namespace (http://www.adobe.com/2006/mxml). I posted that example during Flex 2 beta time..-abdul On 9/4/06, Abdul Qabiz [EMAIL PROTECTED] wrote: This might help you:http://www.abdulqabiz.com/blog/archives/macromedia_flex/how_to_get_url.php

[flexcoders] dynamic URLRequest();

2006-09-04 Thread pioplacz
I'm having some problems and can't really figure out a way of do it. What i want to do is a doubleclick event in tilelist. On doubleclick i want to create a link. Every item rendered in tilelist have diffrent link. But cannot get it to work. I have created a doubleclick event in tilelist.

Re: [flexcoders] Re: HMAC-SHA1

2006-09-04 Thread Luís Gustavo Sanabio
Hi Dave, Thanks.. You're right. I will generate the signature at server. thanks, Gustavo 2006/9/3, Dave Wolf [EMAIL PROTECTED]: First it is worth noting that HMAC-SHA1 isnt actually encryption atall.Rather it is a hash.More specifically it is a keyed hash algorithm that produces a fixed

[flexcoders] Re: unable to load wsdl?? flex, you're pissing me off...

2006-09-04 Thread wrench77777
I am getting sporadic Runtime errors when trying to load a Web Service . When testing locally, the web service loads fine. When testing from a remote server, I get a 2047 error - but only very occassionally. I have a crossdomain.xml file in the root directory, and the webservice itself has a

Re: [flexcoders] how to get GET POST variables

2006-09-04 Thread Bill Lane
You could get php to add the variables as FlashVars. The FlashVars would then be available from Flex using Application.application.parameters['FlashVars_name']. There is a description in the Developers guide at: Flex 2 Developer's Guide Flex Programming Topics Communicating with the

[flexcoders] FW: Problem in Texbox while populating from Grid

2006-09-04 Thread Renee
In the attached screen , update the name , give some very big name now try to navigate through records by clicking on the row. Notice valuse populating in name textbox is invisible. The problem is when we updated name with longer one, cursor(pointer ) moves to  right most position. Now the cursor

[flexcoders] Connecting multiple projects

2006-09-04 Thread kristian_wright2002
I have build a couple of different Flex projects (eg a Login project and a Webcam project) and I'd like to link them together, but I'm not sure how. I've tried adding the required projects to my main project in the main projects Project References, tried copying the sub app's application mxml

[flexcoders] Error when trying to run Notes Sample application

2006-09-04 Thread Ghose, Sanjucta
Hi, I am a Flex newbie. I am trying to run the Notes sample application that comes with Flex Builder by typing http://localhost:8700/samples/dataservice/notes/notes.mxml on my browser. The following error pops up. RPC Fault faultString=Send failed faultCode=Client.Error.MessageSend

[flexcoders] Customizing Tree / itemRenderer Tree

2006-09-04 Thread Peter Huppertz
Dear List, I want to use the tree control as a basis for a bulletin board. To extend the tree to display more than the label-field I started to write my own itemRenderer. I override the createChildren method to add a new TextField (addChild(myMessage)) and override the updateDisplayList to

[flexcoders] Anybody tried this?

2006-09-04 Thread Pramod
Hi, I am working on a project where in the requirement is as follows - The whole project is a wizard. My project folder has a folder 'myComponents' - basically consisting of various charts (in fact all the charts which Flex Charting supports). In step 2 in need to display all these componets

[flexcoders] Unable to access the webservice

2006-09-04 Thread comeinsidetochat
Hello Group, I am facing problem while accessing the webservice via http://ipnumber/webservicefile.cfc?wsdl. Its working finely when trying to acceess it from http://localhost/webservicefile.cfc?wsdl. I tried useProxy=true/false but didnt able to make it work. Please help. Thank you Vijay

[flexcoders] Accessing Component in the class

2006-09-04 Thread viju kumar
Hello Group, We need to access the component defined in the mxml into the actionscript file. But we are unable to get the access of the component in class file. How can we access the controls in the class file from mxml file. Please help. Thank You vijay

Re: [flexcoders] Accessing Component in the class

2006-09-04 Thread Abdul Qabiz
Hi,import MXML_COMPONENT_FILE_NAMEshould work?Please give some more details whenever you post questions. Thanks-abdulOn 9/4/06, viju kumar [EMAIL PROTECTED] wrote: Hello Group, We need to access the component defined in the mxml into the actionscript file.

Re: [flexcoders] Anybody tried this?

2006-09-04 Thread Abdul Qabiz
Create instance of each chart component, one by one in some display object (of thumbnail size) which is offstage (not visible to user), take the bitmap snapshot (look at BitmapData class).. Then show the all those bitmap's as thumbnails... You need to do this during initialization of app... To

Re: [flexcoders] Unable to access the webservice

2006-09-04 Thread Abdul Qabiz
Macromedia Flash Player has some security constrains. If you Flash Player is directly connecting to another domain and it doesn't find a crossdomain.xml there, no data excahnge would be allowed.If you really want to consume a webservice and you don't have access to web-server (webservice's),

Re: [flexcoders] connection refused with the http service

2006-09-04 Thread Abdul Qabiz
Dude, I am not really sure HTTPService can connect to mySQL directly?Why don't you try using Binary Socket and implement mySQL client in ActionScript 3 :)That's what I tried doing and stopped half-way, little complicated and needs time... Would love to see if you do it..-abdulOn 9/2/06,

Re: [flexcoders] ServiceCapture, Charles opern source equivalent?

2006-09-04 Thread Abdul Qabiz
I like both of these... But I like some good features in Service Capture, like mapping requests to files on file-system.. You can use it to debug things or develop without a webserver sometime...Since guy (Kevin) who built Service Capture, himself is a Flex/Flash Developer..so I think, he would

Re: [flexcoders] ServiceCapture, Charles opern source equivalent?

2006-09-04 Thread Abdul Qabiz
Or Fidller on Internet ExplorerOn 9/4/06, Abdul Qabiz [EMAIL PROTECTED] wrote: I like both of these... But I like some good features in Service Capture, like mapping requests to files on file-system.. You can use it to debug things or develop without a webserver sometime...Since guy (Kevin) who

[flexcoders] Re: Bubbling, Practical Use?

2006-09-04 Thread lostinrecursion
As an interesting side note to the discussion, wouldn't the concept of bubbling be basically obsolete in a Cairngorm based application? Here's my reasoning. If, in a pure Cairngorm app, each gesture (and event) is mapped to a specific custom command in the Controller, then bubbling has no place

Re: [flexcoders] ServiceCapture, Charles opern source equivalent?

2006-09-04 Thread Marcelo de Moraes Serpa
I don't like Fiddler, it's cumbersome. Never used the firefox extension you mentioned though.What do you mean by saying that Charles requires restart?Cheers,Marcelo. On 9/4/06, Abdul Qabiz [EMAIL PROTECTED] wrote: Or Fidller on Internet ExplorerOn 9/4/06,

Re: [flexcoders] Connecting multiple projects

2006-09-04 Thread Tom Chiverton
On Monday 04 September 2006 12:03, kristian_wright2002 wrote: Looking into making the sub apps into Library Projects now, but not sure if this is the right way to go. Been scouring the net and trying I'd go that route. -- Tom Chiverton Helping to seamlessly benchmark world-class developments

Re: [flexcoders] Re: Bubbling, Practical Use?

2006-09-04 Thread Johannes Nel
public static const CLICK:String = mySpecialComboBoxClick; the problem with this lies in mxml and the [Event(name)] declaration where i would assign a handler to my component in mxml then by going c:MyView mySpecialComboBoxClick=func()/ __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Bubbling, Practical Use?

2006-09-04 Thread Johannes Nel
in a pure Cairngorm appain't seen one of them yet myself :) __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED

Re: [flexcoders] Accessing Component in the class

2006-09-04 Thread Hasan Otuome
Hi vijay, If you're saying you want to be able to get to a component that's located in the MXML file from your ActionScript Class, you could also do it like this: //some useful imports import mx.controls.TextArea; //import the component into the class import mx.core.Application; //for

[flexcoders] Re: AUTO DELETE ITEMS IN DATAGRID

2006-09-04 Thread tonyx_788
thanks for the help now this is what i came up with but i get this error in my datagrid component undefined methodany ideas?private function AutoB():void{if (_xlcdatagrid2.length =

Re: [Junk E-Mail - LOW] [flexcoders] removeItemAt(0) don't work

2006-09-04 Thread tonyx_788
hi thanks for trying to help my dataprovider is _xlcdatagrid2 this compiles ok i have no problem with it but when i put in my datagrid dataChange="datagrid2.selectedIndex.AutoB()" i get this error undefined methodhere is the code to pass data to datagrid2import

Re: [flexcoders] HTTP Service bug???

2006-09-04 Thread Tom Chiverton
On Friday 01 September 2006 20:21, mthielman11 wrote: body = physicianid /firstname /middleinitial /lastname /honor dob /ssn /languages //physician What if you stick a xml tag in there as the first node ? contentType to application/xml For a HTTP form-style POST ? Why ? when packet

[flexcoders] Re: focus new row?

2006-09-04 Thread tonyx_788
hi after i tried the code came up with another problem what if i want to automatically removeItemAt(0) when 5 items in my datagrid this is what i have so far but i get an error in datagrid component private function AutoB():void{ if (_xlcdatagrid2.length = 2) {

[flexcoders] Usage of showDefaultContextMenu in Application/

2006-09-04 Thread Claudia Barnal
I tried doing this: mx:Script ![CDATA[ stage.showDefaultContextMenu = false; ]] /mx:Script But it throws an error. How should I apply this, to avoid having the default contect menu showing in my flex app? Thanks, Claudia -- Flexcoders Mailing List FAQ:

[flexcoders] connect to FMS via proxy server

2006-09-04 Thread Dan Rossi
Hi i was wondering how a fall-back connection could be setup to allow normal connections on 1935 and then falls-back to port 80 via http tunnel if the connection fails. It seems the the client in flex doesnt not try to fall-back at all from my tests unless i specify rtmpt so this is really

[flexcoders] Customizing Default Drag with List Components

2006-09-04 Thread qnotemedia
I have implemented a very simplistic drag/drop with a single Tree component (dragEnabled=true dropEnabled=true) and would like to keep it as simple as possible. But is there any way to limit items within the component that can or can not drag or be dragged to? i.e. in my case, my tree will

Re: [flexcoders] Accessing Component in the class

2006-09-04 Thread julien castelain
hi viku , i hope i'm not saying anything wrong since i'm also starting with flex but, if you have this in your mxml file ... mx:Button id=myButton / ... you should be able to access it in your as file like this, first declare it as a public variable in your class ... public var

[flexcoders] Customizing Tree with additional Text / itemRenderer Tree

2006-09-04 Thread futurmat
Dear List, I want to use the tree control as a basis for a bulletin board. To extend the tree to display more than the label-field I started to write my own itemRenderer. I override the createChildren method to add a new TextField (addChild(myMessage)) and override the updateDisplayList to fill

[flexcoders] upload file button

2006-09-04 Thread Yi
is there a way to put a browse button (like in html: input type='file' ) in flex ?as much as i know, this is not allowed because of security ; but this is sth needed; so: WHAT IS THE WAY TO GIVE THE USER THE OPPOURTUNITY TO UPLOAD FILES VIA FLEX APPLICATION ?thanksYigit Do you Yahoo!?

Re: [flexcoders] FW: Problem in Texbox while populating from Grid

2006-09-04 Thread Stefan Horochovec
Hehehe, Cool, a mail sender created by Laszlo in Flex Mail list... Theworld is sooo small :PRegardsStefan - Mensagem Original De: flexcoders@yahoogroups.comPara: "flexcoders@yahoogroups.com" flexcoders@yahoogroups.comAssunto: [flexcoders] FW: Problem in Texbox while populating

[flexcoders] Passing variables from Flex to swf

2006-09-04 Thread robavey
Hi there, Just wondering if its possible to pass a selected item object (from a tilelist) to a flash movie which has been loaded into the Flex app? thanx ahead of time aVe -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] [global coords system]Problem using global coordinates system

2006-09-04 Thread Cristian Rotundu
Hello, my name is Cristian. I'm glad to have joined your group :)As any newbie I'll start with a problem:I have this problem using the global coordinates.I have a component (component X) that's nested into another, and the latter as well nested into another one. i generate these component X so

[flexcoders] Assets with timeline code in Actionscript projects

2006-09-04 Thread Samúel Jónasson
Hi, I am trying to use the Flex Builder 2 to create Action Script projects (not Flex) so maybe this list is not the one to post this question to. However... I was hoping someone could tell me if there are some limitations with embedded assets created in Flash 9 IDE. In my case stop(); is

[flexcoders] CSS in custom components

2006-09-04 Thread grahampengelly
HiI have created a custom component that derives from Box. I have added a couple of style decarations within the code for the component. The following is an example:[Style(name="headingFontColor", type="uint", format="Color", inherit="no")]...and then I access this using

[flexcoders] Re: Assets with timeline code in Actionscript projects

2006-09-04 Thread Tim Hoff
Hi Samúel, Actionscript that is placed on the timeline (FP9) is ignored by Flex. However, if you place your AS in a class it will work. -TH --- In flexcoders@yahoogroups.com, Samúel Jónasson [EMAIL PROTECTED] wrote: Hi, I am trying to use the Flex Builder 2 to create Action Script

[flexcoders] Re: CSS in custom components

2006-09-04 Thread Tim Hoff
Hi Graham, Have you tried this: AnswerButtonPanel.setStyle('headingFontColor', '#FF'); Or use a CSS file: CSS: myStyle { headingFontColor:#FF; } MXML: uiComponents: AnswerButtonPanel styleName=myStyle/ -TH --- In flexcoders@yahoogroups.com, grahampengelly [EMAIL PROTECTED]

[flexcoders] Cairngorm, Where should Validators go?

2006-09-04 Thread lostinrecursion
Hi all, Just wanted some feedback on this. Since Cairngorm is an MVC architecture, is it appropriate to put the mx:Validator tags inside the views to which it is relevant? If not, where do validators go in a Cairngorm app? Thanks so much. -Kenny -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Error Help Type 1009

2006-09-04 Thread rmlsystem
if you are receiving a null, null does not have the length property, try; if((result.length)!=undefined){ userDG.dataProvider = result; } --- In flexcoders@yahoogroups.com, Jeremy Rottman [EMAIL PROTECTED] wrote: I have built a simple userManager system, that lets people search for users in

[flexcoders] Re: Cairngorm, Where should Validators go?

2006-09-04 Thread Tim Hoff
Hi Kenny, It's perfectly appropriate to place Validator tags inside of views. However, if you want to centralize and reuse Validators, you could put them in a utility class/directory. -TH --- In flexcoders@yahoogroups.com, lostinrecursion [EMAIL PROTECTED] wrote: Hi all, Just wanted

[flexcoders] dataservice only working localy, not working when trying access from internet

2006-09-04 Thread pioplacz
I don't know what's wrong it worked fine in the flex 1.5. My httpservice is placed on the same machine as the application and i'm accessing in by the local ip adress. But when trying to access the application from internet nothing is working no data is loaded and it tryes to load it from the

[flexcoders] Setting RollOverColor in LinkBar

2006-09-04 Thread jdixon428
Hi, I have an HBox with a backgroundImage. I then have a LinkBar with several menu choices on top of the HBox. How can I set the LinkBar RollOverColor to NOT display any color. I guess I am saying transparent or something of that nature. Regards, John -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: AUTO DELETE ITEMS IN DATAGRID

2006-09-04 Thread Nate Hardt
Yeah if it's saying undefined method, you're going to want to make sure you are calling the right function on the right object. From the code below it looks like your DataGrid does not have an id, so try giving your datagrid an id, then call removeItemAt on the dataProvider that goes with that

Re: [flexcoders] Re: Assets with timeline code in Actionscript projects

2006-09-04 Thread Samúel Jónasson
Thanks, ok, so one can not simply put a stop statement on some frame of an animation. Understoodso the only way I can use a simple swf animation that has a stop action is to load it at runtime - right? I can't see how I would make a stop action on frame 10 for an example in an animation

[flexcoders] Re: CSS in custom components

2006-09-04 Thread grahampengelly
Hi TimThanks for your quick reply... Both of those suggestions work. The problem I have is that it is actually some child components of the AnswerButtonPanel that I want to be able to style. In order to do this with the class name identifier in CSS I would have to hard code the styleName when I

[flexcoders] NumericStepper events

2006-09-04 Thread Oriol Gual
Hi all,I have a NumericStepper that updates a label whenever it's changed. If the user click at the arrows there's no problem, but if they enter the value manually, the label doesn't get updated until the NumericStepper loses focus, or until the arrows are clicked. I've tried both change and

[flexcoders] Re: CSS in custom components

2006-09-04 Thread grahampengelly
Hi Tim Thanks for taking the time to get back to me. The two suggestions that you gave both work. The problem that I have is that I also need to style child components of the AnswerButtonPanel that are dynamically created. If I use the styleName approach I would have to hard code a styleName and

[flexcoders] CSS in custom component

2006-09-04 Thread grahampengelly
HiI am building a custom component derived from Box. I have added a few style declarations as follows:[Style(name="headingFontColor", type="uint", format="Color", inherit="no")]...and then in the component I use the style with getStyle("headingFontColor") wrapped with a bit of default value

[flexcoders] Re: Assets with timeline code in Actionscript projects

2006-09-04 Thread Tim Hoff
Sammi, You can read a good article, with examples, how to handle the Flash AS. Scroll down to August 27th, 2006. HTH. http://www.jessewarden.com/ -TH--- In flexcoders@yahoogroups.com, Samúel Jónasson [EMAIL PROTECTED] wrote: Thanks, ok, so one can not simply put a stop statement on some frame

[flexcoders] Re: CSS in custom components

2006-09-04 Thread grahampengelly
Firstly, apologies if there was a more or less duplicate post prior to this one... I got a bit impatient waiting for the first one to show up and assumed it hadn't landed.I have now just realised that when I try to apply styles to the standard components e.g. Button with the syntax I am trying

RE: [flexcoders] HTTP Service bug???

2006-09-04 Thread Tracy Spratt
That trace is reporting method=GET and contentType=text/plain Could that be an issue? In the event that this is a bug, is sending a string going to be a problem? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mthielman11 Sent: Friday,

RE: [flexcoders] ADOBE: Version of Distributable Player is Incorrect

2006-09-04 Thread Matt Chotin
I believe the version that is available is now correct. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of David Mendels Sent: Friday, September 01, 2006 1:57 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ADOBE: Version of

Re: [flexcoders] dataservice only working localy, not working when trying access from internet

2006-09-04 Thread Oriol Gual
You've already responded yourself: it tries to load it from the local ip address. You have to change the ip to your public one, not the local. Remember that the swf is executed client-side, thus, it tries to find that ip within client's lan. Oriol.2006/9/4, pioplacz [EMAIL PROTECTED]: I don't

Re: [flexcoders] Re: Drag Drop problem with browser scrolling

2006-09-04 Thread Bill Brown
Just wondering if anyone has made any progress with this bug?I too am experiencing the same problem, but with dragging an item from a TileList or DataGrid into a List. When the List is below the browser fold and requires vertical scrolling to reach, the drop area seems to dissociate from the

RE: [flexcoders] HTTP Service bug???

2006-09-04 Thread Seth Hodgson
You should double check that you're sending literal XML (or a legacy XMLNode/XMLDocument) and not a String value. service.send(foobar/foo); Rather than: service.send(foobar/foo); Best, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] how to get GET POST variable

2006-09-04 Thread Yi
thanks a lot!i could not try it yet but it is just the thing i WANT (bla.html?name=yigit), and i wish i can succeed in the integration phase...thanks...Yigit BoyarAbdul Qabiz [EMAIL PROTECTED] wrote: This might help

Re: [flexcoders] dynamic URLRequest();

2006-09-04 Thread Abdul Qabiz
new URLRequest(movieCollection.link)new URLRequest (movieCollection.getItemAt (event.rowIndex - 1).link)I believe, rowIndex (from dobleClick ListEvent) is not zero-based?That might work? You get the row-index in double-click event. You need to use that index to find the corresponding record in

Re: [flexcoders] HTTP Service bug???

2006-09-04 Thread Abdul Qabiz
Hi,I can see contentType = text/plain in packet you traced. Are you really setting contentType to application/xml ?I noticed that if I set contentType=application/xml, content is still sent as text (url encoded)... So I changed the content type to text/xml and it seems to be working fine for

RE: [flexcoders] Adobe at IBC

2006-09-04 Thread Waldo Smeets
Weyert, I'll be around for a few days. Give me a ping offlist if you want to talk, whether it's Flex or something else ;-) For Flex you might as well want to ask for Andrew Shorten, he's also going to be around (I think half-day booth duties). Regards, Waldo From:

[flexcoders] Re: CSS in custom components

2006-09-04 Thread Tim Hoff
Looks like it should work. This example is from the docs:mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:MyComp="myComponents.*" mx:Style StyledRectangle {fillColors: #FF00FF, #00} /mx:Style MyComp:StyledRectangle/ /mx:Application If you're

Re: [flexcoders] Passing variables from Flex to swf

2006-09-04 Thread Marcelo de Moraes Serpa
I think you'll need to use LocalConnection...On 9/4/06, robavey [EMAIL PROTECTED] wrote: Hi there, Just wondering if its possible to pass a selected item object (from a tilelist) to a flash movie which has been loaded into the Flex app? thanx ahead of time

[flexcoders] Re: Usage of showDefaultContextMenu in Application/

2006-09-04 Thread Claudia Barnal
Is this one of those things that are too simple to explain, or is it one of those things that are impossible to do, for which there is no explanation? Thanks, Claudia On 9/4/06, Claudia Barnal [EMAIL PROTECTED] wrote: I tried doing this: mx:Script ![CDATA[

[flexcoders] Re: Usage of showDefaultContextMenu in Application/

2006-09-04 Thread Tim Hoff
Hi Claudia, You are correct on both counts. You're getting an error because of timing. You'll have to wait until the stage object is available to the application. However, setting the showDefaultContextMenu property to false doesn't entirely remove the context menu. It only removes the

Re: [flexcoders] Re: Usage of showDefaultContextMenu in Application/

2006-09-04 Thread Claudia Barnal
Tim, Thanks for your reply :) You'll have to wait until the stage object is available to the application. How would I do that? It only removes the top three menu options. I'm quite happy with that. I basically want to remove the scaling options and whatnot. On 9/4/06, Tim Hoff [EMAIL

RE: [flexcoders] Quick Validator Question

2006-09-04 Thread Matt Chotin
You can re-use validators but youll need to call validate() on your own instead of relying on the automatic behavior. You can only have the validator work automatically for one thing at a time. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Re: Validator._init method

2006-09-04 Thread Matt Chotin
If you search the deep archives I may have written something up. Otherwise youll need to do it on your own, check out the static validator methods. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bharg.flex Sent: Thursday, August 31, 2006

RE: [flexcoders] Error when trying to run Notes Sample application

2006-09-04 Thread Matt Chotin
Check to make sure the config file has the right settings in it for your endpoints? This should work out of the box. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ghose, Sanjucta Sent: Monday, September 04, 2006 2:53 AM To:

[flexcoders] Re: upload file button

2006-09-04 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, Yiðit Boyar [EMAIL PROTECTED] wrote: WHAT IS THE WAY TO GIVE THE USER THE OPPOURTUNITY TO UPLOAD FILES VIA FLEX APPLICATION ? http://livedocs.macromedia.com/flex/2/langref/flash/net/FileReference.html -- Flexcoders Mailing List FAQ: