[flexcoders] flexant will not compile custom components declared as tags

2008-07-25 Thread fsandx
Anyone know why it seems impossible to compile an mxml-file like this: ?xml version=1.0 encoding=utf-8? mx:Module xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical width=200 height=200 backgroundColor=0x00ff00 xmlns:components=com.subotnik.components.*

[flexcoders] Re: lightweight eclipse

2008-07-25 Thread fsandx
There is flashdevelop for free. Not an Eclipse plugin, but it is lightweight and convenient for smaller things where you donĀ“t need to handle several projects in the same workspace. Also checkout fdt for Eclipse. /Fredrik Sandberg --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED]

[flexcoders] Re: lightweight eclipse

2008-07-25 Thread eric.suen
--- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: Is there a lightweight Eclipse IDE or a lightweight notepad for Flex Builder that does not consume as much memory as eclipse. I need at least autocompletion, Starting Eclipse almost takes 250,000K of ram and

[flexcoders] MovieClip Effects

2008-07-25 Thread Shaq
Does the movieclip object have any type of effect methods available (mousedowneffect etc.)? I would like the whole movieclip object to fade out and disappear. Is this possible?

Re: [flexcoders] Re: lightweight eclipse

2008-07-25 Thread Moss
Eclipse does consume some amount of memory, but hey even firefox frequently goes over the 100M mark. But Eclipse should not spiral out of control like you are saying. Besides the memory parameters given to the JVM do restrict memory usage. You should run into an exception rather then consuming

RE: [flexcoders] Re: Loading style sheets at run time

2008-07-25 Thread Alex Harui
2. Bseides the @font-face, you must have some way of specifying in CSS to use the Ad Lib font. What does the relevant CSS look like? 4. What happens if you load the CSS from the main app instead of the module? From: flexcoders@yahoogroups.com

RE: [flexcoders] MovieClip Effects

2008-07-25 Thread Alex Harui
Wrap the MC in a UIComponent From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shaq Sent: Thursday, July 24, 2008 11:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] MovieClip Effects Does the movieclip object have any type

[flexcoders] Re: Loading style sheets at run time

2008-07-25 Thread kaushal_bshah
Hi Let me clear what is MyTextArea. This component is copied from mx:RichTextEditor/, so that user can format each character of MyTextArea's text. For a testing purpose I have create one more component TempTextArea based on TextArea, and put it inside Card component. And when user change font

[flexcoders] LCDS paging exception

2008-07-25 Thread Gregor Kiddie
As hard as it is for me to admit defeat at anything... Does anyone have more information about the error Exception: flex.data.DataServiceException: Page requested does not exist in the specified sequence id '0' for destination 'foo'. It appears to be being thrown when the DataService is

[flexcoders] Flex and Acrobat Forms

2008-07-25 Thread ambsilva933
Hello everyone, I'm trying to build a Flex solution that will integrate acrobat forms. What I want is: - Forms are created, for instance, with Adobe Live Cycle Designer (could be static forms or dynamic ones); - Then the user fills out the form from within Flex App; - Data from the user

[flexcoders] Adding Event to Panel titleIcon

2008-07-25 Thread grenzsteincom
Hello! I'm trying to add an MouseEvent.CLICK to a Panles titleIcon. How can I do this? I tried some stuff, but nothing worked :( Thanks in advance! Best regards, Stefan

[flexcoders] Re: LCDS paging exception

2008-07-25 Thread meteatamel
The newly released LCDS 2.6 developer's guide, has a good section on paging: http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/lcds/dms_paging_1.html I encourage people to check out the new LCDS 2.6 developer's guide. It's been restructured and has lots of new information on LCDS

RE: [flexcoders] Re: LCDS paging exception

2008-07-25 Thread Gregor Kiddie
Yup, totally aware of the 2.6 documentation (I'm using 2.6 precisely because of the improvements in paging, etc), and I've actually read the developers guide end to end several times now ;) There is still no mention of this specific problem, and I match up to the examples and samples. Gk.

[flexcoders] Re: new Component() ?

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Rafael Faria [EMAIL PROTECTED] wrote: Amy, and how would you add elements to the canvas?! or to the itemrender itself? because the myRenderer wont have addChild so i can add new elements. And how do you change the properties of the Canvas? You adding the

[flexcoders] Re: new Component() ?

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Rafael Faria [EMAIL PROTECTED] wrote: Amy, and how would you add elements to the canvas?! or to the itemrender itself? because the myRenderer wont have addChild so i can add new elements. And how do you change the properties of the Canvas? You adding the

[flexcoders] Re: Centering Bar Chart labels vertically

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Hi, all; Is there any way to center a bar chart's labels vertically? The labelAlign style only changes the horizontal alignment. Bump :-)

[flexcoders] Re: LCDS paging exception

2008-07-25 Thread meteatamel
I have tried the basic paging before and it was working. I'm not sure what is special in your case. Maybe it's a bug? If you can reproduce it consistently, please log a bug so it can be investigated. -Mete --- In flexcoders@yahoogroups.com, Gregor Kiddie [EMAIL PROTECTED] wrote: Yup, totally

[flexcoders] DataGrid Row Icon

2008-07-25 Thread Dan Vega
I am having an issue displaying an icon in the first column of a row. Using the following code I pass two variables to a function the type and name. The type lets me know if the current row is a Directory or a file, if its a directory I return the source for the folder image, if its a file I a

[flexcoders] Running Flex application on Mac

2008-07-25 Thread kaushal_bshah
I have create one Flex Application, which runs properly on Windows OS. But same application behaving wrong on Mac. Application loads completely but while interacting sometime user getting improper response. So my question is, does Mac need anything to run flex application properly, or is there

[flexcoders] anyone successfully streaming video from Limelight?

2008-07-25 Thread grimmwerks
I've got code to try to stream video from Limelight that doesn't seem to work - but when I plug the same code into our own Flash Media Server setup it works perfectly. Is there no one else trying to get video from limelight into flex?

[flexcoders] PropertyChangeEvent problems in ArrayCollection

2008-07-25 Thread lampei
I am trying to keep track of changes to an ArrayCollection. I have so far got all of the CollectionEventKind working except for UPDATE. It actually does add that a change was made for UPDATE, however, it doesn't actually save what the change was that was made. e.g. CollectionChange fires, and I

[flexcoders] Re: Line chart renderers cut off for first and last data point

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Is there a way to bring the first and last data points on a line chart in from the sides so that the item renderer dots aren't cut in half? Bump :-)

[flexcoders] Nested property display in ADG

2008-07-25 Thread Guilherme Blanco
Hi all, I'm interested to display a column in ADG and the field is a nested property. item id1/id foo1/foo Bar id2/id nametest/name /Bar /item What do I want? I want baz to be displayed... I tried this: mx:AdvancedDataGridColumn headerText=Bar dataField=Bar.name/ But it

RE: [flexcoders] Re: LCDS paging exception

2008-07-25 Thread Jeff Vroom
In particular the server debug logs should show what is happening (with Message.* and Service.* enabled). It happens when the client thinks it is subscribed to a paged sequence and the server has lost track of that subscription.It can happen when the server gets restarted without the

[flexcoders] RSS Feeds

2008-07-25 Thread George
I have a simple RSS component that works just fine in development mode, but as soon as I deploy it I get the security violation. I know about the security policy files, and have checked the feeds for this. One of the feeds that is failing is from Yahoo. They have a crossdomain.xml policy file

[flexcoders] Re: Nested property display in ADG

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Guilherme Blanco [EMAIL PROTECTED] wrote: Hi all, I'm interested to display a column in ADG and the field is a nested property. item id1/id foo1/foo Bar id2/id nametest/name /Bar /item What do I want? I want baz to be

[flexcoders] Re: Trying to control percentage based containers

2008-07-25 Thread daddyo_buckeye
That worked. thanks for the tip. Sherm --- In flexcoders@yahoogroups.com, Manu Dhanda [EMAIL PROTECTED] wrote: Give width and height to your TabNavigator. Manu. daddyo_buckeye wrote: I'm trying to control a percentage-based layout with several nested containers. Unless I

[flexcoders] Re: Populate TileList w/ data from XML file?

2008-07-25 Thread daddyo_buckeye
I'll keep an eye on that new class at Ben's blog, but here's how I solved the issue, by creating a custom itemRenderer. A bit of a workaround, but more flexible than using the generic tileList: mx:TileList dataProvider={uniXML} labelField=groupID iconField=thumbnail

Re: [flexcoders] Re: Nested property display in ADG

2008-07-25 Thread Guilherme Blanco
Hi, Thanks for the quick answer. I do not like the tree effect... I want a plain grid first (later I'll use the tree but based on other things). ++--+ | foo| bar | ++--+ | 1 | test | ++--+ That's what I

[flexcoders] Timer memory leak

2008-07-25 Thread steve.baney
Howdy all! I've got a memory leak issue with my problem. I just added a third party countdown timer component to my project. I've narrowed down the culprit to the event listener that listens for the timer event and then calls an updateTime function. timer.addEventListener(timer, updateTime,

[flexcoders] Tweener and HTTPService conflict

2008-07-25 Thread Flex Frenzy
Hey everybody, I am using the Tweener class for an animation that is going on toward the top of my flex application. The problem is when I add an http service to grab data to populate the menubar at the bottom, it looks as if the application waits for the animation to be done before the

[flexcoders] Re: Trying to control percentage based containers

2008-07-25 Thread lynxoid7
You should also maximize Application's width, height to 100% and your TabNaviigator. --- In flexcoders@yahoogroups.com, daddyo_buckeye [EMAIL PROTECTED] wrote: I'm trying to control a percentage-based layout with several nested containers. Unless I set a fixed size (in pixels) or a minWidth

[flexcoders] Re: Timer memory leak

2008-07-25 Thread Michael VanDaniker
Have you tried using setTimeout instead of listening on Timer events? --- In flexcoders@yahoogroups.com, steve.baney [EMAIL PROTECTED] wrote: Howdy all! I've got a memory leak issue with my problem. I just added a third party countdown timer component to my project. I've narrowed down the

[flexcoders] Re: Line chart renderers cut off for first and last data point

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: Is there a way to bring the first and last data points on a line chart in from the sides so that the item renderer dots aren't cut in half? Bump :-) For

[flexcoders] Calendar Help

2008-07-25 Thread emobilecat
Hi all I'm trying to create a calendar using the dateChooser component. I am able to show which dates are selectable, but I can't figure out how to when I click on the date it will show the event information for that day from the xml file I provided. Help please! Here's a snippet of what I

[flexcoders] Re: Got Error #2032: Stream Error invoking web service for IE6 and IE7

2008-07-25 Thread thuvu03
Anyone? I still have not found a solution to this problem. I have searched the web that there is an issue related to this that has to do with ssl and caching in IE. But I am not using ssl. It's very frustrating as my UI works fine if I have only one IE browser up. As soon as I bring up

[flexcoders] AdvancedDataGrid layout problem

2008-07-25 Thread whatabrain
I'm having trouble laying out my AdvancedDataGrid. I would like to have a tree with a depth of 1 (a root node only contains leaf nodes). The rootnode is just the expand/collapse icon, followed by a name. The leaf nodes have several columns, the first few of which are very narrow. Basically, I

RE: [flexcoders] Calendar Help

2008-07-25 Thread Tracy Spratt
How about doing that in a DateChooser.change event handler function? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of emobilecat Sent: Friday, July 25, 2008 11:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Calendar

Re: [flexcoders] Re: Got Error #2032: Stream Error invoking web service for IE6 and IE7

2008-07-25 Thread Douglas Knudsen
welcome to 2032 hell :) as you should have run across, this is a generic error thrown when th ebrowser says there is something wrong, but the browser does not tell FP what is wrong. I've seen this afflict IE with some webservices. It would happen randomly and with the same exact call/returned

[flexcoders] best way to immediately post advanceddatagrid itemeditor change

2008-07-25 Thread Pan Troglodytes
I have a column that contains an image. The editor for it is a combobox that lets you pick an image from the list of images in an arraycollection. I want to have it where as soon as they click on the image from the dropdown, the combobox disappears completely and changes are posted to the

[flexcoders] Figuring out what was clicked in AdvancedDataGrid

2008-07-25 Thread whatabrain
How can you tell which item in the dataProvider was clicked in an AdvancedDataGrid, when using HierarchicalData as the dataProvider? I tried using the typical DataGrid method, of saving off the item index in itemRollOver, and using it to determine the index of the clicked item. However, with

[flexcoders] problem with embeds in static variables

2008-07-25 Thread Pan Troglodytes
I'm confused as to why the following gets a runtime error: package nes { import mx.collections.ArrayCollection; public class WATIcons { [Embed(source=/assets/customIcons/eye-16x16--CCFFF.png)] public static var eye:Class; public static var customIcons:ArrayCollection = new

[flexcoders] LCDS data synchronisation problem

2008-07-25 Thread fkolberg
Hi, I have installed the insync app from http://coenraets.org/blog/2008/05/insync-automatic-offline-data-synchronization-in-air-using-lcds-26 and consistently get cannot fill error message. I then got the source code and compiled the files under flex builder 3. I ran the debugger and used

Re: [flexcoders] Running Flex application on Mac

2008-07-25 Thread Sid Maskit
In theory, flex applications, like flash movies, run the same way on Windows and OS X. In reality, there are a number of differences. If you can provide details as to what is actually happening differently, including some relevant code, somebody might be able to help you out. - Original

Re: [flexcoders] Figuring out what was clicked in AdvancedDataGrid

2008-07-25 Thread Carlos Rovira
I use this code with an ArrayCollection dataProvider. I'm using multiple cell selection as well, but you can customize as you need: var ac:ArrayCollection = dataProvider as ArrayCollection; for(var i:Number = 0; i selectedCells.length; i++) { var cell:Object =

[flexcoders] First AIR app using Flex 3 SDK

2008-07-25 Thread Greg Morphis
I'm running through the Creating your first AIR application with the Flex SDK And I get all the way to the end, everything is working okay until I get here : Create the AIR installation file I create the sampleCert.pfx and I go to compile the .air file and this is what I get...

[flexcoders] Re: AdvancedDataGrid layout problem

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, whatabrain [EMAIL PROTECTED] wrote: I'm having trouble laying out my AdvancedDataGrid. I would like to have a tree with a depth of 1 (a root node only contains leaf nodes). The rootnode is just the expand/collapse icon, followed by a name. The leaf

RE: [flexcoders] problem with embeds in static variables

2008-07-25 Thread Alex Harui
Class initialization is just a bunch of code. The eye class may not be fully setup by the time customIcons is getting initialized. When it is an instance var, the eye class has probably been fully setup by instantiation time. Assigning default values to statics that are not compile-time

RE: [flexcoders] Timer memory leak

2008-07-25 Thread Alex Harui
It would be pretty hard for that line to cause a leak. It is more likely to be whatever updateTime is doing. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of steve.baney Sent: Friday, July 25, 2008 8:18 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] PropertyChangeEvent problems in ArrayCollection

2008-07-25 Thread Alex Harui
What is the property that is changing? I think you may need to have your own code generate the proper change event. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lampei Sent: Friday, July 25, 2008 7:02 AM To:

RE: [flexcoders] DataGrid Row Icon

2008-07-25 Thread Alex Harui
It means your data objects are just plain objects and any changes to type or name won't be detected. You can make your object [Bindable] or better yet, define a custom data class with the appropriate [Bindable()] events, but I don' think these warning will harm you in this case although it will

RE: [flexcoders] Re: Loading style sheets at run time

2008-07-25 Thread Alex Harui
RichTextEditor may block setting of styles using setStyle as it expects the markup to describe the font properties. This may not be a module problem. Try it in a simple test app. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Re: new Component() ?

2008-07-25 Thread Alex Harui
If the goal is to generate different canvas children based on the data, a custom renderer should do that in commitProperties. How you determine which children to create is up to you, but you wouldn't do this by altering class definitions at runtime. From:

RE: [flexcoders] Re: new Component() ?

2008-07-25 Thread Gordon Smith
i'm able to add a new class on the fly No, you're not adding a new class on the fly. You're creating a new instance of a ClassFactory subclass on the fly. A class is something that is defined at compile time by a class { .. } definition. You cannot create new classes at runtime, only

Re: [flexcoders] DataGrid Row Icon

2008-07-25 Thread Dan Vega
As you said that I started looking at it more and started to write a reply. The item is declared bindable but when you are in the component it could not see my variable because it was declared private. i declared the variable and it works with no warnings now! mx:DataGridColumn

[flexcoders] Re: Calendar Help

2008-07-25 Thread Sal H.
Help with the actionscript please. I only got as far as this: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=init() mx:Script ![CDATA[ import mx.events.CalendarLayoutChangeEvent; import mx.controls.Alert;

[flexcoders] Re: Figuring out what was clicked in AdvancedDataGrid

2008-07-25 Thread whatabrain
I'm not quite sure I understand. My dataPrivider is an mx:HierarchicalData object, with an ArrayCollection as its source. The ArrayCollection is an array of arrays. Something like this: [ {name=group1, children=[ {name=item1}, {name=item2} ] }, {name=group2, children=[

[flexcoders] Re: AdvancedDataGrid layout problem

2008-07-25 Thread whatabrain
I'm actually already hiding all the grid separators. Let me try to demonstrate what I mean visually... This is what I want: [^] Group1 [ ] C1 C2 C3 C4 C5 [ ] C1 C2 C3 C4 C5 [ ] C1 C2 C3 C4 C5 In the above picture, each item (C1,C2,etc) is in its own column, but the group name

Re: [flexcoders] problem with embeds in static variables

2008-07-25 Thread Pan Troglodytes
Fair enough. I just wanted to be able to switch out the values for the various icons at runtime based on user configuration. On Fri, Jul 25, 2008 at 1:07 PM, Alex Harui [EMAIL PROTECTED] wrote: Class initialization is just a bunch of code. The eye class may not be fully setup by the time

[flexcoders] Re: alert button order

2008-07-25 Thread joshua gatcke
Thanks for the tips. I am going to write a new alert component - this might end up being super awesome now that I think about it. Oh the possibilities. :D

[flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-25 Thread Adnan Doric
Sorry to bump this, but... am I the only one with this issue ? :) Even the Flex 3 style explorer have same issue : 1. clear the cache 2. load http://examples.adobe.com/flex3/consulting/styleexplorer/Flex3StyleExplorer.html You see the preloader 3. clear the cache 4. load (note the # at the end

[flexcoders] Wierd AdvancedDataGrid efficiency problem

2008-07-25 Thread whatabrain
My grid uses a HierarchicalData dataProvider, which points to a subclass of ArrayCollection. The dataProvider is declared Bindable. The data is an ArrayCollection of arrays. I create a single top-level node, and then create 5000 child nodes. If the top-level node is collapsed, it takes about 4

[flexcoders] Re: Zoom Tile Container

2008-07-25 Thread Nate Pearson
Bump. Any ideas? --- In flexcoders@yahoogroups.com, Nate Pearson [EMAIL PROTECTED] wrote: I want to make a custom component and I think I can extend the tile container to do it. Here's what I want to do: Have four boxes fill up the screen. If I click on one of the boxes that box zooms

[flexcoders] Re: AdvancedDataGrid layout problem

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, whatabrain [EMAIL PROTECTED] wrote: I'm actually already hiding all the grid separators. Let me try to demonstrate what I mean visually... This is what I want: [^] Group1 [ ] C1 C2 C3 C4 C5 [ ] C1 C2 C3 C4 C5 [ ] C1 C2 C3 C4 C5 In the

[flexcoders] HttpService Fault Response Body Decoding

2008-07-25 Thread ron_mori
praises to user group - httpService is now working. Next issue: Trying to access / unwrap the error message the server sends back. The errors are the programmatic fault conditions (bad login for example) that the server appropriately response with an error condition. The current implementation

[flexcoders] Re: new Component() ?

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: i'm able to add a new class on the fly No, you're not adding a new class on the fly. You're creating a new instance of a ClassFactory subclass on the fly. A class is something that is defined at compile time by a

RE: [flexcoders] LCDS data synchronisation problem

2008-07-25 Thread Jeff Vroom
This error occurs for a variety of problems that can occur when initializing the destination. You may not have defined that destination in the server's configuration or there can be a problem with that destination's configuration. If you add the tag: mx:TraceTarget/ it will usually provide

RE: [flexcoders] LCDS - Data Management Service Problem

2008-07-25 Thread Jeff Vroom
This error can occur when you access an unpaged item when paging is enabled of course, but given that you are running that code in the result handler it seems like this is not the problem (unless the result event is being delivered for another call on that data service). It might also happen

[flexcoders] Re: Centering Bar Chart labels vertically

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: Hi, all; Is there any way to center a bar chart's labels vertically? The labelAlign style only changes the horizontal alignment. Thanks; Amy Bump-bump

RE: [flexcoders] Re: Zoom Tile Container

2008-07-25 Thread Tracy Spratt
What exactly do you mean by zoom? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nate Pearson Sent: Friday, July 25, 2008 4:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Zoom Tile Container Bump. Any ideas?

[flexcoders] mxml components

2008-07-25 Thread Scott
Ok, I'm trying to get a firm grasp on AS3 components/classes. I'm trying to figure out how to structure code so I can optimize code re-use. What is the life of a component/class in a flex application? In other words... If I have a main.mxml that calls another class like logins.mxml,

[flexcoders] timed events

2008-07-25 Thread Scott
Is there a way to launch an event based on time? What I'd like to do is flash a button every 10 seconds to draw attention to it. Is this possible in any other way other than using a flash movie? TIA

RE: [flexcoders] HttpService Fault Response Body Decoding

2008-07-25 Thread Tracy Spratt
Is the result handler being called? (this would be good news) Or is the fault handler being called (this would be bad news for you)? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ron_mori Sent: Friday, July 25, 2008 3:45 PM To:

RE: [flexcoders] timed events

2008-07-25 Thread Tracy Spratt
See the Timer class. There is also setTimeout, but Timer is preferred. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Friday, July 25, 2008 6:01 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] timed events

RE: [flexcoders] timed events

2008-07-25 Thread Gordon Smith
You can use an instance of the Timer class to dispatch a timer event periodically. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sent: Friday, July 25, 2008 3:01 PM To:

RE: [flexcoders] mxml components

2008-07-25 Thread Gordon Smith
Some terminology: Classes aren't calling classes. Classes don't call anything... methods inside classes call other methods. In your MXML, an instance of MainClass is creating instances of subclass1 and subclass2 and -- because they are Sprites, which can have parent/child relationships --

RE: [flexcoders] mxml components

2008-07-25 Thread Tracy Spratt
First, there are classes and instances. When it matters, use these terms correctly. Second, call does not apply to a class, or even really an instance. An instantiated class stays instantiated untill all references to it are removed, and Garbage Collection has run and removed it. If

Re: [flexcoders] mxml components

2008-07-25 Thread yigit
it depends on references, not whether you use or not. so for example, if the code is like this: MainClass.mxml foo:MainClass foo:SubClass id=bl/ /foo:MainClass SubClass.mxml foo:SubClass foo:SubClass2a id='bla'/ /foo:SubClass they will live forever. But if you load

[flexcoders] Re: Centering Bar Chart labels vertically

2008-07-25 Thread Tim Hoff
Are you talking about the axis renderer labels for a categoryField? If so, check-out labelGap? -TH --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: Hi, all; Is there any way to center a bar chart's labels

RE: [flexcoders] Re: Calendar Help

2008-07-25 Thread Tracy Spratt
Ok, you have the selected date in the click handler. Now, use that value to select the associated node in your xml shows, using an e4x expression. Assign that node to a [Bindable] instance variable. Bind you UI components to the xml in that variable. Tracy

[flexcoders] simple SWF dynamic loading and control

2008-07-25 Thread David Pariente
Hi all, I'm trying to do something quite simple, but i couldn't for many days...guess should have asked for help before :( I try to load some images from inside a SWF in order to use them as buttons. I managed to load them, but i cannot control them, so they will just play, cause i can't even

[flexcoders] Re: PropertyChangeEvent problems in ArrayCollection

2008-07-25 Thread lampei
That's the problem I'm having...the property is dynamic and can be filled with whatever data they pass to the arrayCollection, such as filling it with a query they receive from their back end, or just passing in generic objects (which is what I'm using to test). They could then, perhaps, bind

[flexcoders] Re: First AIR app using Flex 3 SDK

2008-07-25 Thread Greg Morphis
It has something to do with the ../'s. I came home, same set up, changed the PATH variable, same code and it worked.. I On Fri, Jul 25, 2008 at 12:58 PM, Greg Morphis [EMAIL PROTECTED] wrote: I'm running through the Creating your first AIR application with the Flex SDK And I get all the way

RE: [flexcoders] Re: PropertyChangeEvent problems in ArrayCollection

2008-07-25 Thread Alex Harui
Different data objects may set the oldValue/newValue correctly. I'm not sure what kind of generic object you are using for testing, but it may not be generating the info when some other kind of object (maybe a [Bindable] or [Managed] object will. If the item is a plain old Object, the DG does

[flexcoders] Re: Zoom Tile Container

2008-07-25 Thread Nate Pearson
So if I have 4 boxes I want to set one to width=100% and height=100% and the others to width=0, height=0. I'd put an effect on it so that it looked like one of them would grow and the others would shrink to nothing. This is pretty easy to do in code, but I want to make a component that can have

RE: [flexcoders] simple SWF dynamic loading and control

2008-07-25 Thread Alex Harui
Check the forum archives. It depends on whether your SWF is an AS3 SWF or not. The solution is different but possible either way. If you set the source to another URL it will load it. If you embed several SWFs you can simply refer to them because to embed several you'll probably do

RE: [flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-25 Thread Alex Harui
I saw the initializing progress bar. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Adnan Doric Sent: Friday, July 25, 2008 12:50 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex 3 Preloader broken when using deep

Re: [flexcoders] Re: Alternating colors for AdvancedDataGrid

2008-07-25 Thread Everson Alves
Hello, I found a solution extending ADG. I'll post here if anyone need it too. Just override drawRowBackgrounds and use alternatingItemColors properties. CODE: override protected function drawRowBackgrounds():void { var rowBGs:Sprite = Sprite(listContent.getChildByName(rowBGs)); if

[flexcoders] Re: Centering Bar Chart labels vertically

2008-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Are you talking about the axis renderer labels for a categoryField? If so, check-out labelGap? No, I am talking about this: |--| |..label...| |..|

[flexcoders] Pick right color for the chart

2008-07-25 Thread hworke
Hello all, I have a column chart in my flex application. Initially I left it with the default colors but did not like it so I put my own color; man it was worse Where can I find some good color combination that I can use for my chart? Is there any good examples on picking

[flexcoders] Re: Centering Bar Chart labels vertically

2008-07-25 Thread Tim Hoff
Ok, so we're talking about a vertical axis. . * For a vertical axis, by default the labels are vertically aligned to the tick marks (center).For these, you can adjust the label position (up/down) slightly with the labelAlign property; on the axis tag. This still might not get you what

[flexcoders] Re: Pick right color for the chart

2008-07-25 Thread Tim Hoff
Hi, Here's a good tool for selecting/creating color schemes: http://kuler.adobe.com/ http://kuler.adobe.com/ And, this is a good place for themes: http://www.scalenine.com/ http://www.scalenine.com/ -TH --- In flexcoders@yahoogroups.com, hworke [EMAIL PROTECTED] wrote: Hello all, I