[flexcoders] Re: Does Drag Drop Only Update the DataProvider?

2007-05-21 Thread Geoffrey
. Binding to private variables is not recommended, but not the problem either. Can you fit an entire example in two screens of text? If so, post it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Monday, May

[flexcoders] Re: Does Drag Drop Only Update the DataProvider?

2007-05-21 Thread Geoffrey
into the ArrayCollection should get modified when you drop into the dg. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Monday, May 21, 2007 2:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Does Drag

[flexcoders] Re: Does Drag Drop Only Update the DataProvider?

2007-05-18 Thread Geoffrey
__employees? Can you post a mini-example in a couple of screenfuls of text? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Thursday, May 17, 2007 6:11 PM To: flexcoders@yahoogroups.com Subject

[flexcoders] Does Drag Drop Only Update the DataProvider?

2007-05-17 Thread Geoffrey
I have a DataGrid that has a dataProvider bound to an ArrayCollection. code mx:DataGrid id=dgEmployees dataProvider={__employees} ... /code I also have another DataGrid (dgAllEmployees) that is within a popup, which I use as a source for Drag Drop operations to populate the dgEmployee

[flexcoders] Getting Parent's Style

2007-05-15 Thread Geoffrey
I'm converting some Flex1.5 code to flex 2.0. One of the classes (a commonly used custom component) uses the following to set the background color to that of the parent container: __labelCanvas.setStyle(backgroundColor)=_parent.getStyle(backgroundCo\ lor); This doesn't work in Flex2.0, nor does

[flexcoders] Re: Getting Parent's Style

2007-05-15 Thread Geoffrey
).getStyle(backgroundColor); Or IStyleClient(parent).getStyle(backgroundColor); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Tuesday, May 15, 2007 10:10 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: Nested Repeater Issues

2007-04-04 Thread Geoffrey
Bump --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I have a Repeater of CheckBoxes, which may or may not have a sublayer of CheckBoxes. It should look something like: [] archive 1 [] archive 2 [] dataSource 1 [] dataSource 2

[flexcoders] Nested Repeater Issues

2007-04-03 Thread Geoffrey
I have a Repeater of CheckBoxes, which may or may not have a sublayer of CheckBoxes. It should look something like: [] archive 1 [] archive 2 [] dataSource 1 [] dataSource 2 [] dataSource 3 [] archive 3 By default all CheckBoxes are unselected, and any

RE: [flexcoders] [Bindable] object not updating on changes

2007-04-02 Thread Geoffrey Williams
Use mx.utils.ObjectProxy. The way you have it, only setting the value of entryValueData fill fire an event. [Bindable] public var entryValueData : ObjectProxy = new ObjectProxy ({redValue:0, greenValue:4, blueValue:0}); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] How do I read Response after FileReference uploads a file?

2007-03-30 Thread Geoffrey Williams
fileReference.addEventListener (DataEvent.UPLOAD_COMPLETE_DATA, eventHandler); The DataEvent dispatched will have a data property with the data you are looking for. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thegators_2002 Sent: Friday, March 30, 2007 11:36 AM

RE: [flexcoders] How do I read Response after FileReference uploads a file?

2007-03-30 Thread Geoffrey Williams
Just to note, this functionality was only recently added to FP9 and was not available in previous versions of the player. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Friday, March 30, 2007 11:43 AM To: flexcoders@yahoogroups.com Subject: RE:

RE: [flexcoders] Re: Is anybody else getting duplicate messages?

2007-03-29 Thread Geoffrey Williams
they are posted ? After I made several valid posts this delay was much less. --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Geoffrey Williams [EMAIL PROTECTED] wrote: Yup, yup. This doesn't seem to be the only yahoo group affected either.

RE: [flexcoders] Is anybody else getting duplicate messages?

2007-03-28 Thread Geoffrey Williams
Yup, yup. This doesn't seem to be the only yahoo group affected either. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul DeCoursey Sent: Wednesday, March 28, 2007 4:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is anybody else getting duplicate

[flexcoders] Re: E4X - Copy attributes

2007-03-19 Thread Geoffrey Williams
You want to use brackets not braces and use the name () method. for each (var a : XML in [EMAIL PROTECTED]) { [EMAIL PROTECTED] ()] = a; } --- In flexcoders@yahoogroups.com, pgp.coppens [EMAIL PROTECTED] wrote: Hello, I would like to copy a number of attributes from one element to

[flexcoders] Re: E4X descendent operator return type?

2007-03-19 Thread Geoffrey Williams
It returns an empty XMLList. //var result : XML = XML (e.result); //var result : XML = responsefault//response; var result : XML = responseuser//response; if (result.user.length ()) trace(Yippee!);

[flexcoders] Re: void as node name in a XML...reserved keyword!!!???

2007-01-30 Thread Geoffrey Williams
trace (test.object[void].(@property == 'equation').string); trace (test.object.elements (void).(@property == 'equation').string); --- In flexcoders@yahoogroups.com, lruinelli [EMAIL PROTECTED] wrote: ciao! the expression: test.object.void.(@property=='equation').string should has the

[flexcoders] asdoc help

2007-01-24 Thread Geoffrey
I'm trying to use asdoc (from Adobe Labs http://labs.adobe.com/wiki/index.php/ASDoc ) to document our API. I'm running across the following error: C:\workspace\components\tools\RubberbandTool.mxml: Error: Unable to locate specified base class 'components.tools.Tool' for component class

[flexcoders] Re: Box layout question - two children with 100% width

2007-01-24 Thread Geoffrey
--- In flexcoders@yahoogroups.com, Collin Peters [EMAIL PROTECTED] wrote: I am having some layout problems in my app. It is fairly complex with many levels of nesting of panels, viewstacks, boxes, etc... In the end I have an HBox with a width of '100%'. I assume this means take up 100% of

[flexcoders] Re: Annoying problem - urgent!!!

2007-01-18 Thread Geoffrey Williams
Did you try a Project Clean...? --- In flexcoders@yahoogroups.com, Lieven Cardoen [EMAIL PROTECTED] wrote: I have a really annoying problem. If I run or debug my flex application, it keeps on giving me a version of yesterday. Flex won't compile a new swf... Lieven Cardoen

[flexcoders] Re: doLater in Flex2? is it gone?

2006-11-01 Thread Geoffrey Williams
callLater () http://livedocs.macromedia.com/flex/2/docs/1438.html --- In flexcoders@yahoogroups.com, Mark Piller [EMAIL PROTECTED] wrote: Does anyone know what happened with doLater() in Flex2? I cannot seem to find any references to the function in the language reference

[flexcoders] Re: AS to Java Translation Problems

2006-10-10 Thread Geoffrey
if I picked up on this earlier instead of banging my head against the monitor! --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I gotcha. I'll pass this on to the server-side engineers and see what they think. Thanks! Geoff --- In flexcoders@yahoogroups.com, Doug

[flexcoders] Re: AS to Java Translation Problems

2006-10-09 Thread Geoffrey
Could someone voice an opinion on this? Please. --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: ENV: Flex 1.5 served from WebSphere6.1 All of our Java objects used to use java.util.Date for date properties, but we had to convert them to java.util.Calendar. Since Flex 1.5 doesn't

[flexcoders] Re: AS to Java Translation Problems

2006-10-09 Thread Geoffrey
get your meaning. Thanks, Geoff --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: Geoffrey, you may or may not find this to be helpful but I've found it much easier to deal with times as longs than as instances of various date classes (java.util.Date, java.sql.Date

[flexcoders] Re: AS to Java Translation Problems

2006-10-06 Thread Geoffrey
No ideas? Is this something no one has tried before? --- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: ENV: Flex 1.5 served from WebSphere6.1 All of our Java objects used to use java.util.Date for date properties, but we had to convert them to java.util.Calendar. Since

[flexcoders] AS to Java Translation Problems

2006-10-05 Thread Geoffrey
ENV: Flex 1.5 served from WebSphere6.1 All of our Java objects used to use java.util.Date for date properties, but we had to convert them to java.util.Calendar. Since Flex 1.5 doesn't support mapping from AS Date to Java Calendar and vise versa, I came up with another way of doing it.

[flexcoders] Timeline Slider

2006-09-08 Thread Geoffrey
I'm trying to figure out how to make a custom slider... at least I think it's going to be a custom slider. What I want is a slider that allows me to select a time range based on a 24 hour clock. Here are the requirements: -Two thums on the slider(min, max) -Min value of 00:00:00 -Max value of

[flexcoders] Re: Error 1009 in Flex 2

2006-09-08 Thread Geoffrey Williams
'event.result as Array' is returning null because event.result is not an Array. Is it an ArrayCollection or XML/XMLList perhaps? --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: I'm playing around with a remote object and in the handleResult function Flex is giving me

[flexcoders] Re: ListCollectionView.contains( )

2006-08-24 Thread Geoffrey Williams
- Returns whether the view contains the specified object. Unlike the IViewCursor.findxxx methods, this search is succesful only if it finds an item that exactly matches the parameter. trace ({label:keyword} == {label:keyword}); // false You can sort the collection, create a view cursor and use

[flexcoders] Re: ASDoc ignores Bindable properties?

2006-08-18 Thread Geoffrey Williams
I came up against this a little earlier today. Make sure your comments are right before the method. Wrong: /** * Property */ [Bindable] public var property : Object; Right: [Bindable] /** * Property */ public var property : Object; I think that should do it. --- In

[flexcoders] Re: ASDoc now available on Labs

2006-08-14 Thread Geoffrey Williams
Any Idea what would fire off the following: Error: The definition is in circular inheritance. I can get it going by specifying individual classes but when I use - doc-sources I get an output of a few of those errors. --- In flexcoders@yahoogroups.com, Brian Deitte [EMAIL PROTECTED] wrote: And

[flexcoders] Re: loading xml with AS3

2006-08-12 Thread Geoffrey Williams
URLLoader, HTTPService c http://livedocs.macromedia.com/flex/2/docs/1920.html --- In flexcoders@yahoogroups.com, aaron smith [EMAIL PROTECTED] wrote: I'm having troubles figuring out where the functionality to load xml went. What classes do i use to load xml? thanks --

[flexcoders] Re: getURL()

2006-08-03 Thread Geoffrey Williams
Well, seeing as you're not posting the variables, you can try ExternalInterface. var url : String = http://adobe.com;; var vars : URLVariables = new URLVariables (); vars.userID = userID; vars.userName = userName; vars.sessionID = sessionID; url += ? + String (vars); var target : String =

[flexcoders] Re: problem using httpservice to fetch xml

2006-08-01 Thread Geoffrey Williams
srv.lastResult.list.employee is already an ArrayCollection. Try: employees = ArrayCollection (srv.lastResult.list.employee); --- In flexcoders@yahoogroups.com, pateyog [EMAIL PROTECTED] wrote: I am facing a problem with a code which used to work with flex beta 2.0 but has stopped working when

[flexcoders] Re: deleting a node with e4x

2006-07-14 Thread Geoffrey Williams
Use the delete operator. delete report.part[1].subpart[0].subsection[0]; --- In flexcoders@yahoogroups.com, Jeff Tapper [EMAIL PROTECTED] wrote: does anyone know the syntax to remove a particular node from an xml object using e4x? Working with a structure like this, I want to be able to

[flexcoders] Re: File Upload

2006-07-14 Thread Geoffrey Williams
mx:Button label=Upload... click=new FileReferenceList ().browse (); / --- In flexcoders@yahoogroups.com, Ethan Miller [EMAIL PROTECTED] wrote: I'm trying to quickly demonstrate the ability to upload a file. Just need a button with a click action that invokes a file browser in the

[flexcoders] Re: Pass value Using getURL() in MXML 2

2006-07-13 Thread Geoffrey Williams
getURL is gone in AS3. navigateToURL (new URLRequest (QueryStringSample.mxml)); --- In flexcoders@yahoogroups.com, k_abdul_jabbar [EMAIL PROTECTED] wrote: I have pasted a piece of code to pass value using query string,I am sure there wouldn't be any problem with code.But I get error calling

[flexcoders] Re: FileReference and mimetypes

2006-07-11 Thread Geoffrey Williams
Changing the content type is not supported in uploads. This is documented in the URLRequest class. --- In flexcoders@yahoogroups.com, pmarstonuoa [EMAIL PROTECTED] wrote: Hi Jeff, I'm having the same problem. According to the Flex2 documentation the content type defaults to

[flexcoders] Re: Addressing buried children in XML with default namespace- an easier way?

2006-07-10 Thread Geoffrey Williams
Here's a couple: // namespace constant public namespace default_ns = http://fmr.com/BackOffice/PseSearch;; // init test public function init () : void { var xml : XML = PseSearchResponse xmlns=http://fmr.com/BackOffice/PseSearch; SearchPlan

[flexcoders] Re: Javadoc like comments for AS3

2006-06-24 Thread Geoffrey Williams
While there is no doc generating tool available at the moment, you can auto insert a template comment of sorts. Source Add ASDoc Comment. Ctrl+Shift+D --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: I am wondering what the MM strategy is for commenting AS3. I would

[flexcoders] Re: e4x filtering question

2006-06-21 Thread Geoffrey Williams
Here you go: var employees:XML = employees employee name=joe mark department id=id1/ address city=miami state=florida/ /employee employee name=joe mark address city=san francisco state=california/ /employee

[flexcoders] Re: Using HTTPService in a function

2006-06-17 Thread Geoffrey Williams
Are you importing the class? import mx.rpc.events.ResultEvent; --- In flexcoders@yahoogroups.com, NZEYIMANA Emery Fabrice [EMAIL PROTECTED] wrote: Thanks Martine, I have read from the manuals and tried to do the following: private function SampleFunction():void { var

[flexcoders] Re: DTD Schema for Flex 2

2006-06-15 Thread Geoffrey Williams
It is valid XML. There are 'limits' to what you can do with the schema when compared to how dynamic Flex can be. Hi, there are no plans at the moment to provide an xsd for Flex 2. It's something we can consider for a future release or maybe the community will write one that they find useful.

[flexcoders] Re: Using E4X with attributes in XML tags

2006-06-08 Thread Geoffrey Williams
?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* creationComplete=init () mx:Script ![CDATA[ public function init ():void { var xml_object:XML = Item

[flexcoders] Re: why states doesn't change in flex2 beta3?

2006-05-25 Thread Geoffrey Williams
Use relativeTo instead of target: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml xmlns=* layout=absolute creationComplete=initData() mx:Script ![CDATA[ private var welcomeScreen:denemeci; private function initData():void{ currentState='first'; }

[flexcoders] Re: why states doesn't change in flex2 beta3?

2006-05-25 Thread Geoffrey Williams
Just a syntax change from B2 to B3. 'target' is still a valid attribute, but it is used for something else. --- In flexcoders@yahoogroups.com, oktay nba [EMAIL PROTECTED] wrote: thnx Geoffrey, it ran. but still i dont get it why target didn't answer oktay caglar On 5/25/06

[flexcoders] Re: FB2 :: Flex Library Project :: Fastest way to rebuild an SWC

2006-05-25 Thread Geoffrey Williams
Are the projects linked to each other? Properties Project References And you're using 'Build Automatically'? Those two might make the issue go away automagically. Otherwise try doing a Clean on all projects. --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote:

[flexcoders] Re: e4x XML Class: How to update a text node?

2006-05-25 Thread Geoffrey Williams
var xml:XML = rootnodetext1/nodenodetext2/node/root; xml.node[0] = textOne; xml.node[1] = textTwo; trace (xml); --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: I can read, add and delete text nodes, but how can I update/modify one? Should I use replace()? I

[flexcoders] Re: menu control in flex 2.0 beta 3

2006-05-24 Thread Geoffrey Williams
Remove the braces. change=mainViewStackHelper.getSearchResultView(event) --- In flexcoders@yahoogroups.com, deepu_verma [EMAIL PROTECTED] wrote: Following is my code and I am trying to capture the change event. But it seems that the change event does not trigger for menu bar controls

[flexcoders] Re: is delete really the best/only way to remove a node in e4x?

2006-05-24 Thread Geoffrey Williams
While it is documented here: http://livedocs.macromedia.com/labs/1/flex20beta3/langref/operators.h tml#delete_(XML) There should be some sort of reference to it in the XML/XMLList docs. The syntax is compliant with the spec. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED]

[flexcoders] Re: How to use e4x

2006-05-22 Thread Geoffrey Williams
The xml returned defines it's own namespace: private function onInit ():void{ var loader:URLLoader = new URLLoader(); var request:URLRequest = new URLRequest (http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml); loader.addEventListener(Event.COMPLETE, onComplete);

[flexcoders] Re: Flex 2 Beta 3

2006-05-15 Thread Geoffrey Williams
HTTPService.lastResult See here for changes: http://labs.adobe.com/wiki/index.php/Flex:Beta_2_to_Beta_3_Changes --- In flexcoders@yahoogroups.com, mepaninaresh [EMAIL PROTECTED] wrote: I tried to upgrade my application from Flex 2 Beta 2. I have a few of these errors :- Access of

RE: [flexcoders] WebService Flex 2.0

2006-05-08 Thread Geoffrey Williams
WebService calls are asynchronous... [NotTested]: mx:Script ![CDATA[ public function GetHelloWorld():void { CustomerServices.HelloWorldws.addEventListener(result, HelloWorldwsResult); CustomerServices.HelloWorldws.send (); } public function HelloWorldwsResult(event:ResultEvent):void

[flexcoders] Re: Flex 2 beta 3 available

2006-05-08 Thread Geoffrey Williams
http://labs.adobe.com/wiki/index.php/Flex:Beta_2_to_Beta_3_Changes import flash.utils.Timer --- In flexcoders@yahoogroups.com, JB [EMAIL PROTECTED] wrote: Hi, I just downloaded the new flash player 9(mac version), but I get this error: VerifyError: Error #1014: Class flash.util::Timer

[flexcoders] Re: RemoteObject Issue

2006-04-19 Thread Geoffrey
the service object exists, either way should work. I hope this helps, and another thing to note is that the work you're doing now to implement these design patterns will pay off down the road - especially if you're implementing a large-scale app. Doug --- In flexcoders@yahoogroups.com, Geoffrey

[flexcoders] RemoteObject Issue

2006-04-18 Thread Geoffrey
I've been trying for the last few days to get RemoteObject to work, but with little luck. I've searched this site, and have tried to implement the examples found in developing rich clients with macromedia FLEX. To make matters more confusing, I've also tried to implement the

[flexcoders] Re: RemoteObject Issue

2006-04-18 Thread Geoffrey
you never create a dependency on the class name (as mxmlc will optimize and remove unreferenced class definitions). An import statement is not enough to create a dependency. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent

[flexcoders] Re: RemoteObject Issue

2006-04-18 Thread Geoffrey
--- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote: I've been trying for the last few days to get RemoteObject to work, but with little luck. I've searched this site, and have tried to implement the examples found in developing rich clients with macromedia FLEX. To make matters more

[flexcoders] Re: RemoteObject Issue

2006-04-18 Thread Geoffrey
@yahoogroups.com, Geoffrey gtb104@ wrote: Hmm I replaced the service assignment with: this.service = parentApplication.myServices.siteDataServices; But I get the following error: There is no property with the name 'parentApplication'. Looking at the docs, parentApplication looks

RE: [flexcoders] programatically assigning an ArrayCollection as the DataProvider bug...

2006-04-12 Thread Geoffrey Williams
The return type of selectedItem is Object, so he's casting to the correct type. For the time being I believe your ResourceVO has to be made dynamic or implement the IUID interface. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ted Patrick

RE: [flexcoders] remove child from xml

2006-03-17 Thread Geoffrey Williams
delete x.p[0]; From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sonja Duijvesteijn Sent: Friday, March 17, 2006 5:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] remove child from xml I've been looking through the flex 2

RE: [flexcoders] remove child from xml

2006-03-17 Thread Geoffrey Williams
Oh, you said the second one delete x.p[1]; delete x.children ()[1]; http://livedocs.macromedia.com/labs/1/flex/langref/operators.html#delete_(XML) From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Geoffrey Williams Sent: Friday, March 17

RE: [flexcoders] Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Geoffrey Williams
Try: tabsDataProvider = new ArrayCollection(event.result); tabsDataProvider.dispatchEvent (new CollectionEvent ()); -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tim Sawyer Sent: Wednesday, March 08, 2006 7:25 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Geoffrey Williams
day and month are constant pointers where as year and date are variable values? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sönke Rohde Sent: Friday, March 03, 2006 9:11 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] AS3 Date

RE: [flexcoders] Adobe Labs Colin Moock's AS3 Viewer Example Compile Error

2006-02-28 Thread Geoffrey Williams
I havn't used it, but you need to remove Type from all of the event types (the constants are now located in the event class and not in a separate class). i.e. EventType Event; ProgressEventType ProgressEvent; MouseEventType MouseEvent; c -Original Message- From:

RE: [flexcoders] strange undefined property error

2006-02-27 Thread Geoffrey Williams
'a' hasn't been created when you try to assign a value to 'text': ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml; xmlns=* layout=absolute creationComplete=init () mx:Script ![CDATA[ internal var

[flexcoders] Deliver compiled actionscript

2006-02-17 Thread Geoffrey
The flex application that we are delivering to a third party contains some propriatary actionscript. Is there a way to compile the actionscript or convert it to a format that can not be reverse engineered? Thanks. -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Deliver compiled actionscript

2006-02-17 Thread Geoffrey
--- In flexcoders@yahoogroups.com, Roger Gonzalez [EMAIL PROTECTED] wrote: The flex application that we are delivering to a third party contains some propriatary actionscript. Is there a way to compile the actionscript or convert it to a format that can not be reverse engineered?

RE: [flexcoders] Flex 2 builder: is there a way to turn warnings off

2006-02-15 Thread Geoffrey Williams
One of these may be what youre looking for: http://livedocs.macromedia.com/flex/20beta1/docs/0260.html http://livedocs.macromedia.com/flex/20beta1/docs/1443.html From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Johannes Nel Sent:

RE: [flexcoders] Flex2: debugging mxml

2006-02-15 Thread Geoffrey Williams
http://livedocs.macromedia.com/flex/20beta1/docs/0402.html You can output the generated as by adding keep to the compiler arguments. But you cant add breakpoints to debug em AFAICT http://livedocs.macromedia.com/flex/20beta1/docs/0388.html From:

RE: [flexcoders] Re: Job: Flash Developer/Programmer

2006-02-14 Thread Geoffrey Williams
I agree. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bhaq1972 Sent: Tuesday, February 14, 2006 5:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Job: Flash Developer/Programmer Ali My preference would be to have a single

RE: [flexcoders] SharedObject.getLocal() Flex2 beta1

2006-02-13 Thread Geoffrey Williams
Copy and pasted that code and it works for me. Try a project clean and make sure the project has all of the library swcs. frameworks and playerglobal are the main ones I think. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Teoti Graphix Sent: Monday,

RE: [flexcoders] Flex2: Hierarchical DP with typed objects. Class must be dynamic?

2006-02-12 Thread Geoffrey Williams
You might want to look into using the ITreeDataDescriptor http://www.google.com/search?q=ITreeDataDescriptor -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aldo Bucchi Sent: Sunday, February 12, 2006 1:05 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Type annotation is not a compile-time constant

2006-02-10 Thread Geoffrey Williams
'Void' is now 'void'; lowercase. function addToCart () : void { /* */ } -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sam5654295 Sent: Friday, February 10, 2006 10:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Type annotation is

RE: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-10 Thread Geoffrey Williams
I had seen that before and didnt like it because you could just use: var _singleton:MySingleton = new MySingleton (null); In any case, for anyone interested, I ended up doing something similar to the code below: package whatever { public class SingletonClass { public

RE: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-10 Thread Geoffrey Williams
? Well you could throw an Error if the parameter passed in was null too From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Geoffrey Williams Sent: Friday, February 10, 2006 9:48 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] AS3 class

RE: [flexcoders] Date Class switch?

2006-02-02 Thread Geoffrey Williams
Well, the month is zero indexed and today is 2/2 not 2/1 so that might be what your seeing. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda Sent: Thursday, February 02, 2006 11:43 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Passing values

2006-02-02 Thread Geoffrey
--- In flexcoders@yahoogroups.com, Geoffrey [EMAIL PROTECTED] wrote: I'm trying to pass the dimensions of the main window to a component for positioning of a popup. I keep getting the following error: Error /Main.mxml:18 The property being referenced does not have the static

[flexcoders] Re: Passing values

2006-02-02 Thread Geoffrey
. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Thursday, February 02, 2006 12:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Passing values --- In flexcoders@yahoogroups.com, Geoffrey gtb104@ wrote

[flexcoders] Passing values

2006-02-01 Thread Geoffrey
I'm trying to pass the dimensions of the main window to a component for positioning of a popup. I keep getting the following error: Error /Main.mxml:18 The property being referenced does not have the static attribute. Here are some code snippets: -- Main.mxml -- mx:Panel

RE: [flexcoders] Event inconsistency

2006-01-25 Thread Geoffrey Williams
I had noticed this as well. I believe it will be normalized on way or another once all is said and done. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacey Mulcahy Sent: Tuesday, January 24, 2006 1:39 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Named parameters in AS3?

2006-01-11 Thread Geoffrey Williams
Did you maybe misread his question? I don't think you can do what he asked... -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Wednesday, January 11, 2006 5:46 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Named

RE: [flexcoders] Does Flex utilize the keyword: abstract?

2005-12-07 Thread Geoffrey Williams
The keyword is reserved but it's not supported... public function foo():Void { throw new Error (method foo is abstract); } -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Libby Sent: Wednesday, December 07, 2005 11:44 AM To:

RE: [flexcoders] How to create XML Object from string (AS3: E4X)

2005-11-30 Thread Geoffrey Williams
var _str:String = rootchildtext/child/root; var _xml:XML = XML (_str); flash.util.trace (String (_xml.child)); From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ralf Rottmann Sent: Wednesday, November 30, 2005 6:22 PM To:

RE: [flexcoders] Flex 2:Package/Class problem

2005-11-01 Thread Geoffrey Williams
You can only have one public function / class / prop per .as file. Also, the .as files name must match that of the function / class / prop. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Johnson Sent: Tuesday, November 01, 2005 9:43 AM To:

RE: [flexcoders] Macromedia Labs site

2005-10-17 Thread Geoffrey Williams
The wiki is one of those open source / pre packaged things; just with a customized UI. Much easier than coming up with something from scratch. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of charlespaz1 Sent: Monday, October 17, 2005 11:31 AM

RE: [flexcoders] Packages must not be nested? Flex2

2005-10-17 Thread Geoffrey Williams
You can only have one public class/method available in a package .as file. Is this supposed to be an .as include? If so, just get rid of 'package {' and the end brace. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Johnson Sent: Monday,

RE: [flexcoders] Browserless Flex?

2005-08-30 Thread Geoffrey Williams
Yes. Flex generated SWFs can bee installed with your Central app. Other than that I'm pretty sure there is some sort of restricted distribution. You can't just compile the MXMLSWFs and distribute them wrapped in a projector. -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] NaN

2005-08-02 Thread Geoffrey Williams
if (myField == undefined) { //... } -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Simard, Ghislain Sent: Tuesday, August 02, 2005 2:47 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] NaN Is there an equivalent for undefined? if

RE: [flexcoders] Flex + Central

2005-05-11 Thread Geoffrey Williams
Central does not have the ability to execute programs on the users' machine without some sort of a hack or third party installation. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of beckpvt Sent: Wednesday, May 11, 2005 2:03 PM To:

<    1   2