Re: [flexcoders] again tool tips

2008-03-28 Thread GnanaPrakash .T
Modify your code as below and try , The fact is you cannot access the private variable outside the function that is declared declared inside the function .imageStyle{ align:"center"; } // this is the

RE: [flexcoders] again tool tips

2008-03-21 Thread Tracy Spratt
Google "Flex tooltip htmlText Image" it is in the top 5 as I recall. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of justSteve Sent: Friday, March 21, 2008 3:55 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcod

RE: [flexcoders] again tool tips

2008-03-21 Thread Tracy Spratt
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] again tool tips sorry if I bother you, but tell me this more in detail. Regards, Gustavo On Mar 20, 2008, at 5:44 PM, Tracy Spratt wrote: When you declare a variable inside a function it is only available within that

RE: [flexcoders] again tool tips

2008-03-21 Thread Randy Martin
oolTip { myTT = new ImageToolTip(); myTT.myImage = s; s = "{data.image}"; return myTT; } HTH, ~randy _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent: Tuesday, May 20, 2008 11:38 PM To: flexcoders@yahoogroups.com Subject: Re

Re: [flexcoders] again tool tips

2008-03-21 Thread justSteve
Could you post a URL holding the original source for the tooltip example? tx On 5/20/08, Gustavo Duenas <[EMAIL PROTECTED]> wrote: > >sorry if I bother you, but tell me this more in detail. > > Regards, > > Gustavo > On Mar 20, 2008, at 5:44 PM, Tracy Spratt wrote: > > > When you declare a va

Re: [flexcoders] again tool tips

2008-03-20 Thread Gustavo Duenas
sorry if I bother you, but tell me this more in detail. Regards, Gustavo On Mar 20, 2008, at 5:44 PM, Tracy Spratt wrote: When you declare a variable inside a function it is only available within that function. You need to declare myTT in the instance scope, that is, not in a function, a