[flexcoders] argent help needed please

2009-04-24 Thread stinasius
hi guys i have a problem with video display play button in flex 2. when i click the play button i get this error TypeError: Error #1006: play is not a function.at custom_comps::home/__playButton_click(). here is my code please guide me.thanks mx:Panel width=350 height=50% layout=vertical

RE: [flexcoders] Question about ASDocs

2009-04-24 Thread Gregor Kiddie
The ASDoc compiler usually takes one pass through the code rather than the multiple passes like the regular compiler, so if your app won't compile in a single pass, the ASDoc can't be made. Usual culprits are classes that use dispatchEvent(...) without extending EventDispatcher but DO have

[flexcoders] Re: Setting dateField.SelectedDate when component is disabled?

2009-04-24 Thread Mic
If I leave the dateField objects enabled: mx:DateField id=dtCmplxStartDate enabled=true / then from the function: dtCmplxStartDate.selectedDate = tempStrtDt; the gui shows the date in the textInput part of the dateField component. All I have to change is mx:DateField id=dtCmplxStartDate

[flexcoders] Using some frameworks for PHP serverside

2009-04-24 Thread raja_s_patil
Hi, With lot of help from Steve on this list I could get a Flex test application running with webORB and PHP-Firebird as serverside many thanks to him. We also trying run it with other AMF alternatives just for evaluation otherwise webORB is very satisfactory. Performance is acceptable, Easy to

RE: [flexcoders] module loading and progress load slow?

2009-04-24 Thread Gregor Kiddie
Do you have a lot of RSLs for each module? Our experience was that it wasn't the loading of the module that took the time it was loading all it's RSLs. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ

RE: [flexcoders] Popups and accessibility (JAWS)

2009-04-24 Thread Gregor Kiddie
That was a known issue in Flex 2, it doesn't look like it's gotten any better in Flex 3! Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our

RE: [flexcoders] testing posting

2009-04-24 Thread Gregor Kiddie
Nope... definitely not working ;) Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our Internet Web site at www.inps.co.uk

[flexcoders] Datagid : filterfunction

2009-04-24 Thread secrit.service
Hello all, I have a table in my DB containing following fields : - ID - aText : String - flaggedForDeletion : Boolean Suppose all my records have a value of false for field flaggedForDeletion. In my application I have a datagrid and a recycleBin-button. My intention is to create following :

RE: [flexcoders] Re: Signed RSL penetration

2009-04-24 Thread Kenneth Sutherland
Does that mean that any swf you create that uses the flex framework RSLs are not going to get indexed by Google. I've created a very simple placeholder page (single front page with just a few text boxes and a link) and as usual I make the framework into a RSL(total overkill in this situation, but

Re: [flexcoders] Download Flash Player

2009-04-24 Thread Tom Chiverton
The SWFObject project also works well. -- Helping to enormously reinvent mission-critical convergence as part of the IT team of the year, '09 and '08 Tom Chiverton Developer Tel: +44 0161 618 5032 Fax: +44 0161 618 5099 tom.chiver...@halliwells.com 3 Hardman Square, Manchester, M3 3EB

[flexcoders] PyAMF 0.4.2 released

2009-04-24 Thread Thijs Triemstra | Collab
The PyAMF team is proud to announce the release of 0.4.2! PyAMF [1] is a lightweight library that allows Flash and Python applications to communicate via Adobe’s ActionScript Message Format. This is a bugfix release [2], see the changelog [3] for the complete list of changes. A brief overview of

[flexcoders] Tree Structure in advanced datagrid

2009-04-24 Thread senthilkumarirtt
hi all, i need to select tree structure(index) values dynamically... depends on combobox value(work as Filter)..any way to implement???

[flexcoders] IE8 problem

2009-04-24 Thread senthilkumarirtt
hi all ,i develop dashboard using Flex3...But ouput is working in all browsers other than Internet Explorer 8... i cant understand What is the problem...Give some suggestion...

RE: [flexcoders] IE8 problem

2009-04-24 Thread Gregor Kiddie
Well for starters, what is it doing (or not doing)? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our Internet Web site at www.inps.co.uk

Re: [flexcoders] IE8 problem

2009-04-24 Thread Pedro Sena
What do you mean by 'does not work on IE8' ? The swf is not loaded? Some specific error in IE ? Tell us more about the problem, w/o information is impossible to help you. PS On Fri, Apr 24, 2009 at 6:55 AM, senthilkumarirtt senthilkumari...@yahoo.co.in wrote: hi all ,i develop dashboard

Re: [flexcoders] Synchronize time

2009-04-24 Thread Tom Chiverton
On Friday 24 Apr 2009, lehaianh1986 wrote: Hi all, can AIR have ability to check date-time from internet? Depend on my knowledge, I think I need to send request to some websites, then receive the response is the date. Any one know about it can help me? I search but don't see anything guide me

Re: [flexcoders] IE8 problem

2009-04-24 Thread nospam allowed
Just an FYI I know Flex works well with IE 8 since we've tested an application my company built in IE 8 with no differences that we found between it and IE 7, it must be something your doing On Fri, Apr 24, 2009 at 5:55 AM, senthilkumarirtt senthilkumari...@yahoo.co.in wrote: hi all ,i

Re: [flexcoders] IE8 problem

2009-04-24 Thread Carlos Rovira
two days ago a friend maintaining a Flash 7 old project had a refresh problem with IE8 it seems IE8 can load a SWF7 but can't reload it!. He workaround the problem making a Flash 8 wrapper for the SWF7. Well, I think this shows up the great quality of IE8. Think that your problem could be IE8

[flexcoders] modules, rendering event trigger

2009-04-24 Thread nospam allowed
I've got parentApplication.addEventListener(ModuleEvent.READY, parentApplication.createmeals_swf.child.which_plan); Which loads my function on first load of the swf, but I need a way to know when that module renders because if i try to call that function and it has not rendered then it throws an

Re: [flexcoders] IE8 problem

2009-04-24 Thread nospam allowed
Can you post the wrapper? On Fri, Apr 24, 2009 at 9:31 AM, Carlos Rovira carlos.rov...@gmail.comwrote: two days ago a friend maintaining a Flash 7 old project had a refresh problem with IE8 it seems IE8 can load a SWF7 but can't reload it!. He workaround the problem making a Flash 8

Re: [flexcoders] IE8 problem

2009-04-24 Thread Carlos Rovira
sorry it was a project from other people and I want only to expose other case of IE8 failing. Take into account that I was talking of old Flash 7 and 8 stuff 2009/4/24 nospam allowed nos...@advancedonsite.com Can you post the wrapper? On Fri, Apr 24, 2009 at 9:31 AM, Carlos Rovira

Re: [flexcoders] IE8 problem

2009-04-24 Thread senthil kumar
ya.. --- On Fri, 24/4/09, nospam allowed nos...@advancedonsite.com wrote: From: nospam allowed nos...@advancedonsite.com Subject: Re: [flexcoders] IE8 problem To: flexcoders@yahoogroups.com Date: Friday, 24 April, 2009, 7:37 PM Can

Re: [flexcoders] Blank Screen issue with application preloaders

2009-04-24 Thread Tom Chiverton
On Thursday 23 Apr 2009, b_alen wrote: I get a blank screen for more than 10 seconds for the app that's about 700k in size. Only then the preloader appears and starts from somewhere around 70%. I don't see that here, and it would be surprising if so. Are you sure it's not just you ? --

Re: [flexcoders] Blank Screen issue with application preloaders

2009-04-24 Thread nospam allowed
Works great here, loads almost instantly, must be related to your flash ver or computer/network? On Thu, Apr 23, 2009 at 5:59 AM, b_alen alen.ba...@gmail.com wrote: I get a blank screen for more than 10 seconds for the app that's about 700k in size. Only then the preloader appears and

RE: [flexcoders] argent help needed please

2009-04-24 Thread Tracy Spratt
Put your repeated content into a custom component and repeat that. Then your functionality will work as you expect. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of stinasius Sent:

RE: [flexcoders] Datagid : filterfunction

2009-04-24 Thread Tracy Spratt
Use a single AC, and just have both criteria in the filter function. Maybe have an instance variable indicating the mode, and in the filter, conditionally apply the deleted flag criteria. Tracy Spratt, Lariat Services, development services available _ From:

RE: [flexcoders] Re: Setting dateField.SelectedDate when component is disabled?

2009-04-24 Thread Tracy Spratt
What did the trace show? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Mic Sent: Friday, April 24, 2009 2:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Setting

[flexcoders] Application for windows mobile devices

2009-04-24 Thread soulflow132
Hi am new to flex . Yesterday i discovered that Flex Builder 3 allows to create Air application. My project is to create an application that will run on mobiles devices that use windows mobile as OS. So is it possible with Adobe air please ? If there is any tutorial or help it will be perfect.

[flexcoders] Tree structure in Advanced data grid

2009-04-24 Thread senthilkumarirtt
hi all, i need to select tree structure(in advanced datagrid) values parent or child depends on Combobox values Note: one combo box has parent values... Another one has corresponding child values... When i select these values ,it must be reflected in Tree (in Advanced datagrid) how to

RE: [flexcoders] modules, rendering event trigger

2009-04-24 Thread Alex Harui
Put a try catch block around the code that assumes it is ready and in the catch assign the listener Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of nospam

RE: [flexcoders] Desperately need advice on CVS or SourceSafe type apps

2009-04-24 Thread brad.bueche
Does the perforce eclipse plug-in work with the Flex Builder 3 eclipse version then? AND, does this question need to be asked? Wont ANY client that works with Eclipse (accounting for version dependencies) also work with the FB3 eclipse IDE? (Because I'm also thinking about SourceGear's Vault

[flexcoders] Re: IE8 problem

2009-04-24 Thread senthilkumarirtt
its not show any errorIts show empty page..Just my application background color appear.. --- In flexcoders@yahoogroups.com, Pedro Sena sena.pe...@... wrote: What do you mean by 'does not work on IE8' ? The swf is not loaded? Some specific error in IE ? Tell us more about the

Re: [flexcoders] Re: IE8 problem

2009-04-24 Thread Daniel Freiman
Right click on the app. Does it give you the normal context menu or the Movie not loaded context menu? - Daniel Freiman On Fri, Apr 24, 2009 at 9:00 AM, senthilkumarirtt senthilkumari...@yahoo.co.in wrote: its not show any errorIts show empty page..Just my application background

RE: [flexcoders] Re: IE8 problem

2009-04-24 Thread Tracy Spratt
Are you using frames? I have heard that IE8 has some different frame behavior. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of senthilkumarirtt Sent: Friday, April 24, 2009 9:01 AM To:

[flexcoders] Re: Flash/FLex gravity

2009-04-24 Thread flexaustin
Great example. Thx. Found the solution in the Making things move book on page 182. You can find it online here.

[flexcoders] No typed objects being returned

2009-04-24 Thread lampei
Anyone have any idea why my typed objects are coming back as ObjectProxy ? For one project I have set up, my objects were being returned correctly. I then called the same service from another project and it comes back as ObjectProxy. I have my aliases set up correctly in CF and in Flex, I

[flexcoders] Resizing browser makes my content jump off screen?

2009-04-24 Thread flexaustin
When I first built my application I set the width and height to 500 x 500. Now the requirements are to let the Flex application scale inside of the html when the user increases the window size. So I set the flex dimensions to width=100% and height=100%, but when the user increases the window

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-24 Thread Battershall, Jeff
Gregor, It does seem to be connected to the ComboBox issue - is this in the Adobe BugBase? It doesn't turn up in my searches. I can get the reference to release if I navigate to another module and then logout, but if I change the selected index of the combo box to greater than -1 before that,

[flexcoders] Re: argent help needed please

2009-04-24 Thread Amy
--- In flexcoders@yahoogroups.com, stinasius stinas...@... wrote: hi guys i have a problem with video display play button in flex 2. when i click the play button i get this error TypeError: Error #1006: play is not a function.at custom_comps::home/__playButton_click(). here is my code please

[flexcoders] Re: Setting dateField.SelectedDate when component is disabled?

2009-04-24 Thread Mic
trace(dtCmplxStartDate.toDateString(0)); will not compile :-) The way I am accessing/manipulating the DateField date is through .selectedDate. trace(dtCmplxStartDate.selectedDate); does give a valid date e.g. Tue Jul 14 00:00:00 GMT-0600 2009 whether or not the DateField is enabled - which

[flexcoders] Gumbo and ADG

2009-04-24 Thread markgoldin_2000
I have Flex 3 professional. But if compile a project with Gumbo I am getting: Severity and DescriptionPathResourceLocation Creation Time Id 1046: Type was not found or was not a compile-time constant: AdvancedDataGrid. Do I need to download something else?

[flexcoders] Is it just me or anyone else has the same problem

2009-04-24 Thread markgoldin_2000
Is it just me but it takes hours for my message to appear. Anyone has same problem?

[flexcoders] Re: HTTPService mistery

2009-04-24 Thread markgoldin_2000
I have compiled it with Gumbo, latest build, and it's even worse. Anyone, please share any idea. --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... wrote: Posting again... It is e4x. It has been identified, that it works fine for users who are local admins on the Web

[flexcoders] Type was not found or was not a compile-time constant: Matrix3D

2009-04-24 Thread markgoldin_2000
This is another message when I compile with Gumbo. I have set Player to 10. Please help.

RE: [flexcoders] Is it just me or anyone else has the same problem

2009-04-24 Thread Tracy Spratt
It is weird, I know, this has happened to me also. It finally just started working by itself one day. Others have had the problem as well, so no, it is not just you! Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com

RE: [flexcoders] Type was not found or was not a compile-time constant: Matrix3D

2009-04-24 Thread Tracy Spratt
Someone else mentioned that there were some namespaces that needed to be added to the application tag for gumbo. It was in the last few days if I recall correctly. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: HTTPService mistery

2009-04-24 Thread Tracy Spratt
How about fully and clearly re-describing the problem, the environments, and what you have tried so far. The thread history has gotten muddy. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

[flexcoders] Re: Is it just me or anyone else has the same problem

2009-04-24 Thread Erich Cervantez
It's not just you --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2...@... wrote: Is it just me but it takes hours for my message to appear. Anyone has same problem?

[flexcoders] Listening for events using SWFLoader on a sandboxed sub-application

2009-04-24 Thread Erich Cervantez
I have two separate Flex 3.3 applications, each of which is configured for remoting via LCDS. No problems there. The second, smaller application can ALSO be loaded into the first, larger application. In order for remoting to continue to work inside the second sub-application, I had to load

Re: [flexcoders] Re: Signed RSL penetration

2009-04-24 Thread Matt Chotin
Yes, that's what it means unfortunately. I don't have a info on timing, it's really up to them. On 4/24/09 12:51 AM, Kenneth Sutherland kenneth.sutherl...@realise.com wrote: Does that mean that any swf you create that uses the flex framework RSLs are not going to get indexed by

[flexcoders] Re: Listening for events using SWFLoader on a sandboxed sub-application

2009-04-24 Thread Erich Cervantez
Since both applications are in different security domains, it looks like I cannot access the content property of SWFLoader. I'll have to marshal objects across. So this brings up another question: it sounds to me as if marshalling is really just dispatching events from the sub-application's

RE: [flexcoders] Unloading Modules - Binding is the Enemy?

2009-04-24 Thread Alex Harui
Jeff, which version of Flex are you using? Can you make a test case in two 20-line mxml files? Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [flexcoders] Re: Listening for events using SWFLoader on a sandboxed sub-application

2009-04-24 Thread Alex Harui
Technically, marshalling is the conversion to the correct type with respect to the sandbox. For example, if I dispatch a FlexEvent across the sandbox boundary via the sharedEvents dispatcher, the listening code cannot look like: function myListener(event:FlexEvent):void because the two

[flexcoders] Re: HTTPService mistery

2009-04-24 Thread markgoldin_2000
Ok. I am having a problem with one of my Flex applications. When a regular user login is used it takes 10 or more times longer for data to appear then when I use mine which is a local admin on the web server box. I have been able to narrow the troubling application to a point that I could see

[flexcoders] Upgrading Flex Builder Pro (3.0.2) to SDK 3.3

2009-04-24 Thread _estatica_
Does anyone know how to upgrade FB Pro to support 3.3 SDK? I added SDK to FBPro, but API docs, help files, etc are still outdated... ..hints?

Re: [flexcoders] Working With Dynamic Datagrid

2009-04-24 Thread Jonathan Ackerman
I had a thought. Instead of doing it with a DataGrid, would I be better of doing this in an AdvancedDataGrid? Thanks!

[flexcoders] Scrollbars positionning is done too late to avoid flickering after an image scaling

2009-04-24 Thread JérémyR
Hi all, I have an issue with scrollbars positioning: I want to position them before the container is rendered to avoid some flickering. My goal is to scale an image and keep the focus on a given area on this image. Here is a simplified version of my code to expose the problem. The first slider

[flexcoders] Re: difference between stage and application?

2009-04-24 Thread michaeljonknight
I've used the Flash/Flex Component Kit and add my flash controls to a Canvas. But the Canvas will not change size with I set it's height and width. Is this expected? --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: You should use the Flash/Flex Component Kit to wrap your

[flexcoders] Good Flex skins

2009-04-24 Thread Alexander Livitz
Hello, I am searching for a great looking Flex skins/themes. Something similar in quality to FlashMint (http://www.flashmint.com). Most of the Flex skins I've seen so far look extremely amateurish, including ScaleNine. Can you point me to a high-quality Flex skins library? Does it even exist?

[flexcoders] swf security html embed

2009-04-24 Thread ivanposta
hi In site B (WWW.BBB.COM/mypage.html) I have embed into html page an swf from another site url (http://WWW.AAA.COM/test.swf). From site B I'm able to request all function in swf on www.aaa.com site. cross domain policy don't works with html emebed tag . this is an online example :

[flexcoders] .net+webservice+flex

2009-04-24 Thread tilak p
hiii     i need a sample code for saving and displaying data from database using .net webservice and flex   i need full working code of simple database project (insert,update,delete) say for example  Student table(Rollno,Name,Address)   how to creat webservice and access this through flex   thanks

[flexcoders] WebService Not Working In A Component (mystifying)

2009-04-24 Thread Chris Doherty
I have a web service in a component that is never returning. The call is made without any problem, but it never returns. I can use the same web service in a regular mxml application and it returns just great, but if I take the same code and put it into a component, based on a VBox, it never

[flexcoders] [MAC OSX] browseForOpen not able to select .app packages

2009-04-24 Thread jmccaffrey42
I am trying to create a way for my users to select an executable path on Mac OSX in my AIR application. On windows this is trivial because I can do browseForOpen with a .exe filter and have it work fine. On Mac this is slightly more complex as most applications use the .app package. when I

[flexcoders] Problem with capturing input using IME Japanese

2009-04-24 Thread philip_carlson
I am trying to pass keyboard input from Javascript into a Flex app being displayed with Internet Explorer with the input language set to Japanese (using Full Katakana) in the Windows XP language bar. After an initial keystroke, I am passing focus from Javascript to a text field in Flex. Once

[flexcoders] Mouse event capture by a lower level sprite

2009-04-24 Thread ACasualObserver
We have added two sprites to the stage that are just containers for other sprite. Let's call them S1 and S2. S1 is displayed on top of S2. We want children of S1 not to capture mouse events (which should be easy) but the children of S2 to capture mouse events even if they are behind the

[flexcoders] Re: Is it just me or anyone else has the same problem

2009-04-24 Thread aphexyuri
I know...at least its better than Apollocoders, where it takes at least a week to appear (if at all)! --- In flexcoders@yahoogroups.com, Erich Cervantez f...@... wrote: It's not just you --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2000@ wrote: Is it just me but it

[flexcoders] Pass repeater data to headerrenderer

2009-04-24 Thread Jack OMelia
Hi All, I have an accordion component, and I'm using a repeater to populate its children, with data coming from an XMLListCollection. I've created an external headerrenderer for the accordion header to display a multi-line title, but I cannot figure out how to pass the data for each repeated

[flexcoders] Re: No typed objects being returned

2009-04-24 Thread lampei
Ha, figured it out. I had actually blogged about this issue before :) I did not include the classes in my compiled project. Once I added them typing worked. Now a new issue has arisen: I have a Status object which is part of a Candidate object. When I inspect the data passed from

RE: [flexcoders] Re: HTTPService mistery

2009-04-24 Thread Tracy Spratt
Ok, good, am I correct in summarizing it by saying that an HTTPService call takes much longer between send() and calling the result handler if a user is not a local admin? That is bizarre. I cannot think of a reason whey that might occur, but will continue to think. Security/permissions

[flexcoders] Re: HTTPService mistery

2009-04-24 Thread markgoldin_2000
This is presisely correct. --- In flexcoders@yahoogroups.com, Tracy Spratt tr...@... wrote: Ok, good, am I correct in summarizing it by saying that an HTTPService call takes much longer between send() and calling the result handler if a user is not a local admin? That is bizarre. I

RE: [flexcoders] WebService Not Working In A Component (mystifying)

2009-04-24 Thread Tracy Spratt
.call is made without any problem . what do you mean, and how do you know? .it never returns . again, how do you know? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Chris

RE: [flexcoders] Pass repeater data to headerrenderer

2009-04-24 Thread Tracy Spratt
How would you get the data into the headerRenderer if there was no repeater involved? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jack OMelia Sent: Friday, April 24, 2009 10:03 PM

RE: [flexcoders] Re: difference between stage and application?

2009-04-24 Thread Alex Harui
What is it? The Canvas or one of your controls? The Canvas may not expand depending on how its properties are set. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

RE: [flexcoders] swf security html embed

2009-04-24 Thread Alex Harui
I'm not sure you can prevent someone from running your swf from Actionscript. You might be able to do something on your server to see who is requesting the SWF, but I think the main issue is whether that SWF is allowed to access your server data as that is usually the thing you want to

RE: [flexcoders] Mouse event capture by a lower level sprite

2009-04-24 Thread Alex Harui
S1.mouseEnabled = s1.mouseChildren = s1.buttonMode = false. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of ACasualObserver Sent: Friday, April 24, 2009