[flexcoders] Re: Mapping/Image in Flex

2011-11-08 Thread valdhor
Take a look at the callout component - http://www.adobe.com/devnet/flex/samples/fig_callout.html --- In flexcoders@yahoogroups.com, Venkat M venkat_yum@... wrote: Thank you. What if it is not a map?. Say for example I have a car image, when I hover over the tires, I should get the info

[flexcoders] Re: opening another Window in Flex for commenting on data entered in TextArea compon

2011-11-08 Thread valdhor
The way I would do it is to include an extra text area underneath (Or beside) each of the current text areas for the reviewer to add comments. These text areas would only be visible if a reviewer logged in. Depending on some flags that are populated in the database, you could make one or the

[flexcoders] Re: code out of sync with flash builder

2011-11-08 Thread valdhor
Do you have the debug even if there are errors (Or whatever it is called) turned on? I have only seen this when there are errors in the code so a compile can't complete. In this case Flex will let you debug but use the previous compiled version. --- In flexcoders@yahoogroups.com, Wouter

[flexcoders] Replacing double slash with a single slash

2011-11-08 Thread Nick Middleweek
Hi, I'm trying to replace a double slash with a single slash and am having a little trouble, has anyone done this before? Here's what I've got thus far... var doubleSlash : RegExp = /(\\)(\\)/g; var slash : RegExp = /(\\)/; winMessage = winMessage.replace( doubleSlash, slash ); Cheers, Nick

[flexcoders] Transparent PNG problems

2011-11-08 Thread David Pariente
Hi all, I'm new to flex 4.5 and im trying to show transparent 24b PNG files. I had no problem with this in Flex3. in 4.5 a slim light grey line appears surrounding the transparent contour of the image, making it usless for it's purpose. i just did a normal s:Image source=image.png/ tryed

[flexcoders] Re: Replacing double slash with a single slash

2011-11-08 Thread valdhor
As I understand it the backslash character is special in both the regex and the replacement string, so it has to be double escaped in both places. That means, for every single backslash you want to match or insert, you have to put *four* backslashes in the regex or replacement string. --- In

Re: [flexcoders] Errors during build - ASDoc Configuration

2011-11-08 Thread John Fletcher
Cool. If it really happens exactly every other time, then that is good information to work with. Does it matter if you just restarted the IDE? Does it matter if you did a clean or just saved a file with build automatically on, etc? When you restart your machine? Then you need to determine whether

[flexcoders] Way to determine if an active debugging session is in progress

2011-11-08 Thread dorkie dork from dorktown
I need to find out if there is an active debugging session going on. Is it possible? I would like to have it setup to throw an error for the developer who is actively debugging but if it is at runtime I want to show a pop up message. I'm guessing there is possible since debugging goes through a

[flexcoders] Calling flex from JavaScript wrapper

2011-11-08 Thread Venkat M
Hi Team,   I have a question about calling a flex method from JS. The scenario is, if the user closes the window without logging off,  I detect the window close from JS and call the appropriate logoff mechanism which is mapped originally for log out button. JS code   SCRIPT LANGUAGE=JavaScript  

Re: [flexcoders] Transparent PNG problems

2011-11-08 Thread David Pariente
sorry guys, just noticed this is a problem caused by photoshop... ty -- David Pariente RIA consultor -- El 08/11/2011, a les 19:34, David Pariente xxmapach...@yahoo.es va escriure: Hi all, I'm new to flex 4.5 and im trying to show

[flexcoders] Re: code out of sync with flash builder

2011-11-08 Thread Hans Goeckel
I've had a similar problem. Flash Builder shows me the current source when debugging, but when you try to step through it, it is obviously running a previous version of the source. What fixed it for me is to switch to another project in the workspace, compile it, then return to the main

Re: [flexcoders] Re: code out of sync with flash builder

2011-11-08 Thread Wouter Schreuders
Yeah... I'm aware of that setting. under windowpreferencesrun/debuglaunchingContinue launch if project contains errors. I've set that to prompt but it's not the cause of the problem. I see there's another setting Luanch operation mine is set to launch the selected resource or active editor. If

Re: [flexcoders] Re: opening another Window in Flex for commenting on data entered in TextArea compon

2011-11-08 Thread Mike J
Thanks for the suggestion. But, the TitleWindow is already full and does not have space for more textareas. What can I do in this situation? From: valdhor valdhorli...@embarqmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, November 8, 2011 9:25 AM