[flexcoders] Re: setUsernamePassword on RemoteObject

2005-07-05 Thread Andrew Spaulding
Thanks Vinny, Im assuming theres no workaround for this? Im probably just gonna pass the username and password as variables with each call then. Im using the cairngorm framework and I have a delegate super class so I can hide it all in there ;) cheers, Andrew Spaulding www.flexdaddy.info ---

[flexcoders] Re: Flash + Cairngorm Example With Source Code

2005-07-05 Thread Josef Pichler
Hi Robin, sorry to use this forum for sending you regards from your sister Hanna. Met her in Bondi at a birthday party and there it somehow came out that I do know rocketboots and therefore your name. Who am I? Josef, Developer at Daemon here in Syd. cheers, Josef -- Flexcoders Mailing

[flexcoders] Accordion Navigation Components

2005-07-05 Thread Malcolm
I need to share a number of forms want to be able to navigate (set the selectedIndex) of an accordion within a form called as a component. Basic break down of code is as follows: !-- [Accordion.mxml] -- ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;

RE: [flexcoders] Accordion Navigation Components

2005-07-05 Thread Philippe Maegerman
You could pass a reference of the Accordion to your component: sharedforms:Security id="secuirty" label="Product Security" owner="{accProduct}"/ In your component, add a variable 'owner' and use it in your function: mx:Script![CDATA[var owner; // display the previous accordion

[flexcoders] Re: cellRender NumericStepper

2005-07-05 Thread AC
Abdul, sounds like you have experience of this any change a a simple code example to get me off the mark. --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Are you changing value in setValue(..) method? Are you calling listOwner.editField(..) also to save the value in

[flexcoders] gradient fill

2005-07-05 Thread Nithya R
is it possible to use gradient fill for a canvas or application without an swf file? if yes pls send some sample code.. thanks, nithyaSend instant messages to your online friends http://uk.messenger.yahoo.com -- Flexcoders Mailing List FAQ:

[flexcoders] Disable Validators

2005-07-05 Thread rockmoyosa
What i want is to validators on required fields. But one or the other is required. So I want to disable the other Validator of the textfield if the other has got content. But Validators has no id or enable property. So tell me. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Disable Validators

2005-07-05 Thread Philippe Maegerman
There is a good example of this in the book 'developing rich clients with MM Flex' at page 190, it explains how to change validation at runtime. Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rockmoyosaSent: mardi 5 juillet 2005 12:05To:

RE: [flexcoders] Disable Validators

2005-07-05 Thread Alistair McLeod
Hi, You can also use the static methods Validator.enable() and Validator.disable() to change the enablement of validators at runtime check the livedocs for the full method signature. Cheers, Ali -- Alistair McLeod Development Director iteration::two [EMAIL

[flexcoders] Re: Disable Validators

2005-07-05 Thread rockmoyosa
Yes this is what i need but.. this is when i want to disable them all. right? Because they have no Identifier.. --- In flexcoders@yahoogroups.com, Alistair McLeod [EMAIL PROTECTED] wrote: Hi, You can also use the static methods Validator.enable() and Validator.disable() to change the

[flexcoders] Re: Disable Validators

2005-07-05 Thread mrvinedit
I have a blog entry, 'Toggling Flex Validataion - On Off' at FlexingCFMX.com that shows an example of toggling required on and off based on selection of another field (country US and Canada require State/Province; other Countries do not). http://www.flexingcfmx.com/index.cfm?mode=entryen

[flexcoders] Re: gradient fill

2005-07-05 Thread Andrew Spaulding
Without getting into too much detail a simple google search for actionscript gradient fill returned the following helpful blog post which outlines the actionscript drawing api. http://www.joshbuhler.com/archives/2005/01/drawing_api.html josh also provides an example of the attributes needed when

[flexcoders] itemRenderer usage

2005-07-05 Thread ROUSSELIE David ROSI/SIFAC
1) I am trying to zoom on the selected item of a list. I have found itemRenderer that render an item according to its state but I did not find any example and I did not find how it is working. Is it the good way to do what I want ? How to create an itemRenderer class that set scaleX and

RE: [flexcoders] Re: setUsernamePassword on RemoteObject

2005-07-05 Thread Vinny Timmermans
Im assuming theres no workaround for this? No. I've brought this to the attention of the Flex team again recently. Maybe you should leave them a message as well ;-) Vinny -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Spaulding Sent:

[flexcoders] Redirect to next page

2005-07-05 Thread Harinath
Hi Guys I am trying to develop simple application using flex using sturts framework.But i am unable to forward to result page that is specified in action mappings. If i am using result=alert() the result is displayed in popup box. But why ? it is not forward to next page.. Please help me

RE: [flexcoders] Redirect to next page

2005-07-05 Thread Nick Watson
To Redirect you need to use the getURL() function like this getURL(myNewPage.html); From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Harinath Sent: 05 July 2005 13:41 To: flexcoders@yahoogroups.com Subject: [flexcoders] Redirect to next

RE: [flexcoders] Re: setUsernamePassword on RemoteObject

2005-07-05 Thread Dirk Eismann
Andrew, you could of course provide your own login() method inside a CFC which does the CFLOGIN work for you. This way you only need to send the username and password once (with the login call) and then use IsUserInRole()/GetAuthUser() inside your CFC methods afterwards. Dirk. -Original

Re: [flexcoders] Redirect to next page

2005-07-05 Thread Sreejith Unnikrishnan
Hari, This would be very minimal information for anybody to comment! Are u developing the entire application in Flex? Or a few UI components embedded in JSP? If it is the second case, there you might have to provide some more details, but if it is the first, you should then understand that

[flexcoders] Image component rescaling.

2005-07-05 Thread Omar Ramos
Hi flexcoders, Does anyone have the code to resize a image to maintain aspect ratio manualy? I would like the user to alter the width and height of a image using the mouse in say incrementes of 5px but maintaining aspect ratio. Any help would be apreciated. Omar -- Flexcoders Mailing List

Re: [flexcoders] Image component rescaling.

2005-07-05 Thread Manish Jethani
On 7/5/05, Omar Ramos [EMAIL PROTECTED] wrote: Does anyone have the code to resize a image to maintain aspect ratio manualy? I would like the user to alter the width and height of a image using the mouse in say incrementes of 5px but maintaining aspect ratio. Before you try to write code to

RE: [flexcoders] Re: setUsernamePassword on RemoteObject

2005-07-05 Thread Vinny Timmermans
Now the bug fix won't get priority anymore ;-) Vinny -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann Sent: dinsdag 5 juli 2005 14:57 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: setUsernamePassword on RemoteObject

[flexcoders] Numeric validator

2005-07-05 Thread Nithya R
hai, i need to use 2 validations for a sinlge validator. i have to first check if the value enterd is a number or not then i have to check if the number enterde is all . how to do this? pls help me with some sample code.. thanks, nithyaSend instant messages to your online friends

RE: [flexcoders] Flex audio sample did't work

2005-07-05 Thread Stephen Gilson
The links to the MP3 files in these examples are not to real MP3 files. In the example with the line: [Embed('bluechristmas.mp3')] Replace bluechristmas.mp3 with the name of an MP3 file on your machine. Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] Image component rescaling.

2005-07-05 Thread Omar Ramos
yeah I seen it, thanks for the reply. I need to do it manualy in some cases like when I create the handles for the user to drag them and resize the image. omar On 7/5/05, Manish Jethani [EMAIL PROTECTED] wrote: On 7/5/05, Omar Ramos [EMAIL PROTECTED] wrote: Does anyone have the code to

Re: [flexcoders] Numeric validator

2005-07-05 Thread Manish Jethani
On 7/5/05, Nithya R [EMAIL PROTECTED] wrote: i need to use 2 validations for a sinlge validator. i have to first check if the value enterd is a number or not then i have to check if the number enterde is all . how to do this? pls help me with some sample code..

Re: [flexcoders] Skinning accordion header

2005-07-05 Thread Clint Modien
oops... no quotes on the skin variables import mx.containers.accordionclasses .AccordionHeader class MyCustomHeader extends AccordionHeader { [Embed(accordion-b.swf)] var accoridonDownSkin:String; [Embed(accordion-a.swf)] var accordionOverSkin:String; private function init() {

ADMIN: RE: [flexcoders] Numeric validator

2005-07-05 Thread Steven Webster
i need to use 2 validations for a sinlge validator. i have to first check if the value enterd is a number or not then i have to check if the number enterde is all . how to do this? pls help me with some sample code.. From:

Re: [flexcoders] itemRenderer usage

2005-07-05 Thread Manish Jethani
On 7/5/05, ROUSSELIE David ROSI/SIFAC [EMAIL PROTECTED] wrote: How to create an itemRenderer class that set scaleX and scaleY to the selected item in the list ? In the setValue function of your cell renderer, you can query for the item index and compare with the selected item's index and set

Re: [flexcoders] Image component rescaling.

2005-07-05 Thread Manish Jethani
On 7/5/05, Omar Ramos [EMAIL PROTECTED] wrote: yeah I seen it, thanks for the reply. I need to do it manualy in some cases like when I create the handles for the user to drag them and resize the image. Have you tried just setting the property? ?xml version=1.0? mx:Application

RE: [flexcoders] Re: setUsernamePassword on RemoteObject

2005-07-05 Thread Peter Farland
Credentials sent in custom manner are never sent using HTTP Headers. The information is contained within the AMF/HTTP POST body. The Flex-only API, setUsernamePassword, works on a per request basis and sends credential information inside a special Flex Envelope type which can have per-request

RE: [flexcoders] How can I place custom components into custom components?

2005-07-05 Thread Erik Westra
The only way (as far as I know) is to create a.mxml in Actionscript, make it an Actionscript component. Greetz Erik -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dimkapimkakolbasa Sent: maandag 4 juli 2005 16:11 To:

[flexcoders] Printing whole lotta pages?

2005-07-05 Thread svktiilikainen
Hi, I need to print a form having two pages. The form consists of boxes, containing layout boxes and grids, containing labels, texts etc. The contents are pretty long so that a vertical scrollbar is displayed on the form. I have studied the PrintJob class and tried various procedures with

RE: [flexcoders] itemRenderer usage

2005-07-05 Thread ROUSSELIE David ROSI/SIFAC
How to create an itemRenderer class that set scaleX and scaleY to the selected item in the list ? In the setValue function of your cell renderer, you can query for the item index and compare with the selected item's index and set the scale values accordingly. mx:VBox

Re: [flexcoders] Image component rescaling.

2005-07-05 Thread Omar Ramos
Because there are times where the image won't be in the image tag and in a movieclip and need to scale it there also. On 7/5/05, Manish Jethani [EMAIL PROTECTED] wrote: On 7/5/05, Omar Ramos [EMAIL PROTECTED] wrote: yeah I seen it, thanks for the reply. I need to do it manualy in some cases

Re: [flexcoders] How can I place custom components into custom components?

2005-07-05 Thread ch_flex
Thanks! I'll try it! Erik Westra wrote: The only way (as far as I know) is to create a.mxml in Actionscript, make it an Actionscript component. Greetz Erik -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dimkapimkakolbasa Sent:

[flexcoders] Internationalizing Flex Apps (Resource Bundles)

2005-07-05 Thread anant_gilra
Hi all, I am sure most of you would be aware of the Resource bundle utility classes (with sample app) provided for internationalizing Flex applications http://www.cflex.net/showfiledetails.cfm? ChannelID=1Object=CodeLibraryobjectID=85 * Have anyone of you faced any problems which using this

Re: [flexcoders] How can I place custom components into custom components?

2005-07-05 Thread ch_flex
If I make a component in ActionScript, how can I later integrate it with MXML? For example, if I describe a component in A.as - what should I do to enable such a construction in main.mxml in my example: [local:A /] How can I make a component with an MXML container as a GUI and some data

RE: [flexcoders] How can I place custom components into custom components?

2005-07-05 Thread Erik Westra
From the top of my head (not tested and most likely not working): import mx.containers.Canvas; import mc.controls.Label; class A extends Canvas { private var _label:Label; public function Canvas() { }; public function createChildren():Void {

[flexcoders] Mouse click on panel header

2005-07-05 Thread Valy Sivec
Hello, Is there any way I can catch the mouse click on a panel header? Thanks, Valy Yahoo! Sports Rekindle the Rivalries. Sign up for Fantasy Football http://football.fantasysports.yahoo.com -- Flexcoders Mailing

[flexcoders] something going on with markme.com ?

2005-07-05 Thread Tarik Ahmed
Hey is there something going on with markme.com? I can't seem to get to it from home, work, etc... -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups

Re: [flexcoders] something going on with markme.com ?

2005-07-05 Thread JesterXL
Aye, changing servers: http://weblogs.macromedia.com/cantrell/archives/2005/07/markme_is_going.cfm - Original Message - From: Tarik Ahmed [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, July 05, 2005 11:38 AM Subject: [flexcoders] something going on with markme.com ?

RE: [flexcoders] Printing whole lotta pages?

2005-07-05 Thread Tracy Spratt
Printing in 1.5 is problematic. Unless someone has come up with a better solution, you will need to create a special print container for each multi-page control you want to print. You will only be able to print the visible part of the control, regardless of how you manipulate vPosition, so your

RE: [flexcoders] Re: cellRender NumericStepper

2005-07-05 Thread Tracy Spratt
Try this: http://www.cflex.net/showfiledetails.cfm?ObjectID=30 Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of AC Sent: Tuesday, July 05, 2005 5:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: cellRender NumericStepper

RE: [flexcoders] why does the data in datagrid cellrender lose?

2005-07-05 Thread Tracy Spratt
Are you changing value in setValue(..) method? Are you calling listOwner.editField(..) also to save the value in dataProvider when text value is changed? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of loveewind Sent: Monday, July 04, 2005

RE: [flexcoders] Binding to Model in Application

2005-07-05 Thread Tracy Spratt
When you use the mx.core.Application.application reference, the compiler loses the data type information it needs to correctly set up the listeners that binding uses. Such bindings typically work once, but then do not update the controls when changes occur. If you want to bind in

[flexcoders] Flex over dialup?

2005-07-05 Thread Bob Remeika
Does anybody here have experience with using Flex applications over dialup? I would assume that the initial load time of the application would be the killer, but subsequent requests would be more user friendly and bandwidth friendly than a standard web page. I am interested to see if anybody has

[flexcoders] Re: something going on with markme.com ?

2005-07-05 Thread sanjayd
it is available at: http://weblogs.macromedia.com/mchotin/ but...the links to download sample code are not working yet , eg. http://weblogs.macromedia.com/mchotin/files/data-1.zip this link does not work !! --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Aye, changing

[flexcoders] Java classes not found

2005-07-05 Thread charlespaz1
Running RHEL 4, Apache 2, ColdFusionMX, Flex1.5 In an effort to get Flex and ColdFusion to run through port 80 with Apache, I've installed ColdFusion linked through Apache and integrated Flex with the ColdFusion installation as per Macromedia's instructions here:

[flexcoders] Re: Flex over dialup?

2005-07-05 Thread temporal_illusion
I don't have any specific experience with dialup, but just like developing an HTML page thought has to go into it to ensure that the size doesn't get out of hand. The minimum size of a Flex app seems to be around 120KB.. The most complicated app I've made which is a shopping cart and checkout

Re: [flexcoders] Re: something going on with markme.com ?

2005-07-05 Thread Dinesh Aswale
i think its under updation --- sanjayd [EMAIL PROTECTED] wrote: it is available at: http://weblogs.macromedia.com/mchotin/ but...the links to download sample code are not working yet , eg. http://weblogs.macromedia.com/mchotin/files/data-1.zip this link does not work !! --- In

RE: [flexcoders] Re: something going on with markme.com ?

2005-07-05 Thread Matt Chotin
Yeah, the majority of the MM weblogs were migrating this weekend. Ill see if I can get the file situation fixed. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of sanjayd Sent: Tuesday, July 05, 2005 11:14 AM To:

RE: [flexcoders] Sort arrows in DataGrid

2005-07-05 Thread Shlomi Cohen
Title: RE: [flexcoders] Sort arrows in DataGrid Guys i also tried the suggested code - and guess what its not working . any updates on this one ? Shlomi From: Dirk Eismann [mailto:[EMAIL PROTECTED] On Behalf Of Dirk EismannSent: Monday, July 04, 2005 14:06To:

RE: [flexcoders] Sort arrows in DataGrid

2005-07-05 Thread Abdul Qabiz
Title: RE: [flexcoders] Sort arrows in DataGrid Can you please post your sample code? I am interested to see how you are using it. We might suggest some changes to your code. It is hard to predict what is going wrong in your code, without looking at it. Kindly, make a simple sample code

[flexcoders] embedded sounds

2005-07-05 Thread Tom Fitzpatrick
I'm trying to embed a number of mp3 sounds and play them back in various ways. The first way is to select the sound names from a comboBox. It's not working. So, for an embedded sound defined as: [Embed('beki1A.mp3')] var beki1A:String; I've defined the following function;

[flexcoders] SpringBeanAdapter for Flex Flash Remoting

2005-07-05 Thread Alon J Salant
Hey all, Alex Cruikshank and I are picking our heads up after a couple months on our first major Flex development project. Weve got a lot to share and will be posting to the Carbon Five community site at http://www.carbonfive.com/community/. The version of Flash Remoting packaged

[flexcoders] Migrating from Cairngorm 0.95 to 0.99

2005-07-05 Thread Clifford Hall
I'm having some difficulty getting this to happen. I have a prototype app that works using 0.95, and am trying to migrate to 0.99. First, I deployed the cairngorm.swc and cairngorm-manifest.xml to their appropriate locations and edited flex-config.xml to add the new namespace entry. Then I

[flexcoders] Functional/ GUI test tool for flex

2005-07-05 Thread kriss
Hello, Is any of you use a test framework for functional/GUI testing ? The only thing I found about test of flex application is http://www.iterationtwo.com/open_source_flexunit.html for unit test, does someone use it successfully ? Thanks in advance, kriss -- Flexcoders Mailing List FAQ:

Re: [flexcoders] embedded sounds

2005-07-05 Thread JesterXL
Close, do: snd = new Sound(this); - Original Message - From: Tom Fitzpatrick [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, July 05, 2005 5:13 PM Subject: [flexcoders] embedded sounds I'm trying to embed a number of mp3 sounds and play them back in various ways. The

Re: [flexcoders] XML, PHP and Flex

2005-07-05 Thread Manu Juyal
yes it is called in result event handler On 7/4/05, Manish Jethani [EMAIL PROTECTED] wrote: On 7/2/05, juyalmanu [EMAIL PROTECTED] wrote: mx:HTTPService id=poster_srv url=http://localhost:8080/islab/poster.php; fault=faultHandler(event.fault.faultstring, event.fault.faultcode)

Re: [flexcoders] Printing whole lotta pages?

2005-07-05 Thread Manu Juyal
hi, I am having the printing problems too. I need to print a form (just one page) using print button. I am just not getting there. Can anyone please provide me a start point. --Manu On 7/5/05, Tracy Spratt [EMAIL PROTECTED] wrote: Printing in 1.5 is problematic. Unless someone has come up

RE: [flexcoders] Printing whole lotta pages?

2005-07-05 Thread Nihit Saxena
Check the attached files, you can use the same strategy to print areas outside of print area/ inside a scroll bar. You can also scale the contents to the desired scaling, For printing two pages, you can call addPage two times after changing the look and feel of the page. Thanks,

Re: [flexcoders] Flex over dialup?

2005-07-05 Thread JesterXL
Also, here's another article discussing why it was so in Flash; keep in mind this is superceded by Flex since it adds a ton more functionality, effects, and other improvements: http://www.moock.org/blog/archives/32.html - Original Message - From: Bob Remeika [EMAIL PROTECTED] To:

Re: [flexcoders] Flex over dialup?

2005-07-05 Thread JesterXL
The app's performance is not directly proportional to download speed. Download time is indirectly. Slower modem, more time to download the app; modems broadband have the exact same application running speed. I'm using a Label, DataGrid, HSlider, Button, ComboBox, CheckBox, Panel,

[flexcoders] Flex external desktop application communication

2005-07-05 Thread superabe
Hello list, I know Flex excels at communicating with server-side data sources. Is there any way for a flex app to communicate with a desktop application installed on the same machine as where the app is being viewed (in a controlled kioskenvironment for e.g.) TIA, superabe --

Re: [flexcoders] SpringBeanAdapter for Flex Flash Remoting

2005-07-05 Thread JesterXL
Anyway to have the AS files respond to Dependency Injection via the Bean files at runtime? - Original Message - From: Alon J Salant To: flexcoders@yahoogroups.com Sent: Tuesday, July 05, 2005 5:53 PM Subject: [flexcoders] SpringBeanAdapter for Flex Flash Remoting Hey all,

[flexcoders] Re: Migrating from Cairngorm 0.95 to 0.99

2005-07-05 Thread Andrew Spaulding
Hi Cliff, The new ViewHelper class no longer supports the view attribute as a public variable. The class now takes advantage of the built in 'id' tag, hence your ViewHelper declaration now becomes this: myView:AppViewHelper id=appViewHelper / By extending mx.core.MXMLObject the ViewHelper super

[flexcoders] How do I change the background color for text in htmlText property?

2005-07-05 Thread pilby1
My objective is, by using the mx:Text's htmlText attribute, to display a block of text where some lines had a different background color for highlighting purposes. I tried this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; initialize=initApp();

Re: [flexcoders] embedded sounds

2005-07-05 Thread Tarik Ahmed
For fun I thought I'd test this out. The snd= new Sound(this); didn't make a difference for me, and I am able to reproduce Tom's problem. [Embed('test1.mp3')] var soundSymbol1:String; [Embed('test2.mp3')] var soundSymbol2:String; function

[flexcoders] sample code to subClass DataGrid

2005-07-05 Thread sanjayd
Can somebody please post some sample code (or a link to sample code) that extends DataGrid..or, maybe, somebody can look at this code (see below), and tell me how to fix these compile errors: the error -- 1 Error, 1 Warning found. Warning

[flexcoders] Re: sample code to subClass DataGrid

2005-07-05 Thread Andrew Spaulding
Gday, As for your first eror on function init, be sure to type it with a return type of void -- function init():Void -- Regarding the mx:columns error, I'm assuming you are including the mx namespace where you are using your PagedDataGrid as well. For a reference of an extended datagrid, take

Re: [flexcoders] Flex external desktop application communication

2005-07-05 Thread John Dowdell
superabe wrote: I know Flex excels at communicating with server-side data sources. Is there any way for a flex app to communicate with a desktop application installed on the same machine as where the app is being viewed (in a controlled kiosk environment for e.g.) Key concept: You may

Re: [flexcoders] embedded sounds

2005-07-05 Thread Tom Fitzpatrick
Awesome. Thanks Tarik! - Tom At 06:46 PM 7/5/2005, you wrote: For fun I thought I'd test this out. The snd= new Sound(this); didn't make a difference for me, and I am able to reproduce Tom's problem. [Embed('test1.mp3')] var soundSymbol1:String;

[flexcoders] Re: sample code to subClass DataGrid

2005-07-05 Thread sanjayd
okay, so, how do I get rid of this: the error -- 1 Error found. Error /Rates.mxml:138 Don't know how to parse element http://www.macromedia.com/2003/mxml:columns;. It is not a known type or a property of PagedDataGrid. -

RE: [flexcoders] SpringBeanAdapter for Flex Flash Remoting

2005-07-05 Thread Alon J Salant
I dont understand your question. This is a server-side component. What are you looking for in regards to AS files? Alon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL Sent: Tuesday, July 05, 2005 3:20 PM To:

RE: [flexcoders] Flex external desktop application communication

2005-07-05 Thread Tracy Spratt
Further, A Flex client app can communicate up to its host Browser, in several ways. So, if you can put an activeX control, or a signed applet, or some other sandbox breaker into your html host page, you can communicate with it fairly easily. Tracy -Original Message- From:

[flexcoders] Re: setUsernamePassword on RemoteObject

2005-07-05 Thread Andrew Spaulding
Thanks Pete, That worked a charm. Im using the setCredentials method on the connection. Too bad there doesnt seem to be a clear method of sorts on the NetConnection, or even a removeHeader function, so I'm setting the creditials again with blank strings as my clear technique. cheers, Andrew

RE: [flexcoders] Re: sample code to subClass DataGrid

2005-07-05 Thread Matt Chotin
The XML prefix for your properties must match the parent tag. So you should use mine:columns instead of mx:columns. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of sanjayd Sent: Tuesday, July 05, 2005 5:42 PM To: