Re: [flexcoders] udefined property error without function

2008-11-11 Thread Paul Andrews
- Original Message - From: john fisher [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 11, 2008 1:39 AM Subject: [flexcoders] udefined property error without function context: an mxml app, with classes written by me ( Zdemos) and Flare classes. myCanvas is

Re: [flexcoders] Flex Book wish :)

2008-11-11 Thread Paul Andrews
Not exactly what you want, but worth a look: http://www.friendsofed.com/book.html?isbn=9781430210276 Actionscript design patterns: http://www.amazon.com/Advanced-ActionScript-3-Design-Patterns/dp/0321426568 , http://www.amazon.com/ActionScript-3-0-Design-Patterns-Programming/dp/0596528469

Re: [flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread Nik Derewianka
On 11/11/2008, at 2:03 PM, Amy wrote: --- In flexcoders@yahoogroups.com, Rich Rodecker [EMAIL PROTECTED] wrote: you definitely need the $_explicitType property in the php VOs. Yes, I'm trying to figure out ways to pry verification that that has been done out of the client ;-). That, and

Re: [flexcoders] Problem with Flex form

2008-11-11 Thread Marco Catunda
Bruce, I don't know exactly why the resultHandler function is not called. I will try to call addEventListener before call send method of myContactService in sendMyData. You can get the result of PHP in event.result of resultHandler method. On Tue, Nov 11, 2008 at 2:22 AM, brucewhealton [EMAIL

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread valdhor
Does Charles (Or another HTTP Proxy) show typed objects being returned? Also, I don't know if there is a rule against extending other classes - I just have never tried it. These are meant to be value objects - ie. just values being passed around. Extending another class creates a completely new

[flexcoders] Re: AdvancedDataGrid grouping name gets cut off if the first column is thin

2008-11-11 Thread valdhor
Do you mean column spanning? If so, according to the docs at http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid_10.html you can Span multiple columns with a renderer --- In flexcoders@yahoogroups.com, blc187 [EMAIL PROTECTED] wrote: Does anyone have any experience using

[flexcoders] Http Service Issue -Urgent

2008-11-11 Thread harsha_galla
Hi, Iam new Flex user. I have come across a peculiar problem.. I wanted a flex UI for an already existing java project. So I went about creating the UI in Adobe flex builder and i have servlet deployed on a server to which the front end has http service calls. When i run the mxml file from IDE

Re: [flexcoders] invalidateList or itemUpdated?

2008-11-11 Thread olme
Ok. I finally solved it by defining a bindable global variable in the application and adding the following to the mxml of the item: borderColor={app.strongNodes.contains(data) ? COLOR_STRONG_NODE : COLOR_DEFAULT_NODE} Cheers, D. olme wrote: Hi, Did this solution work? I have

Re: [flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread Alan
AMFPHP and Zend_Amf are two different code bases. http://wadearnold.com/blog/?p=112 On Nov 11, 2008, at 9:35 AM, valdhor wrote: Are you using AMFPHP 1.9 or the new version included with Zend Framework 1.7?

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: Amy Are you using AMFPHP 1.9 or the new version included with Zend Framework 1.7? I believe they're using Sabre. Not sure if that answers your question.

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: Does Charles (Or another HTTP Proxy) show typed objects being returned? Also, I don't know if there is a rule against extending other classes - I just have never tried it. These are meant to be value objects - ie. just

[flexcoders] Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-11 Thread Todd
Hello All, The Flex docs aren't really clear on this, but I'm wondering if it's possible to EMBED a SWF written for Flash 9 into a Flex 3 application, and then access some properties on it, methods, and click events from it. Right now, I get an error: ReferenceError: Error #1069: Property

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread valdhor
SabreAMF is a completely different beast to AMFPHP. I have not tried SabreAMF (http://osflash.org/sabreamf). If it was WebORB, AMFPHP or Zend_AMF then I'd be your man ;-} So, what were the results with Charles? --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In

[flexcoders] Re: Graphical skins and subclasses of UIComponent

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, Josh Ettwein [EMAIL PROTECTED] wrote: I'll try to keep this as simple of an example as possible. Here's the scenario: I have a Button class that extends UIComponent. If I specify a Button declaration in an external CSS file, and specify the overSkin,

[flexcoders] Re: Skins and filters

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, Sceneshift [EMAIL PROTECTED] wrote: I want to apply a filter to the labels on all my buttons. I have a custom programmatic skin setup for my button, is there a way I can access to label attached to the button component in order to apply a skin to it. If

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread valdhor
SabreAMF - How to map PHP data to Flash classes http://code.google.com/p/sabreamf/wiki/ClassMapping --- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: SabreAMF is a completely different beast to AMFPHP. I have not tried SabreAMF (http://osflash.org/sabreamf). If it was

[flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-11 Thread Todd
I should also say that all works well when the SWF is dynamically loaded at runtime. It's only when embedded into the application that it fails. --- In flexcoders@yahoogroups.com, Todd [EMAIL PROTECTED] wrote: Hello All, The Flex docs aren't really clear on this, but I'm wondering if it's

[flexcoders] RemoteObject with synchronous call

2008-11-11 Thread Suresh
Hi friends, I want to make a synchronous call to remote server from ActionAcript using RemoteObject RPC call. Pls help me. Thanks in advance.

[flexcoders] Re: Sorting XMLListCollection based on node value

2008-11-11 Thread flexcoder2008
Thanks! --- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: You have to apply the sort to the ListCollection: var s:Sort = new Sort(); s.fields = [new SortField(DisplayName)]; myXMLListCollection.sort = s; myXMLListCollection.refresh(); --- In

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Hi, all; I have some VO's that I've created to work with AMFPHP. When I call the service, I'm getting an array of untyped objects. Another developer on the project believes that the reason for the problem is that the

[flexcoders] How to mask scrolling errorTips

2008-11-11 Thread j_lentzz
Hi, I have a screen where I use the ToolTip manager to create error tips that stay on the screen. However, when the screen is scrolled, the error tips scroll on out of the viewing area, while the text input they are next to is masked by something. My question is how can I apply a mask (if that

[flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-11 Thread Todd
OK, a little more research tells me that the Flex compiler strips out all timeline code from the embedded Flash timeline. So, now my question becomes: How do I expose a property from FLASH that is accessible from Flex? --- In flexcoders@yahoogroups.com, Todd [EMAIL PROTECTED] wrote: Hello

RE: [flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-11 Thread Subeesh
Hi, You can use Flex Component Kit to create contents from Flash which can be used as components in Flex Take a look at this link http://blog.flexexamples.com/2007/09/02/installing-the-flex-component-kit-fo r-flash-cs3/ Subeesh From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, Todd [EMAIL PROTECTED] wrote: OK, a little more research tells me that the Flex compiler strips out all timeline code from the embedded Flash timeline. So, now my question becomes: How do I expose a property from FLASH that is accessible from Flex? I

Re: [flexcoders] Flex3/AIR book recommendation?

2008-11-11 Thread Mike Chabot
Henry, Training From the Source is a good first Flex book for most people. -Mike Chabot On Mon, Nov 10, 2008 at 8:00 PM, henryhokinhang [EMAIL PROTECTED] wrote: Flex3/AIR book recommendation? I searched on amazon but I don't know which one's good.

Re: [flexcoders] udefined property error without function

2008-11-11 Thread Fotis Chatzinikos
public var myDemoClass:Zdemos ; public var myDataFilePath:String = http://.realdata2.xml; ; myDemoClass = new Zdemos(myCanvas,myDataFilePath); myCanvas.addChild(myDemoClass.getUIComponent()); Are you trying to call addChild in the class itself? In your first example (that is working)

[flexcoders] Graceful handling of server timeout

2008-11-11 Thread rydellfinn
I have a flex client that makes service calls to a tomcat server running BlazeDS. I would like to gracefully handle server session timeouts in this environment. I do have security constraints on the service, so the client authenticates against a remote object by initializing a ChannelSet based

[flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-11 Thread Todd
The symbol that I'm trying to get out of Flash is a global Array defenition, so I'm not sure it's working. I did try embedding the name of the public global array as a seperate embed. I'm not too interested in the Flex Component Kit for Flash, as this component is already written. My main

[flexcoders] sailorsea21 - How can I replace certain values in my array with my HTTPService?

2008-11-11 Thread sailorsea21
Hi everyone, I have 2 HTTPServices that populate my array: [Bindable] public var ArrayStats:ArrayCollection = new ArrayCollection; [Bindable] private var XMLStats:XML; private function get(event:ResultEvent):void { XMLStats = event.result as XML; for each(var ourxml:XML in XMLStats.elements() )

Re: [flexcoders] udefined property error without function

2008-11-11 Thread Paul Andrews
- Original Message - From: john fisher [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 11, 2008 5:25 PM Subject: Re: [flexcoders] udefined property error without function oh %^$ thats what I get for typing anything instead of cutpaste! sorrybut The

Re: [flexcoders] udefined property error without function

2008-11-11 Thread john fisher
I am calling addChild inside the mx script section of a mxml file. If it has to be called inside a method, then I need some instruction. JF Fotis Chatzinikos wrote: public var myDemoClass:Zdemos ; public var myDataFilePath:String = http://.realdata2.xml; ; myDemoClass = new

Re: [flexcoders] udefined property error without function

2008-11-11 Thread Paul Andrews
- Original Message - From: john fisher [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 11, 2008 6:24 PM Subject: Re: [flexcoders] udefined property error without function I am calling addChild inside the mx script section of a mxml file. If it has to be called

Re: [flexcoders] udefined property error without function

2008-11-11 Thread john fisher
oh %^$ thats what I get for typing anything instead of cutpaste! sorrybut The *actual* error has the capital P so unfortunately its not this simple pilot error, though I am not ruling out some other dumb pilot error any other idea? Paul Andrews wrote: - You'll notice that in the

[flexcoders] Re: AdvancedDataGrid grouping name gets cut off if the first column is thin

2008-11-11 Thread valdhor
I'm afraid I don't have the Pro version of Flex (No Advanced Data Grid and no Data Visualization) so I'll have to leave further discussion to someone who does. Sorry I can't be more help. --- In flexcoders@yahoogroups.com, blc187 [EMAIL PROTECTED] wrote: Yes, I do mean spanning multiple

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread valdhor
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, valdhor stevedepp@ wrote: SabreAMF is a completely different beast to AMFPHP. I have not tried SabreAMF (http://osflash.org/sabreamf). If it was WebORB, AMFPHP or Zend_AMF then I'd be

Re: [flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-11 Thread Fotis Chatzinikos
hm, it seems that when embeded the compiler does not have enough info to see if your variable is there or not (you mention that loading the swf dynamically works)... I remember reading somewhere in this forum that there is a compiler flag that makes things less strict and your error would get

[flexcoders] bug or feature (or am i doing something wrong)?

2008-11-11 Thread fotis.chatzinikos
Hi, I am using ObjectUtil.copy to deep copy an object. The following code works: (note the call to new) var catTreeLocalToFiltered:CategoryTree = new CategoryTree() ; catTreeLocalToFiltered = ObjectUtil.copy(categoriesTree) as CategoryTree ; The problem is that the following code DOES NOT

[flexcoders] TreeItemRenderer setting an icon to an embedded image

2008-11-11 Thread dfrank76
What is the proper way to set the icon from a TreeItemRenderer when using an embeded graphic file? I don't want to accidentally create hundreds of instances of it in memory. TreeItemRenderer.icon is an instance of IFlexDisplayObject which is implemented by BitmapDataAsset (the embedded

[flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-11 Thread Todd
From my readings around the web, the Flex compiler strips all timeline information from the SWF when embedding. I now have found a suggested workaround over at Grant Skinner's Blog, however, it's dependent upon all the code written on the timeline being put into a Class (this is how I interpreted

Re: [flexcoders] Reloading creation complete or another way...

2008-11-11 Thread Sefi Ninio
You can use the 'show' event - it is dispatched every time the component becomes visible. It should work for you although I haven't tested it. Sefi On Thu, Nov 6, 2008 at 11:53 PM, wkolcz [EMAIL PROTECTED] wrote: Thanks, already figured it out. -- *From*: Tracy

Re: [flexcoders] AMFPHP and Value Objects

2008-11-11 Thread Marco Catunda
Alan, Just to complement... I'm used VO (AMFPHP approach) with a lot of method with no problem. These VOs have the same face as above. On Mon, Nov 10, 2008 at 9:39 PM, Alan [EMAIL PROTECTED] wrote: On my last AMFPHP project my PHP and Flex VOs were: package com.mydomain { [Bindable]

[flexcoders] Re: Help on sorting an ArrayCollection then adding an item to the top

2008-11-11 Thread Mark
Perfect, that did the trick... thanks -M --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Yes, that wording does make a difference. You can look into using a sortCompare function. Or, you can hack it by adding the item to the collection, but in addition add an

Re: [flexcoders] Re: Debugging: general advice

2008-11-11 Thread john fisher
ah, I did not grok that trace() would work with all classes, d'oh, I'll have to get trace working. I used my own before, but of course it doesn't work outside the main mxml code. thanks Amy wrote: - I use trace() when it _is_ in the browser,

Re: [flexcoders] udefined property error without function

2008-11-11 Thread Fotis Chatzinikos
stick an init method or something like that... The script tag translates to class scope you can see that from the import statements and so on... on the component you want add a creationComplete=initme and then in initme put the code that you want On Tue, Nov 11, 2008 at 8:24 PM, john fisher

[flexcoders] Skins and filters

2008-11-11 Thread Sceneshift
I want to apply a filter to the labels on all my buttons. I have a custom programmatic skin setup for my button, is there a way I can access to label attached to the button component in order to apply a skin to it. -- View this message in context:

Re: [flexcoders] Re: Flex Book wish :)

2008-11-11 Thread Paul Andrews
- Original Message - From: Cato Paus [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 11, 2008 11:18 AM Subject: [flexcoders] Re: Flex Book wish :) Hi I have two action script books and thay are great, but to apply it to the flex framework is a another case :)

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread valdhor
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, valdhor stevedepp@ wrote: Does Charles (Or another HTTP Proxy) show typed objects being returned? Also, I don't know if there is a rule against extending other classes - I just have

[flexcoders] Re: Debugging: general advice

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, john fisher [EMAIL PROTECTED] wrote: I read a thread from a few weeks ago, and Amy was using Alert to debug in the browser. So am I, and its moderately successful, but I wonder if there is a better way? I: linux, eclipse, flex builder Actually, I was using

Re: [flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread Rich Rodecker
you can have additional methods on an object you are mapping, the methods don't get serialized, only the public properties. On Tue, Nov 11, 2008 at 8:47 AM, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Hi, all;

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: SabreAMF is a completely different beast to AMFPHP. I have not tried SabreAMF (http://osflash.org/sabreamf). If it was WebORB, AMFPHP or Zend_AMF then I'd be your man ;-} Well my husband's name IS Steve LOL ;-).

Re: [flexcoders] Flex form components

2008-11-11 Thread Howard Fore
On Tue, Nov 11, 2008 at 2:12 AM, brucewhealton [EMAIL PROTECTED]wrote: First question, if I wanted to let the user select more than one item, what control would I use instead of the ComboBox that allows selection of only one item? I'd use a list instead of a comboBox. Next, taking the

Re: [flexcoders] invalidateList or itemUpdated?

2008-11-11 Thread olme
Hi, Did this solution work? I have done something similar for changing the border colors of the nodes of a graph but it does not work. I had an array as a globally scoped variable, and in the item renderer, if the item is in the array, then the border should be of one color, otherwise another. I

[flexcoders] Calling executeBindings makes ADG appears as if there are no selected items

2008-11-11 Thread kevin.sorat
I assigned a bindable hierarchical data to ADG's data provider. Somewhere else in the application, I modified the contents of ADG by updating part of the data in the hierarchical data. For example, a few children nodes are moved under another parent node. The contents of ADG did not get updated

[flexcoders] Re: AMFPHP and Value Objects

2008-11-11 Thread valdhor
Amy Are you using AMFPHP 1.9 or the new version included with Zend Framework 1.7? --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Hi, all; I have some VO's that I've created to work with AMFPHP. When I call the service, I'm getting an array of untyped objects. Another

[flexcoders] Re: AdvancedDataGrid grouping name gets cut off if the first column is thin

2008-11-11 Thread blc187
Yes, I do mean spanning multiple columns. And I am using column renderers and renderer providers. But I'd like to be able to span multiple columns in the row that is the group folder, not just the individual item rows. --- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: Do you

Re: [flexcoders] Re: bar names on bar chart?

2008-11-11 Thread Maciek Sakrejda
Perfect. Thank you, Amy. -Original Message- From: Amy [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: bar names on bar chart? Date: Tue, 11 Nov 2008 14:15:08 - --- In flexcoders@yahoogroups.com, Maciek Sakrejda [EMAIL

Re: [flexcoders] Debugging: general advice

2008-11-11 Thread john fisher
Thanks Josh, xray seems to be not at Flex3 yet, and the last news was 2007. Though it seems to be just what I need. The debugger in Linux Flex Builder Eclipse debugger works fine AFAIK. I guess I'll make a copy of my code that exercises the bad line of execution automatically. Josh McDonald

[flexcoders] Flex3/AIR book recommendation?

2008-11-11 Thread henryhokinhang
Flex3/AIR book recommendation? I searched on amazon but I don't know which one's good. Thanks.

[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-11 Thread sailorsea21
Thanks everyone! Works great :) -David --- In flexcoders@yahoogroups.com, EddieBerman [EMAIL PROTECTED] wrote: Here you go... private function myDataTipFunction( e:HitData ):String { var obj:Object = e.chartItem; if (e.chartItem is ColumnSeriesItem) { ...your columnSeries code here }

Re: [flexcoders] RemoteObject with synchronous call

2008-11-11 Thread Fotis Chatzinikos
you can not do synchronous rpc calls... search the list for AsyncToken and fault / result events quickly: 1) make a remote call and asign an asynctoken to it 2) on the response handler, the token var contains the associated asynctoken, so using this you know which call resulted to this

Re: [flexcoders] Debugging: general advice

2008-11-11 Thread Maciek Sakrejda
I'm curious about this framework, Josh--care to tell us more? I recently moved us from scattered trace statements to more formal mx.ILogger-based stuff, but I'm not thrilled with it. I know about Thunderbolt AS, but that seems a little heavy for us right now. -- Maciek Sakrejda Truviso, Inc.

Re: [flexcoders] How to mask scrolling errorTips

2008-11-11 Thread Fotis Chatzinikos
hm, are tooltips added on the rawchildren of the object instead of the normal children? Does anybody know? If so, they are layered on top of your component, maybe it would be better to implement the errors using a label? On Tue, Nov 11, 2008 at 7:01 PM, j_lentzz [EMAIL PROTECTED] wrote: Hi,

[flexcoders] Re: Flex Book wish :)

2008-11-11 Thread Cato Paus
Hi I have two action script books and thay are great, but to apply it to the flex framework is a another case :) --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: Not exactly what you want, but worth a look: http://www.friendsofed.com/book.html?isbn=9781430210276

[flexcoders] Re: Problem with Flex form

2008-11-11 Thread valdhor
It works for me although it does display the alert twice - once for the eventListener you add in sendMyData and once for the result handler in the HTTPService tag. In your result handler you should be checking the response you get back from the server and display an alert accordingly. One thing

[flexcoders] Re: Flex3/AIR book recommendation?

2008-11-11 Thread nathanpdaniel
Anything Cookbook - I've got all 3 cookbooks and they're really good/helpful. If you're just starting out - Flex 3 Training from the Source (which someone already recommended) --- In flexcoders@yahoogroups.com, henryhokinhang [EMAIL PROTECTED] wrote: Flex3/AIR book recommendation? I

[flexcoders] E4X normalize() + CDATA = invalid XML, data loss

2008-11-11 Thread flexcoders . list
I'm getting some very strange results from E4X and normalize() when working with CDATA text nodes, especially when those text nodes may contain strings that, unescaped, represent CDATA end tags. Consider the following code:

Re: [flexcoders] Getting started with flex

2008-11-11 Thread Paul Andrews
- Original Message - From: Valerio Bruno To: flexcoders@yahoogroups.com Sent: Monday, November 10, 2008 10:47 PM Subject: [flexcoders] Getting started with flex Hi everybody ! I and my friends decided to develop a little web based card game and Flex seems to be the

[flexcoders] Re: Sorting XMLListCollection based on node value

2008-11-11 Thread valdhor
You have to apply the sort to the ListCollection: var s:Sort = new Sort(); s.fields = [new SortField(DisplayName)]; myXMLListCollection.sort = s; myXMLListCollection.refresh(); --- In flexcoders@yahoogroups.com, flexcoder2008 [EMAIL PROTECTED] wrote: I have an XMLListCollection that I want to

Re: [flexcoders] Http Service Issue -Urgent

2008-11-11 Thread GYANPRAKASH PANDEY
hi, Sometimes files developed in flex builder do not work outside the flex builder. so in the compiler arguments add a command: -use-network=false click on project-properties-Flex compiler-additional compiler argument you may find already a command. just put a comma and write -use-network=false  

RE: [flexcoders] Accessing webservice with flex

2008-11-11 Thread moj2joj
I can see the xml but I am not sure what needs to be updated there in order to avoid this error. Tracy Spratt wrote: crossdomain.xml file which is in the same folder as my project. It should be at the root of the web server, so that you can do, http://www.mydomain.com/crossdomain.xml,

[flexcoders] Re: bar names on bar chart?

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, Maciek Sakrejda [EMAIL PROTECTED] wrote: Is there a way to get labels on the actual horizontal bars in a bar chart? E.g., something like | ---| | Category 1 | || | | | Category 2 |

[flexcoders] Setting cursor to particular text box on the application load

2008-11-11 Thread anuj181
Hi Is it possible to set the cursor to the text input while your app loads. I am using setFocus to particular text input but it is just setting the focus to my text box but not the cursor. Is it possible to set the cursor to the text box on the app load. Thanks Anuj

Re: [flexcoders] udefined property error without function

2008-11-11 Thread john fisher
No you nailed it. I didn't understand about having to use a function. I'm sure I moved my eyes over the very document, but it just didn't stick. Thanks. John Paul Andrews wrote: I have a feeling this error may not be to do with these particular snippets. Paul

[flexcoders] Flex Book wish :)

2008-11-11 Thread Cato Paus
a wish book, which addresses the disign pattern and flex framework, that I had purchased on spot.

[flexcoders] Getting started with flex

2008-11-11 Thread Valerio Bruno
Hi everybody ! I and my friends decided to develop a little web based card game and Flex seems to be the best technology at the moment to do that. But there's a little problem: no one of us knows ActionScript nor used Flex Builder. So the subject of this message: *which is the best way to get

[flexcoders] Graphical skins and subclasses of UIComponent

2008-11-11 Thread Josh Ettwein
I'll try to keep this as simple of an example as possible. Here's the scenario: I have a Button class that extends UIComponent. If I specify a Button declaration in an external CSS file, and specify the overSkin, upSkin and downSkin for it, the Button will accept that and apply the style. No

Re: [flexcoders] Http Service Issue -Urgent

2008-11-11 Thread Paul Andrews
- Original Message - From: harsha_galla [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 11, 2008 2:52 PM Subject: [flexcoders] Http Service Issue -Urgent Hi, Iam new Flex user. I have come across a peculiar problem.. I wanted a flex UI for an already existing

[flexcoders] Re: Please help me! I want to Display Thumbnails in 3D wall

2008-11-11 Thread Amy
--- In flexcoders@yahoogroups.com, Tanzeem Bhatti [EMAIL PROTECTED] wrote: Dear All,  I have a project that take videos from Youtube using Youtube feeds,I have completed that but I want to make thumbnail display in 3D wall using Flex.. Any one who have experience in making 3D wall using

Re: [flexcoders] Debugging: general advice

2008-11-11 Thread Josh McDonald
I probably overstated its capabilities :) Basically it's a few helper functions and an extension to ILogger. The util class is here: http://pastie.textmate.org/private/xau2g2k5dcz3tmbfazyua And the AdvancedLogger class is here: http://pastie.textmate.org/private/oxukdvqy6pcotqbpuu5ca You use

RE: [flexcoders] Re: Accessing properties of Embedded Flash SWFs from Flex 3

2008-11-11 Thread Alex Harui
An embedded SWF is wrapped in a MovieClipLoader. There should be some old threads about how to dig into that to get to the actual SWF From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Todd Sent: Tuesday, November 11, 2008 11:37 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Re: Help on sorting an ArrayCollection then adding an item to the top

2008-11-11 Thread Josh McDonald
I'm fairly certain Alex has blogged a custom Collection that does exactly what you want (lets you view other collections together as one, so you simply sort the individual collections)... -Josh On Tue, Nov 11, 2008 at 11:36 PM, Mark [EMAIL PROTECTED] wrote: Perfect, that did the trick...

RE: [flexcoders] TreeItemRenderer setting an icon to an embedded image

2008-11-11 Thread Alex Harui
If you replace the icon in a subclass, you'll have to remove the old one from the display list and add your new one (removeChild/addChild). Tree has APIs for getting the renderer to choose different icons depending on the data. See Tree styles like defaultLeafIcon, and APIs like iconField You

RE: [flexcoders] bug or feature (or am i doing something wrong)?

2008-11-11 Thread Alex Harui
Not sure what categoriesTree is or what CategoryTree is. ObjectUtil.copy doesn't work on DisplayObjects. You may also need to use registerClassAlias. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of fotis.chatzinikos Sent: Tuesday, November 11, 2008 11:14 AM To:

Re: [flexcoders] udefined property error without function

2008-11-11 Thread Paul Andrews
Glad you sorted it out John. Hope your project goes well. Paul - Original Message - From: john fisher [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, November 11, 2008 10:40 PM Subject: Re: [flexcoders] udefined property error without function No you nailed it. I

[flexcoders] Re: Problem with Flex form

2008-11-11 Thread brucewhealton
Did you try the form itself? I guess I didn't show the link. It is here: http://futurewavedesigns.com/ContactUs/ContactForm.html When I enter information into the form, I get no response after I hit Submit. Can you try that page and see what happens for you? Unless you tried it already but I

[flexcoders] saveCache() - Couldn't acquire lock error.

2008-11-11 Thread Geoffrey
I'm getting an error when trying to save fill results to the local cache. Here's the error spew: onSaveCacheFault(): ERROR: (mx.messaging.messages::ErrorMessage)#0 body = (Object)#1 clientId = (null) correlationId = destination = extendedData = (null) faultCode =

RE: [flexcoders] Binding problems after update to 3.1

2008-11-11 Thread Mike Pearce
It turns out many of my projects won't function under 3.1. Is there some documentation as to whatever the fundamental changes were in this update that are breaking my apps so as to avoid it in future? Thanks, Mike From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] AIR 1.5 and Flash Player 10

2008-11-11 Thread Joseph Balderson
I'm trying to figure out how to compile an AIR app with the Flex 3.2 SDK (stable build 3.2.0.3794), deployed with Flash Player 10 capability. Using the example below, you'd think it would work. ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Communicating with Component

2008-11-11 Thread jovialrandor
How do I access functions and properties of a custom component in my main app?

[flexcoders] External Interface is not working in IE

2008-11-11 Thread kotha poornima
Hi all, I need to get the url of the current page. So i used External Interface.call(window.location.href.toString). Its working fine in Firefox but not in IE. how can i solve this problem. Awaiting for the replies.. Thanks in advance, Poornima

RE: [flexcoders] Question on how to find out what something is.

2008-11-11 Thread Gordon Smith
mx:Form id=One My question is what is One, what kind of component or object is it. It is an instance of the class mx.containers.Form, as specified by the following entry in the file frameworks/mxml-manifest.xml component id=Form class=mx.containers.Form/ Gordon Smith Adobe Flex SDK

Re: [flexcoders] External Interface is not working in IE

2008-11-11 Thread ben gomez farrell
I just recently had a problem with fullscreen in IE (but not Firefox) - where I was using SWFObject and embedding the SWF that way. If you get any of the parameters typed incorrectly it can seriously mess the whole thing up and turn things off like script access or fullscreen. If you're

RE: [flexcoders] Binding problems after update to 3.1

2008-11-11 Thread Alex Harui
Can you create a small example of the problem and post it? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Pearce Sent: Tuesday, November 11, 2008 4:33 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Binding problems after update to 3.1 It turns out many

[flexcoders] How to adjust the height of VBox dynamically

2008-11-11 Thread sony antony
Hi, could anyone give me a solution to adjust the height of the VBox so that it will fit the content according to the content's size. This VBOx contains two HBoxes which in turn contain label, text, textinput and date field, and when this page that conatin the VBox is called one HBox at one

RE: [flexcoders] How to adjust the height of VBox dynamically

2008-11-11 Thread Gordon Smith
That's what a VBox does by default when you don't specify its height... it makes itself high enough to show all of its children. If you don't want one of its children to contribute to its height, set includeInLayout to false on that child. Gordon Smith Adobe Flex SDK Team From:

[flexcoders] Flash 10 Crashes Browser -repost

2008-11-11 Thread Don Kerr
Can't find my previous post for some reason. Matt Chotin, the radius deprecated turned out to not be the reason for the crash. I spoke too soon with wishful thinking. I was trying to comment out code to see if any Flex code could be causing it. I cannot isolate or define a way to

Re: [flexcoders] Flash 10 Crashes Browser -repost

2008-11-11 Thread Matt Chotin
Make sure you have the url for your own crash in the bugs that are field though. On 11/11/08 9:40 PM, Don Kerr [EMAIL PROTECTED] wrote: Can't find my previous post for some reason. Matt Chotin, the radius deprecated turned out to not be the reason for the crash. I spoke too soon with

[flexcoders] How to share VO with multiple components/views - Nested Binding?

2008-11-11 Thread pbrendanc
I have some data (e.g. currently selected employee summary data) that appears (Read Only) on several views/components. I am retrieving the selected data and saving in a VO object, but I'd like to share this VO data with several forms/views - I thought I could do this via binding, but some of the

Re: [flexcoders] How to share VO with multiple components/views - Nested Binding?

2008-11-11 Thread Josh McDonald
I usually use a combination of dependency injection and binding, with things being injected into an outer component and passing through only what nested components need with bindings. I know it's not the fastest way, but I guess I'm lucky that I'm not doing anything where this sort of latency