Re: [flexcoders] click and doubleClick on the same button?

2009-09-01 Thread Beau Scott
The only way I've been able to accomplish this is to use a timer to filter out a double click, and then ferry the original click event to an eventual click handler. The downside to this is the hardcoded timer delay doesn't reflect the user's system's double-click delay, and I'm not sure how to

Re: [flexcoders] Stopping double-click of a button 'bubble' to the datagrid row

2009-09-01 Thread Beau Scott
Event.stopPropagation() or stopImmediatePropagation() (depending on whether you want events on the current node to be executed before the event stops or not: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=horizontal xmlns:local=* mx:Script

Re: [flexcoders] Different Views | Same DataProvider

2009-08-31 Thread Beau Scott
The sorting is stored on the ListCollectionView dataProvider of each list control. If you set the list controls to share the same ListCollectionView, the sorting will be common. If you set the dataprovider to each control to be a non-ListCollectionView object (an array for example, instead of an

Re: [flexcoders] Manage a multi lingual application

2009-08-31 Thread Beau Scott
Depends on your approach, really. If you're looking to release mutiple distributions, each specific to a language (which really is about the only feasible option when dealing with multi-directional language support), you should start here:

Re: [flexcoders] Store files on the customer PC

2009-08-31 Thread Beau Scott
Here's the help page for this: http://livedocs.adobe.com/flex/3/html/help.html?content=17_Networking_and_communications_7.html You're on your own for server side, as it's gonna vary depending on your server technologies. Here's kind of the how-to for PHP:

Re: [flexcoders] about FB3_WWEJ_Plugin.exe

2009-08-30 Thread Beau Scott
Sure thing, start here: http://store1.adobe.com/cfusion/store/html/index.cfm?event=displayStoreSelectorkeyword=flex_builder_standard Flex Builder isn't free, you will need to purchase a license (which comes with a serial number). Beau On Fri, Aug 28, 2009 at 1:43 AM, 刘

Re: [flexcoders] Create a directory

2009-08-28 Thread Beau Scott
Flex is a client side technology, so what you're trying to do can't be done directly from Flex. Depending on your server technology, you can create a script (like php, jsp, perl, asp, etc.) and call that script's url from the Flex application and have it respond however you want. Beau On Fri,

Re: [flexcoders] DatagridColumn dataField question

2009-08-28 Thread Beau Scott
dataField is a property belonging to the objects within the datagrid's dataprovider. you don't access the array directly from your datagrid column, rather you just name the field to access. So in the case you gave of an array of strings, you'd only be able to display properties of the string

Re: [Spam] Re: [flexcoders] Creating a flex library project that referencesa remote SVN path?

2009-08-28 Thread Beau Scott
You should read up on SVN Externals: http://svnbook.red-bean.com/en/1.0/ch07s03.html Beau On Fri, Aug 28, 2009 at 9:55 AM, Nick Middleweek n...@middleweek.co.ukwrote: Ah nice one Jeffry... Thanks for your reply... Linked driectories... Ok, I'll look into those. Some guy at work has

[flexcoders] Access system color/style scheme from AIR app?

2009-08-28 Thread Beau Scott
Anyone know if this is yet possible in AIR? Beau

Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Beau Scott
You have to remember that flex renders according to the component lifecycle. There's a global timer that runs independent of everything else (according to the FPS the movie is playing) that more or less watches the objects in the display list and with each timer tick will re-render the objects

Re: [flexcoders] May I reset the disabledRanges for DateField ?

2009-08-27 Thread Beau Scott
Use a change event on startDate to reset the disabled date range on end date. Beau On Thu, Aug 27, 2009 at 8:51 AM, markflex2007 markflex2...@yahoo.comwrote: Hi, I use the following code to reset disabledRanges for DateField,but it doesn't work.Can you help me to fix this. Thanks mk

Re: [flexcoders] May I reset the disabledRanges for DateField ?

2009-08-27 Thread Beau Scott
AM, Beau Scott beau.sc...@gmail.com wrote: Use a change event on startDate to reset the disabled date range on end date. Beau On Thu, Aug 27, 2009 at 8:51 AM, markflex2007 markflex2...@yahoo.comwrote: Hi, I use the following code to reset disabledRanges for DateField,but it doesn't

Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Beau Scott
All this said... there are hacky ways to visually emulate it... It's effectively the same as using separate methods, but visually looks like what you're after. There are some scope caveats to it (this references the global scope rather than the current class, duplicate named variables are

Re: [flexcoders] Re: Find Actual Width After Setting Percent Width

2009-08-26 Thread Beau Scott
You'll need to invalidate the component's parent's size and revalidate it before your target's size is computed: ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[ import mx.core.UIComponent;

Re: [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-26 Thread Beau Scott
Alert.show is async, so move the code after Alert.show to the alertHandler method after your if/else block that's already in there. Beau On Wed, Aug 26, 2009 at 12:03 AM, Angelo Anolin angelo_ano...@yahoo.comwrote: Hi FlexCoders, This has puzzled me a bit.. I have the following scripts

Re: [flexcoders] input date include today?

2009-08-26 Thread Beau Scott
Set your range to end yesterday? mx:DateField disabledRanges={[{rangeEnd: new Date(new Date().getTime() - 8640)}]} / 8640 = 1 day in ms. Beau On Wed, Aug 26, 2009 at 10:40 AM, markflex2007 markflex2...@yahoo.comwrote: Hi I use the following and I can select date from tomorrow.

Re: [flexcoders] How to loop XML data and adding another attribute?

2009-08-25 Thread Beau Scott
for each(var address:XML in dataXML.address) { addre...@building_numeric = parseInt(addre...@building_number); } For more info on using XML in ActionScript 3 (iterating, collections, manipulation) see here: http://livedocs.adobe.com/flex/3/langref/XML.html and

Re: [flexcoders] why disabledRanges doesn't work

2009-08-25 Thread Beau Scott
Works fine for me. Are you thinking that new Date(2010,2,1) = Feb 1, 2010? Remeber that months are 0 based, so 2 = March. Beau On Tue, Aug 25, 2009 at 3:04 PM, markflex2007 markflex2...@yahoo.comwrote: I set the disabledRanges for DateField,but I can select any date,it seems

[flexcoders] All-In-One Flex/AIR SDK Mac/Win/Lin Package?

2009-08-25 Thread Beau Scott
We currently run a full spectrum of development and testing environments for our software (Multi-Linux, Mac and Windows), and our automated build/test server runs linux. In an effort to ensure all engineers and build servers are using the same SDK versions, we have an SDK repository and externals

Re: [flexcoders] Horizontal List - the Images don't appear - help?!

2009-07-23 Thread Beau Scott
mx:Object label=Yahoo icon= http://l.yimg.com/a/i/ww/beta/y3.gif/ /mx:Array /mx:dataProvider /mx:HorizontalList Hope this helps, Beau Scott On Thu, Jul 23, 2009 at 8:55 AM, jamiebadman jamie.bad...@db.com wrote: Hi! I'm trying to display images in a Horizontal

Re: [flexcoders] FileReference.load()

2009-07-23 Thread Beau Scott
Err... extra paren in there. if(fileReference.hasOwnProperty(load)) fileReference[load](); Beau On Thu, Jul 23, 2009 at 12:23 PM, Beau Scott beau.sc...@gmail.com wrote: if(fileReference.hasOwnProperty('load')) fileReference([load'](); Beau On Thu, Jul 23, 2009 at 12:18 PM

Re: [flexcoders] FileReference.load()

2009-07-23 Thread Beau Scott
if(fileReference.hasOwnProperty('load')) fileReference([load'](); Beau On Thu, Jul 23, 2009 at 12:18 PM, Richard Rodseth rrods...@gmail.comwrote: Unfortunately, if (load in fileReference) does not succeed unless I specify Player 10 in the build settings. On Thu, Jul 23, 2009 at

Re: [flexcoders] FileReference.load()

2009-07-23 Thread Beau Scott
23, 2009 at 11:23 AM, Beau Scott beau.sc...@gmail.com wrote: if(fileReference.hasOwnProperty('load')) fileReference([load'](); Beau On Thu, Jul 23, 2009 at 12:18 PM, Richard Rodseth rrods...@gmail.comwrote: Unfortunately, if (load in fileReference) does not succeed unless I

Re: [flexcoders] FileReference.load()

2009-07-23 Thread Beau Scott
].readUTFBytes(fileReference[data].length); } On Thu, Jul 23, 2009 at 11:51 AM, Beau Scott beau.sc...@gmail.com wrote: Works fine for me.I just tried it in both 9.0.124 and 10 players: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

Re: [flexcoders] Perplexing regex/replace() issue

2009-03-16 Thread Beau Scott
Kinda cheated for one line but it works: var s:String = t.toLowerCase().replace(/-([a-z])/g, function():String { return arguments[1].toUpperCase();}); On Mon, Mar 16, 2009 at 11:44 AM, jimmy5804 jimmy5...@yahoo.com wrote: This seems simple, but I can't figure it out. I have some input I

Re: [flexcoders] Re: datefield issue

2009-03-16 Thread Beau Scott
Months are 0-based in ecmascript (JS, AS, etc.) Date objects. 0 = jan., 1 = feb., etc. http://livedocs.adobe.com/flex/3/langref/Date.html#month Use a date formatter if you need to format this to a string and don't want to manually convert the month offset. (probably a good idea to use the date

Re: [flexcoders] Re: datefield issue

2009-03-16 Thread Beau Scott
wait, my bad, I misread. disregard my previous remark. On Mon, Mar 16, 2009 at 2:26 PM, Beau Scott beau.sc...@gmail.com wrote: Months are 0-based in ecmascript (JS, AS, etc.) Date objects. 0 = jan., 1 = feb., etc. http://livedocs.adobe.com/flex/3/langref/Date.html#month Use a date

Re: [flexcoders] Automation updates with 3.3 SDK?

2009-03-13 Thread Beau Scott
/flexdownloads/ Matt On 3/11/09 1:10 PM, Beau Scott beau.sc...@gmail.com wrote: Just curious if the automation libraries were updated as well? and if so, where to obtain them. -- Beau D. Scott Software Engineer

Re: [flexcoders] Automation updates with 3.3 SDK?

2009-03-13 Thread Beau Scott
/Download+Flex+3 , to the 3.2 sdk zip goes to the main flex product download page rather than to where it should: http://opensource.adobe.com/wiki/display/flexsdk/download?build=3.2.0.3958pkgtype=1 Beau On Fri, Mar 13, 2009 at 8:41 AM, Beau Scott beau.sc...@gmail.com wrote: K, I'm updating from 3.1

[flexcoders] Automation updates with 3.3 SDK?

2009-03-11 Thread Beau Scott
Just curious if the automation libraries were updated as well? and if so, where to obtain them. -- Beau D. Scott Software Engineer

[flexcoders] 3.3 SDK AIR debugging issues

2009-03-06 Thread Beau Scott
I just updated our code base to use Flex SDK 3.3 AIR 1.5.1 (thanks to some weird dependency issue that occured when updating the system's AIR runtime to 1.5.1 and not the debugger... real nice), and am now having horrible issues debugging on all platforms. We primarily develop on Linux, and are

Re: [flexcoders] 3.3 SDK AIR debugging issues

2009-03-06 Thread Beau Scott
Excellent, thanks. On Fri, Mar 6, 2009 at 10:54 AM, Matt Chotin mcho...@adobe.com wrote: We’re working with the AIR team on this, *FB-16153 * Matt On 3/6/09 9:17 AM, Beau Scott beau.sc...@gmail.com wrote: I just updated our code base to use Flex SDK 3.3 AIR 1.5.1 (thanks

RE: [flexcoders] Bug or bad programming?

2008-05-20 Thread Beau Scott
It’s not wrapped within a CDATA tag, so it has to be valid XML in order to be parsed. Use amp;amp; ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:CheckBox id=ch1 / mx:CheckBox id=ch2 / mx:Button

RE: [flexcoders] Flash Player 9.0.124.0 - Web Services Stopped Working

2008-04-14 Thread Beau Scott
Without knowing your code details it would be hard to pinpoint exactly which change is causing your issues, but you should read the change log as 9.0.124 was a security update and RPC/SOAP calls are often the targets of security updates. HYPERLINK

RE: [flexcoders] FB2 Keyboard Shortcut to insert variables/member names?

2008-03-21 Thread Beau Scott
Control + Space For a list of other hotkeys, press Control+Shift+L Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Friday, March 21, 2008 3:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] FB2 Keyboard Shortcut to insert

RE: [flexcoders] Presenting at a user group meet regarding Flex + PHP...

2008-03-14 Thread Beau Scott
PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, March 14, 2008 7:19 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Presenting at a user group meet regarding Flex + PHP... On Thu, Mar 13, 2008 at 03:02:34PM -0600, Beau Scott wrote: If ya?ll have any other topic recommendations

RE: [flexcoders] Re: need help with XML predicate filtering

2008-03-14 Thread Beau Scott
What does the actual XML look like? Do you by chance have a namespace in the xml that you haven’t set to use in flex? Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hoytlee2000 Sent: Friday, March 14, 2008 2:06 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Presenting at a user group meet regarding Flex + PHP...

2008-03-13 Thread Beau Scott
it with Cairngorm using some of the basic Cairngorm examples. If ya’ll have any other topic recommendations, I’m all ears J Thanks Beau Scott No virus found in this outgoing message. Checked by AVG. Version: 7.5.519 / Virus Database: 269.21.7/1328 - Release Date: 3/13/2008 11:31 AM

[flexcoders] Kiosk support in AIR?

2008-03-12 Thread Beau Scott
it to behave similarly, but there would be some platform-specific logic in there that would defeat the purpose of using a platform independent vm/framework… Thanks in advance, Beau Scott No virus found in this outgoing message. Checked by AVG. Version: 7.5.518 / Virus Database: 269.21.7/1327

RE: [flexcoders] AS3 Q: unset member?

2008-03-05 Thread Beau Scott
delete o.foo; Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Wednesday, March 05, 2008 8:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] AS3 Q: unset member? Is it possible to unset a variable? Say I have an object

RE: [flexcoders] file upload

2008-03-04 Thread Beau Scott
Nothing quite as convenient as a file input, but definitely doable. You’ll want to take a look at the FileReference object: HYPERLINK http://livedocs.adobe.com/flex/3/langref/flash/net/FileReference.htmlhttp: //livedocs.adobe.com/flex/3/langref/flash/net/FileReference.html Beau From:

RE: [flexcoders] A persistent logon system in flex?

2008-03-04 Thread Beau Scott
Store it in a local SharedObject maybe? I’d make a hash that could be validated by whatever your authentication system is rather than the clear text user/pass though. Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mbhoisie Sent: Tuesday, March 04, 2008

RE: [flexcoders] flexbuilder code formatter

2008-03-03 Thread Beau Scott
] flexbuilder code formatter On Friday 29 Feb 2008, Beau Scott wrote: If you find something that works, PLEASE let me know. I've resorted to trying to write an Eclipse AS3 formatter plug-in myself. Are you looking to build a 'code beautifier', or just something that can give basic syntax high

RE: [flexcoders] Flex 3 API wall posters?

2008-03-03 Thread Beau Scott
Yes, the released them a few weeks ago: HYPERLINK http://weblogs.macromedia.com/flexteam/archives/2008/02/sneak_peak_at_f.cfm http://weblogs.macromedia.com/flexteam/archives/2008/02/sneak_peak_at_f.cfm Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Access MySQL directly from Flex client

2008-03-03 Thread Beau Scott
Providing direct access to your DB via a flex app over the web is extremely insecure, even in “safe intranents” – you’d be surprised what bored employees are capable of. Best approach is to use a thing service layer, possibly something like

RE: [flexcoders] Re: Flex Builder 3 vs SDK and Charting

2008-03-03 Thread Beau Scott
You just have to include the charting SWC in your lib path (either the command line option or your custom flex-config.xml file) and make sure your charting and fb3 license code are in your flex-config.xml file. Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] flexbuilder code formatter

2008-02-29 Thread Beau Scott
Have you tried Jalopy? Their site (and sales rep that I just emailed) says it doesn’t work with ActionScript. This was one feature of FB3 that I was REALLY hoping would make it. The only thing I’ve found that even remotely works well is PolyStyle, but it’s not a real IDE integration (you

RE: [flexcoders] flexbuilder code formatter

2008-02-29 Thread Beau Scott
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] flexbuilder code formatter Oh, I assumed it would work with AS3 since it's identical to Java syntax - Original Message From: Beau Scott [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, February 29, 2008 11:21:20 AM

RE: [flexcoders] Re: flexbuilder code formatter

2008-02-29 Thread Beau Scott
ActionScript 3 and MXML files. You might want to give it a shot? Just my opinion. HYPERLINK http://www.aptana.com/http://www.aptana.com/ -U.T. --- In HYPERLINK mailto:flexcoders%40yahoogroups.comflexcoders@yahoogroups.com, Beau Scott [EMAIL PROTECTED] wrote: Similar, not identical. If you find

RE: [flexcoders] Dynamically Load Applications?

2008-02-27 Thread Beau Scott
Can I do this type of dynamic loading/unloading in Flex Yes. Take a look at modules. I actually made a blog post illustrating this last week. HYPERLINK http://www.beauscott.com/2008/02/20/using-flex-modules-to-load-dynamic-appl

RE: [flexcoders] SWF file size

2008-02-27 Thread Beau Scott
Flex framework Flex 3 allows you to use a localy cached flex framework by specifying the flex framework as a RSL. HYPERLINK http://www.onflex.org/ted/2008/01/flex-3-framework-caching.phphttp://www.o nflex.org/ted/2008/01/flex-3-framework-caching.php To enable this, go to your Flex

RE: [flexcoders] Flex 3 and AIR 1 are now live!

2008-02-25 Thread Beau Scott
specifically? We're jumping the gun a little, the site is still being pushed :-) On 2/25/08 12:35 AM, Beau Scott HYPERLINK mailto:beau.scott%40gmail.com[EMAIL PROTECTED] wrote: Download link is broken :( for flex builder 3 Beau From: HYPERLINK mailto:flexcoders%40yahoogroups.comflexcoders@yahoogroups.com

RE: [flexcoders] No Serial Numbers for Flex Builder 3?

2008-02-25 Thread Beau Scott
Good thing there’s a 60-day trial J From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Whitelock Sent: Monday, February 25, 2008 7:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] No Serial Numbers for Flex Builder 3? I purchased the upgrade to

RE: [flexcoders] Flex 3 and AIR 1 are now live!

2008-02-25 Thread Beau Scott
? VELO 2008/2/25 Beau Scott HYPERLINK mailto:beau.scott%40gmail.com[EMAIL PROTECTED]: Actually, it seems that the plug-in link is still broken: HYPERLINK http://www.adobe.com/cfusion/tdrc/index.cfm?product=flex_eclipseloc=en_us; http://www.adobe.com/cfusion/tdrc/index.cfm?product=flex_eclipseloc

RE: [flexcoders] Flex 3 and AIR 1 are now live!

2008-02-24 Thread Beau Scott
Download link is broken L for flex builder 3 Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Sunday, February 24, 2008 10:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 3 and AIR 1 are now live! HYPERLINK

RE: [flexcoders] Flex 3 and AIR 1 are now live!

2008-02-24 Thread Beau Scott
Nevermind, it’s working now ! Thanks and congrats! Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Sunday, February 24, 2008 10:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 3 and AIR 1 are now live! HYPERLINK

RE: [flexcoders] Flex 3 and AIR 1 are now live!

2008-02-24 Thread Beau Scott
12:35 AM, Beau Scott HYPERLINK mailto:beau.scott%40gmail.com[EMAIL PROTECTED] wrote: Download link is broken :( for flex builder 3 Beau From: HYPERLINK mailto:flexcoders%40yahoogroups.comflexcoders@yahoogroups.com [mailto:HYPERLINK mailto:flexcoders%40yahoogroups.com[EMAIL PROTECTED] On Behalf

RE: [flexcoders] HTTP service, XML with namespaces

2008-02-22 Thread Beau Scott
Try this: public namespace itunesNS = http://www.itunes.com/;; use namespace itunesNS; Obviously you’d need to change what the itunes namespace value really is. Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bobby_world Sent: Friday,

RE: [flexcoders] How to turn off exception messages in release version.

2008-02-22 Thread Beau Scott
I’ve always wondered and have been too lazy to try, but if you don’t have the debug version of the flash play installed, do you still get the exception messages? Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Andrews Sent: Friday, February 22, 2008 10:43

RE: [flexcoders] Where did the value go?

2008-02-22 Thread Beau Scott
maybe try event.currentTarget. True, your target could have changed, and using currentTarget will ensure that you are referencing the DataGrid. and how are you calling selectSlide if it is private or is that a mistake? If it’s all in the same MXML, it’s accessible as private. Beau

RE: [flexcoders] Where did the value go?

2008-02-22 Thread Beau Scott
Your type cast might be failing, causing pSlide to be null. Try typing pSlide to Object and remove the type cast in the change event handler, this will at least give you an idea of what’s happening. Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] How do I navigate to an mxml file from a login file?

2008-02-21 Thread Beau Scott
-at-login/ It’s rough, and might be buggy, but it’s at least illustrates the approach. Beau Scott _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sirickhoop Sent: Mittwoch, 20. Februar 2008 21:08 To: flexcoders@yahoogroups.com Subject: [flexcoders] How do I

RE: [flexcoders] closeButton.explicitHeight

2008-02-21 Thread Beau Scott
Heh, good catch. Beta is as Beta does ;) Is it causing you errors or is it something you just noticed? Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Decoursey Sent: Thursday, February 21, 2008 11:08 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] CDATA XML element inside mxml

2008-02-21 Thread Beau Scott
this: var tmpStr:XML = new XML(![CDATA[asdf]]+); Note that I’ve separated “]]” into “]]”+”” Beau Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hoytlee2000 Sent: Thursday, February 21, 2008 2:44 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Error- textDecoration

2008-02-21 Thread Beau Scott
Do you have a style declaration in your class called “textDecoration” at the top? [Style(name=”textDecoration” … If so, the error is saying that this style declaration has already been made in the parenting class UITextField Beau _ From: flexcoders@yahoogroups.com [mailto:[EMAIL