RE: [flexcoders] parseDateString bug ???

2005-07-04 Thread Shlomi Cohen
Hi thanks for the reply , yes i know it static , i just tried to change the format it uses to parse , ( thats whyi wrote the formatString line) in your example how can you tell if the month is July or May ? thanks Shlomi From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

RE: [flexcoders] Re: Set/Get labelWidth in mx:Form

2005-07-04 Thread Abdul Qabiz
I think, by default it is undefined. Which means form labels would resize to the length of label text. If you set the labelWidth explicitly, then formInstance.getStyle('labelWidth') would return the same... Why do you need to know labelWidth? If you brief the requirement, we might suggest

[flexcoders] Struts with Flex

2005-07-04 Thread Harinath
Hi Guys I am newbea to Flex..And i would like to know how to use flex-jsp tags in my application..Actually i have integrated the flex-bootstrap.jar into my struts application.But it is giving following errors..Please help me in this regard Thanks Regards Harinath K

[flexcoders] Flex audio sample did't work

2005-07-04 Thread unihan
I follow the livedoc from Macomedia to play a MP3 file under Flex environment. http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/commo n/html/wwhelp.htm?context=Flex_Documentationfile=2171.htm Th error message is always Failed to find resource. From the experienc of

Re: [flexcoders] Re: Page redirection

2005-07-04 Thread Manu Juyal
I used ViewStacks and it is working I wanted it to... please see the code below ffor how i created the viewstacks. Basically, it worked the same as multipleforms in VB etc. selectedIndex property of viewstack initialize the viewstack with the container whose index you have provided. Later on

Re: [flexcoders] Struts with Flex

2005-07-04 Thread Sreejith Unnikrishnan
Check out the following articles: www.*macromedia*.com/devnet/*flex*/articles/*struts*.html www.onjava.com/pub/a/onjava/2004/12/01/*flex*java.html Harinath wrote: Hi Guys I am newbea to Flex..And i would like to know how to use flex-jsp tags in my application..Actually i have integrated the

[flexcoders] skinning the accordion

2005-07-04 Thread Nithya R
hai, I have a SWF file which i want to have as the accordion header. I tried the following code but it didnt work.. Can anyone tell me why and how to rectify the problem? ?xml version="1.0" encoding="utf-8"? mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"

[flexcoders] numeric stepper

2005-07-04 Thread Nithya R
hai, I want to use an icon of my own for the numeric stepper say numStep.swf which will show the numbers alone. I have an swf named plus.swf in the left side which on click must increment the number in the numStep.swf and there is another swf named minus.swf in the right side of the

[flexcoders] Scrolling text in flex

2005-07-04 Thread Nithya R
hai, i wnt to know how to create scrolling text in flex.(something like the marquee in html) thanks, nithyaSend instant messages to your online friends http://uk.messenger.yahoo.com -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] skinning a numericstepper

2005-07-04 Thread Nithya R
hai, How to skin a numeric stepper? i couldnt find any docs regarding that. can i have a link or a sample code that would help ? regards, nithyaSend instant messages to your online friends http://uk.messenger.yahoo.com -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Set/Get labelWidth in mx:Form

2005-07-04 Thread Manish Jethani
On 7/4/05, r_woess [EMAIL PROTECTED] wrote: mx:Form id=dataForm creationComplete=mx.core.Application.alert(dataForm.getStyle('labelWidth')); But I get a MessageBox without the labelWith. The labelWidth is undefined if you don't specify one. In that case, the Form internally calculates its

[flexcoders] How far can be customized a tooltip

2005-07-04 Thread Laurent Bois
Hello,I'd like to create a kind of customized tooltip including :- A kind of panel header , including the title, with a color 'A'- A kind of body, with a color 'B'Header body being separated by an horizontal line. The tootip i would like to draw is hereInitially, i thought tooltip was well

Re: [flexcoders] Scrolling text in flex

2005-07-04 Thread Manish Jethani
On 7/4/05, Nithya R [EMAIL PROTECTED] wrote: i wnt to know how to create scrolling text in flex.(something like the marquee in html) Put the text inside a Canvas, then move it by setting its 'x' and 'y' properties. -- Flexcoders Mailing List FAQ:

Re: [flexcoders] parseDateString bug ???

2005-07-04 Thread Manish Jethani
On 7/4/05, Shlomi Cohen [EMAIL PROTECTED] wrote: yes i know it static , i just tried to change the format it uses to parse , ( thats why i wrote the formatString line) in your example how can you tell if the month is July or May ? The parseDateString method takes a string and returns

Re: [flexcoders] Sort arrows in DataGrid

2005-07-04 Thread Manish Jethani
On 7/4/05, Sean McKibben [EMAIL PROTECTED] wrote: Maybe these things belong in the documentation? Maybe in the FAQ? Huh, what are those? :) Okay, I think he forgot to mention that some of the properties he was recommending are indeed undocumented (they are private to those classes). Note: a

RE: [flexcoders] Sort arrows in DataGrid

2005-07-04 Thread Abdul Qabiz
sortDirection was already discussed in flexcoders and I searched archives and pasted the same code :) I don't even look at docs, I read Dirk suggestions couple of days back. Agreed, it is not documented. Now I also search archives before answering, if I find an answer there I refer the same...

Re: [flexcoders] Loader + swf doesn't scaleContent

2005-07-04 Thread Manish Jethani
On 7/4/05, Clint Modien [EMAIL PROTECTED] wrote: I'm creating a Loader like so: var initObj = {x:0, height:22, scaleContent:true} createClassObject(Loader, iconLoader, 301, initObj); then i set the source of iconLoader like so: iconLoader.source = http://the source of the

RE: [flexcoders] Sort arrows in DataGrid

2005-07-04 Thread Dirk Eismann
Actually, the sortDirection thing was mentioned by Nigel Pegg (aka Component Guru) in the Flash MX 2004 ActionScript - Training from the Source book. I tried it in Flex a while back and it worked - so I never worried or even verified if it's documented or not. Sorry if this caused confusion.

Re: [flexcoders] XML, PHP and Flex

2005-07-04 Thread Manish Jethani
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) result=customerData=poster_srv.result method=POST showBusyCursor=true useProxy=false / after

RE: [flexcoders] Loader + swf doesn't scaleContent

2005-07-04 Thread Philippe Maegerman
or yourLoader.setSize() maybe Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish JethaniSent: lundi 4 juillet 2005 13:05To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Loader + swf doesn't scaleContent On 7/4/05, Clint Modien

[flexcoders] Struts with Flex

2005-07-04 Thread Harinath
Hi Guys I am newbea to Flex..And i would like to know how to use flex-jsp tags in my application..Actually i have integrated the flex-bootstrap.jar into my struts application.But it is giving following errors..Please help me in this regard Thanks Regards Harinath K

Re: [flexcoders] Struts with Flex

2005-07-04 Thread Lorenzo Benvenuti
Penso che dopo tutte queste mail potrei denunciarti per molestie sessuali (virtuali). On lun, 2005-07-04 at 10:53 +0530, Harinath wrote: Hi Guys I am newbea to Flex..And i would like to know how to use flex-jsp tags in my application..Actually i have integrated the flex-bootstrap.jar into my

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

2005-07-04 Thread dimkapimkakolbasa
The problem is: I want to create a component A in the file a.mxml and a component B in a file b.mxml, and to use them both in the file main.mxml like here (I've replaced triangle brackets by square ones!): main.mxml = [mx:Application

[flexcoders] Icons on Buttons, no alpha

2005-07-04 Thread Stacy Young
When embedding icons on buttonsthe icons dont fade when the button is disabledIm currently embedding pngsdoes it need to be swf? *starts digging for flash IDE CD-ROM* Thanks! Stace -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] styling a menubar component

2005-07-04 Thread leontanner2000
Hi, I have tried to style a MenuBar component with no luck. Using backgroundColor or backgroundImage just changes the background of the expanded menu options, NOT the actual bar itself. Using fillColors or barColor doesn't change anything either. Any help/pointers appreciated Leon --

[flexcoders] cellRender NumericStepper

2005-07-04 Thread AC
Hello I am trying to create a numeriStepper control as a cellRenderer component within a grid. While doing this I have come across a problem, whenever I change the value of numericStepper it fails to retain its new value and restores itself back to its original DataGrid.dataProvider value on

RE: [flexcoders] cellRender NumericStepper

2005-07-04 Thread Abdul Qabiz
Are you changing value in setValue(..) method? Are you calling listOwner.editField(..) also to save the value in dataProvider when NS value is changed? -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of AC Sent: Monday, July 04, 2005 8:38

Re: [flexcoders] Struts with Flex

2005-07-04 Thread Lorenzo Benvenuti
Sorry, as you may have guessed I replied to the wrong mail. Excuse me. Regards, Lorenzo Benvenuti On lun, 2005-07-04 at 14:46 +0200, Lorenzo Benvenuti wrote: Penso che dopo tutte queste mail potrei denunciarti per molestie sessuali (virtuali). On lun, 2005-07-04 at 10:53 +0530, Harinath

[flexcoders] Document root element is missing

2005-07-04 Thread Fernando Barros
Hi there, After we applied the updater 6.1 (25/08/2004) on CFMX 6.1 Windows (SP1) stand alone, I'm receiving the message Document root element is missing. All the applications have these errors. Anyone has any idea? Thks in advance! Fernando Barros -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Document root element is missing

2005-07-04 Thread Tarik Ahmed
Do your CF apps work, and your Flex apps exhibit this problem? If you're running CF+Flex on a shared instance, then the first thing I'd look at is the web.xml file and make sure it looks right. Perhaps the updater made some changes to it that breaks the Flex integration. Fernando Barros

Re: [flexcoders] Loader + swf doesn't scaleContent

2005-07-04 Thread Clint Modien
Found the answer... just like the docs say... Loader.content property when you load a SWF is a MovieClip not a UIComponent (which i was treating it as) so i set loader.content._height + _width instead of loader.content.height + width here's the code i used... var iconLoader; function

Re: [flexcoders] Loader + swf doesn't scaleContent

2005-07-04 Thread JesterXL
Hrm... they must of changed ExternalContent. In Flash MX 2004, if you load content, and it's not a UIComponent, it'll be turned into one via mx.core.ExternalContent, convertToUIObject, line 155. Perhaps you should wait a frame after the complete event fires? - Original Message -

[flexcoders] setUsernamePassword on RemoteObject

2005-07-04 Thread Andrew Spaulding
Hi, I'm trying to use the flash remoting setCredentials equivalent in flex to send a username and password with my remote object requests. I can see the Credentials being set in the header when i view the traffic in the netConnectionDebugger, but nothing seems to be in the http header, and

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

2005-07-04 Thread loveewind
I used the textInput cellrenderer in datagrid, and input text in textInput, but after add two items, the inputed data lost, 1.flex page: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; initialize=initDg() mx:Script ![CDATA[ import

RE: [flexcoders] setUsernamePassword on RemoteObject

2005-07-04 Thread Vinny Timmermans
This is a known bug in Flex 1.5. The setUsernamePassword API is not connected to CFLOGIN. Hope they will fix it in Flex 2. Vinny -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Spaulding Sent: dinsdag 5 juli 2005 04:38 To:

[flexcoders] Skinning Accordion Header..

2005-07-04 Thread Nithya R
hai, I am using the foolowing code for skinning the accodrion header.. But it isnt displaying the swf that i am using.. pls tell me if there is anything wrong with the code. I dont get any error either.. thanks, nithyaSend instant messages to your online friends