RE: [flexcoders] Hyperlink in flex.

2007-10-19 Thread Tracy Spratt
, October 19, 2007 3:10 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Hyperlink in flex. Hi, Is there anyway we can use a label/text with an image as a link in flex so that on clicking that link we are displayed with some other page like in html we use Html Link I t

Re: [flexcoders] Hyperlink in flex.

2007-10-19 Thread Scott - FastLane
Sure.. try click="doSomething(event)"/> Scott Scott Melby Founder, Fast Lane Software LLC http://blog.fastlanesw.com Venkat Perpati wrote: Hi, Is there anyway we can use a label/text with an image as a link in flex so that on clicking that link we are displayed with some other page like

RE: [flexcoders] Hyperlink in flex.

2007-10-19 Thread Venkat Perpati
Hi, Is there anyway we can use a label/text with an image as a link in flex so that on clicking that link we are displayed with some other page like in html we use Html Link I there any similar way we could use links refering to a page in the same application in Flex.

RE: [flexcoders] Hyperlink in flex.

2007-10-19 Thread Tracy Spratt
The terms "hyperlink", "file", "folder" and "page" are not very meaningful without more context. What do you want the user to do and what do you want to happen? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Venkat Perpati

Re: [flexcoders] Hyperlink in flex.

2007-10-18 Thread Tom Preet
Hi Venkat, use the URL Navigator control for ex: var u:URLRequest = new URLRequest("x.mxml"); navigateToURL(u, "_self"); for the Image Click event ok. Bye.. Preet. On 10/19/07, Venkat Perpati <[EMAIL PROTECTED]> wrote: > >Hi, > > Can anyone please tell me about how to add a

RE: [flexcoders] Hyperlink in Flex 2...

2007-09-26 Thread Matt Horn
Check out the label's available styles: http://livedocs.adobe.com/flex/201/langref/mx/controls/Label.html You'll want to use color and textDecoration. hth, matt horn flex docs > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sand

Re: [flexcoders] Hyperlink in Flex 2...

2007-09-26 Thread Scott - FastLane
Daniel - click="yourEventHandler(event)"/> hth Scott Daniel Sanderson wrote: Is there a way to make a label look like a hyperlink. It may trigger a view state or send and e-mail, whatever but I want to make it look and function like a hyperlink (underline and different color). Daniel