[flexcoders] How to get Textinput position?

2007-09-10 Thread flexawesome
Hi guys :) I am working on flex, and looks hard to get the target object x and y position. do you have any ideas? Cheers THANKS ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; viewSourceURL=srcview/index.html mx:Script

[flexcoders] Re: How to get Textinput position?

2007-09-10 Thread flexawesome
be event.currentTarget.parent.x. There is no Label1 in your sample. Also see localToGlobal From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Monday, September 10, 2007 11:43 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] How to verify the password and confirmPassowd and show error message?

2007-09-11 Thread flexawesome
Hi :)) I have done some coding below for user register form I would like to verfiy email, passowrd and confirm password fiels before clicking the submit button, if password doesn't match then point the error message right of confirm password. Have you done this before? I am new to Flex

[flexcoders] Re: How to get Textinput position?

2007-09-11 Thread flexawesome
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Monday, September 10, 2007 7:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to get Textinput position? humm...parent doesn't work... and I

[flexcoders] Re: How to get Textinput position?

2007-09-11 Thread flexawesome
parent. event.currentTarget.parent.localToGlobal(new Point(event.currentTarget.x, event.currentTarget.y)).x On 9/11/07, flexawesome [EMAIL PROTECTED] wrote: Hi Gordeon, Thank you so much to reply it as I am new to flex, and don't know how to use localToGlobal() it in my app

[flexcoders] Re: How to get Textinput position?

2007-09-12 Thread flexawesome
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Tuesday, September 11, 2007 8:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to get Textinput position? you are SO COOL. Thank you so much

[flexcoders] Re: How to get Textinput position?

2007-09-12 Thread flexawesome
[mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Wednesday, September 12, 2007 9:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to get Textinput position? great, I see but I was serious how to get a textInput position in form ( id=textInput ) by click

[flexcoders] Re: How to get Textinput position?

2007-09-12 Thread flexawesome
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Wednesday, September 12, 2007 1:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to get Textinput position? Hey Gordon, I am appreciate for your promptly response, sorry for my

[flexcoders] Re: How to get Textinput position?

2007-09-12 Thread flexawesome
can get its position or any other property. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Wednesday, September 12, 2007 1:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to get

[flexcoders] Simple addEventListener Question!

2007-09-13 Thread flexawesome
hey there, I am working on the addEventListener and I would like to change the title for panel_01 once panel_02 has moved, there is no error for the code below, but won't work. Do you have any suggestion? Thanks == ?xml version=1.0

[flexcoders] Re: Simple addEventListener Question!

2007-09-14 Thread flexawesome
: Thursday, September 13, 2007 1:05 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Simple addEventListener Question! i think u would need to call the invalideDisplayList() on panel_01 but i am not sure - Original Message From: flexawesome [EMAIL PROTECTED

[flexcoders] Changing Mouse Cursor in application

2007-09-20 Thread flexawesome
Hi there, I build a application and would like to change the default mouse cursor from the arrow cursor to a hand? I can reset buttonMode=true for all components one by one. However, there is too much stuffs and impossible manually do that. Is there a way to apply this for all components(like

[flexcoders] How to change cursor for rollOver a Text field in Flex?

2007-09-21 Thread flexawesome
Hi there, Seems buttonMode doesn't work for a text field? I would like to show hand when user rollOver mouse to the text fild. Any suggestion? Cheers ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Label text=CLICK HERE color=#ff buttonMode=true/

[flexcoders] buttonMode in TitleWindow component

2007-09-27 Thread flexawesome
Hey all, I am having problem for the buttonMode in TitleWindow, I am going to show mouse cursor to hand when user rollOver mouse to close button ONLY! It looks show the hand all the way, is there any suggestion for that? Cheers ?xml version=1.0?

[flexcoders] Re: Login Form...

2007-09-27 Thread flexawesome
http://www.adobe.com/devnet/flex/quickstart/validating_data/ --- In flexcoders@yahoogroups.com, Daniel Sanderson [EMAIL PROTECTED] wrote: Could someone please recommend a good Login form to use?? Or point me in the direction of some adequate code with appropriate validations?? Daniel

[flexcoders] Re: Flex 2: How to get the hand cursor?

2007-09-28 Thread flexawesome
mx:Label height=12 y=0 top=0 fontSize=9 text=label useHandCursor=true buttonMode=true mouseChildren=false/ --- In flexcoders@yahoogroups.com, Tobias Patton [EMAIL PROTECTED] wrote: Thanks for the reply. Sadly, this works for some UI components but not others. It works for

[flexcoders] Re: Changing Mouse Cursor in application

2007-10-01 Thread flexawesome
guys, any suggestions? :) Thanks --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hi there, I build a application and would like to change the default mouse cursor from the arrow cursor to a hand? I can reset buttonMode=true for all components one by one. However

[flexcoders] Re: Changing Mouse Cursor in application

2007-10-01 Thread flexawesome
] On Behalf Of flexawesome Sent: Monday, October 01, 2007 9:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Changing Mouse Cursor in application guys, any suggestions? :) Thanks --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , flexawesome flexawesome

[flexcoders] Detecting component name while rollOver mouse to it

2007-10-01 Thread flexawesome
Hi there, Is there a way to detect component type name such as button/panel/CheckBox... while user rollOver it to the component? Any suggestion? THANKS

[flexcoders] Re: Changing Mouse Cursor in application

2007-10-01 Thread flexawesome
PROTECTED] wrote: You could detect if it is a button, but you're better off subclassing the buttons and turning on buttonMode and useHandCursor there. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Monday

[flexcoders] Re: Changing Mouse Cursor in application

2007-10-01 Thread flexawesome
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Monday, October 01, 2007 12:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Changing Mouse Cursor in application hey Alex, If i creates a subclassing, shall I change all tag of mx:Button

[flexcoders] How to get all children in Application?

2007-10-01 Thread flexawesome
Hi there, is there a way to get all children in application? in the following code, I can get the button_1, panel_1 only. However, can't get the button_2 inside the panel. can I get all children in whole application without knowing the container structure? THANKS

[flexcoders] Re: How to get all children in Application?

2007-10-01 Thread flexawesome
that returns all children. It wouldn't be difficult to write a recursive function that recurses through the display list and gets all child display objects though. regards, Bjorn On 02/10/2007, at 12:11 PM, flexawesome wrote: Hi there, is there a way to get all children in application

[flexcoders] Re: How to get all children in Application?

2007-10-02 Thread flexawesome
hi there, I am appreciate that someone can help me on the sample code below, I am new to flex, so I can learn form you guys. Thanks a lot @v@ --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hi there, is there a way to get all children in application

[flexcoders] Changing highlight color for textArea

2007-10-02 Thread flexawesome
can I change the highlight color in textArea? I am going to change the text highlight color from default black color to other. Cheers

[flexcoders] Change backgroundImage postion in Panel

2007-10-17 Thread flexawesome
Hey, Is there a way to change the position of backgroundImage in Panel? It now in the center and I need to move it to the left of Panel... Tanks == ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:VBox height=100% width=100%

[flexcoders] MoveEvents.MOVE for Popwindow doesn't work?

2007-10-24 Thread flexawesome
Hi guys, I am reading the article here for popwindow http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Partsfile=layouts_065_45.html I am going to addEventListenser for the popwindow, if the popwindow moved, I need to update the label, it seems

[flexcoders] Re: MoveEvents.MOVE for Popwindow doesn't work?

2007-10-24 Thread flexawesome
} If you change that does it work for you? Peter From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Wednesday, October 24, 2007 2:50 PM To: flexcoders@yahoogroups.com Subject: [flexcoders

[flexcoders] remove a item in ArrayCollection

2007-11-03 Thread flexawesome
Hey there, I have a problem to remove the first *object* in myData, any suggestion? Thank you === [Bindable] private var myData:ArrayCollection; myData.removeItemAt(myData.getItemAt(0));

[flexcoders] Re: remove a item in ArrayCollection

2007-11-03 Thread flexawesome
1194139654331 151789 --- In flexcoders@yahoogroups.com, simonjpalmer [EMAIL PROTECTED] wrote: how about myData.removeItemAt(0)? --- In flexcoders@yahoogroups.com, flexawesome flexawesome@ wrote: Hey there, I have a problem to remove the first *object* in myData, any

[flexcoders] Re: remove a item in ArrayCollection

2007-11-03 Thread flexawesome
Andrews [EMAIL PROTECTED] wrote: There shouldn't be a problem with Simons suggestion. Post your code. The message seems to suggest you didn't declare myData as an ArrayCollection, but your original code did. Hmm.. Paul - Original Message - From: flexawesome [EMAIL PROTECTED

[flexcoders] Re: remove a item in ArrayCollection

2007-11-03 Thread flexawesome
as an ArrayCollection. What makes you think event.result.sites.site is an ArrayCollection? Have you inspected event.result.sites.site in the debugger? --- In flexcoders@yahoogroups.com, flexawesome flexawesome@ wrote: here is my completed code... I am going to remove the first site

[flexcoders] Gets arrange items in ArrayCollection?

2007-11-03 Thread flexawesome
Hey there, Is there a way to get arrange items in ArrayCollection? ( like substr ) for example: var myData:ArryCollection it contents 10 *items* I can get entire list of myData, but I only need index 2 - 7, kick out 0,1,8,9,10. Cheers

[flexcoders] Re: Gets arrange items in ArrayCollection?

2007-11-03 Thread flexawesome
, Alex Harui [EMAIL PROTECTED] wrote: source.slice(). See array.slice() for documentation. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Saturday, November 03, 2007 10:22 PM To: flexcoders@yahoogroups.com

[flexcoders] How to detect a *piece* of pie be clicked in Pie Chart?

2007-11-04 Thread flexawesome
Hey there, I am working on pie chart( loads data from xml file), is there a way to click a piece of Pie chart to open a new window? I can show the following data in pie chart by using flex charting components. but I would like to allow user to click any piece to load the site in a new window.

[flexcoders] Re: How to detect a *piece* of pie be clicked in Pie Chart?

2007-11-04 Thread flexawesome
any suggestions? thanks --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey there, I am working on pie chart( loads data from xml file), is there a way to click a piece of Pie chart to open a new window? I can show the following data in pie chart by using flex

[flexcoders] Re: How to detect a *piece* of pie be clicked in Pie Chart?

2007-11-05 Thread flexawesome
{ trace(e.hitData.item.url); // also, check out e.hitData.chartItem object for details } 2007/11/5, flexawesome [EMAIL PROTECTED]: any suggestions? thanks --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, flexawesome flexawesome@ wrote: Hey there, I am working

[flexcoders] How to get compiled SWF Date and Time by itself?

2007-11-06 Thread flexawesome
Hey there, I would like to show the compiled SWF date and time in the Label( the label inside the Flex application ) so every time, I can be notified the version when I launch it. Is that possiblly?

[flexcoders] Re: remove a item in ArrayCollection

2007-11-06 Thread flexawesome
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Saturday, November 03, 2007 9:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: remove a item in ArrayCollection hummm I got this error msg

[flexcoders] How to validate XML file format before contiune?

2007-11-07 Thread flexawesome
hi, I was thinking how to validate the XML file format before using it in Flex. for example, if it is validate XML file then use it, otherwise prompt an error msg to notify user. Cheers

[flexcoders] How to detect compiled Date Time by itself

2007-11-07 Thread flexawesome
hey guys, Is there a way to detect compiled Date Time by Flex swf itself? If so, I could place a TextField in Flex and show up the version. ( the text field reads the own file information such as last modify.. by itself ) I don't need to change the version once I need to recompile and

[flexcoders] Re: Security issue - Opening a new window

2007-11-08 Thread flexawesome
Did you put ur Flex on web and tried to open the PDF on ur local laptop or desktop? If so, u can't do that --- In flexcoders@yahoogroups.com, g07m5064 [EMAIL PROTECTED] wrote: I tried using a navigateToURL() method to open a pdf file in a new window. The file is stored in a local directory.

[flexcoders] Re: How to detect compiled Date Time by itself

2007-11-08 Thread flexawesome
is that possible? thanks --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: hey guys, Is there a way to detect compiled Date Time by Flex swf itself? If so, I could place a TextField in Flex and show up the version. ( the text field reads the own file information

[flexcoders] Re: How to detect compiled Date Time by itself

2007-11-08 Thread flexawesome
] On Behalf Of flexawesome Sent: Thursday, November 08, 2007 10:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to detect compiled Date Time by itself is that possible? thanks --- In flexcoders@yahoogroups.com, flexawesome flexawesome@ wrote: hey guys, Is there a way

[flexcoders] Re: Security issue - Opening a new window

2007-11-08 Thread flexawesome
you may need corssdomain.xml, seach it in flex help file. --- In flexcoders@yahoogroups.com, g07m5064 [EMAIL PROTECTED] wrote: Hi, Whenever I try to access another application in domain I get this error: Error #2044: Unhandled SecurityErrorEvent:. text=Error #2047: Security sandbox

[flexcoders] Comparing Date

2007-11-13 Thread flexawesome
Hey, I am working on Comparing the Date, the following code does work with declare :*, however I would like to declare to :Date, but it doesn't work. Does anybody know how to declare for dDays and fully handle this? Thanks === ?xml version=1.0? mx:Application

[flexcoders] Re: Comparing Date

2007-11-13 Thread flexawesome
Thanks Paul, it works great! --- In flexcoders@yahoogroups.com, Paul Decoursey [EMAIL PROTECTED] wrote: try it by accessing the Date.time property for you math operations. On Nov 13, 2007, at 12:36 PM, flexawesome wrote: Hey, I am working on Comparing the Date, the following code does

[flexcoders] External StyleSheet In Application

2007-11-14 Thread flexawesome
hey there, I added stylesheet into my application as below, but it does change the color or size in my application. I have to recompile the application to take effect. Is there anything wrong? Thanks mx:Style source=main.css/ === in CCS file == Application {

[flexcoders] Re: External StyleSheet In Application

2007-11-14 Thread flexawesome
oppps..should be == but it does not change the color or size in my application. --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: hey there, I added stylesheet into my application as below, but it does change the color or size in my application. I have

[flexcoders] Re: External StyleSheet In Application

2007-11-14 Thread flexawesome
products. Position is in the Washington D.C. metro area. If interested contact [EMAIL PROTECTED] -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Wednesday, November 14, 2007 9:28 PM To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: External StyleSheet In Application

2007-11-14 Thread flexawesome
this can be done in Flex 3. Cheers --- In flexcoders@yahoogroups.com, Richard Rodseth [EMAIL PROTECTED] wrote: But see this: http://www.onflex.org/ted/2007/01/flex-201-understand-runtime- css.php I haven't done this yet myself. On 11/14/07, flexawesome [EMAIL PROTECTED] wrote

[flexcoders] Re: External StyleSheet In Application

2007-11-15 Thread flexawesome
humm...it loads compiled swf file rather than CSS file(directlly)... that means I have to recompiled the CSS once I made some changes everytime. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 15 Nov 2007, Samuel R. Neff wrote: CSS is loaded at compile

[flexcoders] How to disble double click in ComboBo?

2007-12-05 Thread flexawesome
Hi, I am working on ComboBox components and like to disable double click event once click the little scrub( arrow icons ) The code doesn't work for me. Is there any way to reach that? Thanks = ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Re: How to disble double click in ComboBo?

2007-12-05 Thread flexawesome
any suggestions? thanks --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hi, I am working on ComboBox components and like to disable double click event once click the little scrub( arrow icons ) The code doesn't work for me. Is there any way to reach

[flexcoders] How to detect DoubleClick in Button?

2007-12-06 Thread flexawesome
Hey there, I have a button and would like to detect DoubleClick event. Is that possible? Thanks a lot

[flexcoders] Re: How to disble double click in ComboBo?

2007-12-06 Thread flexawesome
impossible? thanks a lot --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: any suggestions? thanks --- In flexcoders@yahoogroups.com, flexawesome flexawesome@ wrote: Hi, I am working on ComboBox components and like to disable double click event once click

[flexcoders] Re: How to disble double click in ComboBo?

2007-12-10 Thread flexawesome
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Thursday, December 06, 2007 2:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to disble double click in ComboBo? impossible? thanks a lot --- In flexcoders@yahoogroups.com

[flexcoders] Re: How to disble double click in ComboBo?

2007-12-11 Thread flexawesome
morning everyone :) --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey Alex, thanks for trying to help me out of this :) You may see the events of doubleClickEvents here: http://livedocs.adobe.com/flex/201/langref/mx/controls/ComboBox.html#propertySummary

[flexcoders] Re: How to disble double click in ComboBo?

2007-12-12 Thread flexawesome
sorry to pull the post up again, can anybody help me on this? Thanks --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey Alex, thanks for trying to help me out of this :) You may see the events of doubleClickEvents here: http://livedocs.adobe.com/flex/201

[flexcoders] Re: How to disble double click in ComboBo?

2007-12-12 Thread flexawesome
, but probably not until next week. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Wednesday, December 12, 2007 9:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to disble double click in ComboBo

[flexcoders] How to close dorp-down list in ComboBox components

2007-12-13 Thread flexawesome
Hi there, I saw method of Close(trigger:Event=null):void in livedoc, but I don;t know how to use it, does anyone can help? what should I put into () ? ComboBox.close() ? http://livedocs.adobe.com/flex/201/langref/mx/controls/ComboBox.html#close() Thanks

[flexcoders] Is there possible to enable autoSize properties for Text components?

2007-12-19 Thread flexawesome
hey there, I uses following code in my application, and I would like to pass text message into my text component. Is there a way to enable autoSize for it? so it could be set width property. mx:Text id=txtComp text={txtCompText}/ Have a nice day

[flexcoders] What's the minimize version of Flash Player for running Flex 3 SWF?

2008-01-15 Thread flexawesome
Hey there, Flex 3 will be out early this year. I'd like to know what's the minimize Flash player version for running Flex 3 SWF? Any official documents? Have a nice day

[flexcoders] Re: What's the minimize version of Flash Player for running Flex 3 SWF?

2008-01-15 Thread flexawesome
--- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey there, Flex 3 will be out early this year. I'd like to know what's the minimize Flash player version for running Flex 3 SWF? Any official documents? Have a nice day hey, v9 is required but I am not quit

[flexcoders] click event doesn't work in TileList Component

2008-01-16 Thread flexawesome
hey there, I was using TileList to build my simply application. It's weird, seems doesn't work in itemrenderer. I would like to get the index number once user clicks my tilelist components. Any suggestions? Thanks == ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: click event doesn't work in TileList Component

2008-01-16 Thread flexawesome
AWESOME! Thanks Sherif :) --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: instead of click, do itemClick = playLists_Click - Original Message From: flexawesome [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, January 16, 2008 9:39:18

[flexcoders] Moves Flex mouse cursor to a new position in the stage

2008-01-17 Thread flexawesome
Hey there, Is there a way to move the mouse cursor to a new location in the Flex application? Any sample code please? Cheers

[flexcoders] Re: Moves Flex mouse cursor to a new position in the stage

2008-01-17 Thread flexawesome
--- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey there, Is there a way to move the mouse cursor to a new location in the Flex application? Any sample code please? Cheers any suggestions? thanks

[flexcoders] May I click a button to ScrollDown in TileList

2008-01-19 Thread flexawesome
Hi there, I am using TileList to build my simple application, is there a way to click a button to scroll down in TileList component? I would like to set vercitalScrollPolicy=off and then add a new button on the stage, user can click the button to scroll down in TileList. Thanks

[flexcoders] Re: May I click a button to ScrollDown in TileList

2008-01-19 Thread flexawesome
Any suggestions? Cheers --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hi there, I am using TileList to build my simple application, is there a way to click a button to scroll down in TileList component? I would like to set vercitalScrollPolicy=off

[flexcoders] Hide Track in HSlider Component.

2008-01-20 Thread flexawesome
Hi there, Is there any way to hide the track in HSlider? Something like track.alpha = 0 thank you

[flexcoders] Stop slide greater than 50 in HSlider component

2008-01-23 Thread flexawesome
Hey therem, Is there a way to stop user to slide greater than 50, but user still can see rest tracker on the right side. After running other code, I would like to despatch it and allow user slide to 100. mx:HSlider minimum=0 maximum=100/ Is that possible? Thank you for your comments.

[flexcoders] Re: Stop slide greater than 50 in HSlider component

2008-01-23 Thread flexawesome
] wrote: off the top of my head, you can prob check if it is at 50 and just keep setting the value at 50, havent tested it if(mySlider.value =50){ mySlider.value=50 } and then to allow it to one hundred, you can just - Original Message From: flexawesome [EMAIL PROTECTED

[flexcoders] Re: Stop slide greater than 50 in HSlider component

2008-01-23 Thread flexawesome
AWESOME --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: i think then you need to enable liveDragging which will work - Original Message From: flexawesome [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, January 23, 2008 6:33:47 PM

[flexcoders] Adding Video Object on Stage By Using addchild() With Sound ONLY ( No Video )

2008-01-31 Thread flexawesome
Hey there, I am using as3 to add my video object on Stage, I can hear the sound but not video shows up.. anything wrong? Thank you = private function connectStream():void { //var videoHolder:UIComponent = new UIComponent(); stream = new

[flexcoders] How to retrieve out data from first Components into second Components?

2008-02-21 Thread flexawesome
Hey there, I was working on this and can't figure out how to read out the data from com01 and pass it into com02 com01 and com02 contents a text field for each, how can I get the string in com01 from com02? You could see the sample code here: http://ted.adobe.privatepaste.com/b17ftMBAXd

[flexcoders] Re: Scrollbar width

2008-02-21 Thread flexawesome
--- In flexcoders@yahoogroups.com, gur_sukh [EMAIL PROTECTED] wrote: Hi all, Is there a way we can change the width of the scrollbar. Thanks Jas changing the width by using skinning http://axel.cfwebtools.com/index.cfm/2007/3/27/Custom-Scroll-Bar-Using-CSS by using class file.

[flexcoders] Re: How to retrieve out data from first Components into second Components?

2008-02-21 Thread flexawesome
- Original Message From: flexawesome [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, February 21, 2008 10:59:34 AM Subject: [flexcoders] How to retrieve out data from first Components into second Components? Hey there, I was working on this and can't figure out

[flexcoders] Re: How to retrieve out data from first Components into second Components?

2008-02-21 Thread flexawesome
oppss, should be public instead of private. Otherwise, you won't get it :) --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey Sherif, thanks for your comments. I may read the data from com02 components and should place the code in com02, so I can retrieve

[flexcoders] How to retrieve the Button label name?

2008-02-22 Thread flexawesome
Hey there, Is there a way to retrieve the button label name once user click the button? ( the button label name is CLICK HERE and in itemRenderer ) Main Application: http://ted.adobe.privatepaste.com/661uYqmygR Components: http://ted.adobe.privatepaste.com/d70RBUknYg SNOW today, stay warm

[flexcoders] Re: How to retrieve the Button label name?

2008-02-22 Thread flexawesome
any suggestions? Thanks --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey there, Is there a way to retrieve the button label name once user click the button? ( the button label name is CLICK HERE and in itemRenderer ) Main Application: http

[flexcoders] How to communicate Flash SWF with Flex SWF?

2008-04-23 Thread flexawesome
Hi there, There was a simple SWF file created by Flash 9 ( AS3 ), it had a INPUT TEXT field and the instance name was txtField. I am now going to retrieve the text in my Flex 3 project, I use SWFLoader to load the Flash SWF, for example: mx:SWFLoader id =swfHolder source=createdByFlash.swf/

[flexcoders] Re: How to communicate Flash SWF with Flex SWF?

2008-04-23 Thread flexawesome
--- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hi there, There was a simple SWF file created by Flash 9 ( AS3 ), it had a INPUT TEXT field and the instance name was txtField. I am now going to retrieve the text in my Flex 3 project, I use SWFLoader to load

[flexcoders] How to change tje header color on Accordion Components?

2008-05-14 Thread flexawesome
Hi there I was using style explorer to change the color of accordion, but I wasn't successfully. http://examples.adobe.com/flex3/consulting/styleexplorer/Flex3StyleExp lorer.html#app=a712e64f-selectedIndex=1e51-selectedIndex=0661d- selectedIndex=0 1. I would like to remove all gradient color

[flexcoders] TextArea doesn't display on the stage by using a simple Class file

2008-05-14 Thread flexawesome
Hi there, I have a very simple class file to draw a TextArea, it seems doesn't work and I have no ideas :( I could draw the Shape but not the TextArea, can you please help me to have a quick look? Thanks MXML File: http://www.privatepaste.com/97y6TXF057 Class File:

[flexcoders] Re: TextArea doesn't display on the stage by using a simple Class file

2008-05-14 Thread flexawesome
I called the function at no.19 and can get the text String on no.31. but i was unable to see it inside of sprite ( on the stage ) http://www.privatepaste.com/96WivclDAg Thanks --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hi there, I have a very simple class

[flexcoders] a simple question of BitmapData

2008-05-17 Thread flexawesome
Hi there, do you know how can I use it to duplicate the image? It seems doesn't work. any ideas? Thank you loader = new SWFLoader(); loader.addEventListener(Event.COMPLETE, Bitmapdata) loader.source = http://us.i1.yimg.com/us.yimg.com/i/us/nt/ma/ma_tech- grp_1.gif

[flexcoders] Re: a simple question of BitmapData

2008-05-17 Thread flexawesome
thanks for reply, but I don't know how to use in my file, any example? thanks --- In flexcoders@yahoogroups.com, Frederico Garcia [EMAIL PROTECTED] wrote: flexawesome escreveu: Hi there, do you know how can I use it to duplicate the image? It seems doesn't work. any ideas

[flexcoders] Re: a simple question of BitmapData

2008-05-17 Thread flexawesome
Hi there, I have updated the code ( enabled line5 ) and get the duplicate copy of gif file. Is there a way to prevent to use addChild but still can get the copy of the image? Cheers http://www.privatepaste.com/29lCTCERRY --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED

[flexcoders] How to set the e.currentTarget.selectedItem data to my own VO object?

2008-05-18 Thread flexawesome
Hi there, I was trying to figure out how to set my selected data to my VO object. so I could get the data anywehere in my application ( using cairngorm framework ). in the exaple code below, I would like to click the TileList and set the data in my TileListVO. it drove me mad :( I got an

[flexcoders] Re: a simple question of BitmapData

2008-05-18 Thread flexawesome
Of *flexawesome *Sent:* Saturday, May 17, 2008 3:16 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Re: a simple question of BitmapData Hi there, I have updated the code ( enabled line5 ) and get the duplicate copy of gif file. Is there a way to prevent to use addChild

[flexcoders] Re: How to set the e.currentTarget.selectedItem data to my own VO object?

2008-05-19 Thread flexawesome
] wrote: var vo:TileListVO = TileListVO(e.currentTarget.selectedItem); Greetz Erik On 5/19/08, flexawesome [EMAIL PROTECTED] wrote: Hi there, I was trying to figure out how to set my selected data to my VO object. so I could get the data anywehere in my application

[flexcoders] Re: How to set the e.currentTarget.selectedItem data to my own VO object?

2008-05-19 Thread flexawesome
] wrote: var vo:TileListVO = TileListVO(e.currentTarget.selectedItem); Greetz Erik On 5/19/08, flexawesome [EMAIL PROTECTED] wrote: Hi there, I was trying to figure out how to set my selected data to my VO object. so I could get the data anywehere in my application

[flexcoders] How to use WebServices in Flex 3?

2008-05-21 Thread flexawesome
Hi there, I am playing the WebServices in Flex3, on the top menu bar clicks data= import Web Sevice(WSDL), it creates coupe of as files for me, I have no idea how can I use them, do you know any good tutorials to teach user how to use WebServices? Thank you so much

[flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread flexawesome
trying real web services. Robert --- In flexcoders@yahoogroups.com, flexawesome flexawesome@ wrote: Hi there, I am playing the WebServices in Flex3, on the top menu bar clicks data= import Web Sevice(WSDL), it creates coupe of as files for me, I have no idea how can I use them, do

[flexcoders] How to use ArrayCollection for dataProvide by easily?

2008-05-22 Thread flexawesome
Hey there, I really need your suggestions on this @[EMAIL PROTECTED] have an XML file, it stores couple of departments information. there are couple of TileList compoents in my application and each of renderer are are mapping to different department. For example: TIleList1 / Renderer1 uses fin

[flexcoders] Re: How to use ArrayCollection for dataProvide by easily?

2008-05-22 Thread flexawesome
if you couldn't see the XML file in format, please see here http://www.privatepaste.com/84L8s25KwM --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey there, I really need your suggestions on this @[EMAIL PROTECTED] have an XML file, it stores couple

[flexcoders] Re: How to use ArrayCollection for dataProvide by easily?

2008-05-22 Thread flexawesome
any suggestions? --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: if you couldn't see the XML file in format, please see here http://www.privatepaste.com/84L8s25KwM --- In flexcoders@yahoogroups.com, flexawesome flexawesome@ wrote: Hey there, I really

[flexcoders] Very simple - Convert XML = ArrayCollection = DataProvider

2008-05-23 Thread flexawesome
I was trying to covert the XML file into ArracyCollection, but I had a problem for binding with DataGrid. It was showing the same record in twice on the DataGrid. The sample file was simple http://www.privatepaste.com/2c1WhD4jvj Would you pls take a look? Have a nice weekend

[flexcoders] Re: Very simple - Convert XML = ArrayCollection = DataProvider

2008-05-23 Thread flexawesome
); //trace(name: + author.name + -- birthdate: + author.birthdate); } collection.refresh(); } - Original Message From: flexawesome [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, May 23, 2008 3:23

  1   2   >