[flexcoders] Dynamically accessing properties of an object

2007-04-14 Thread frank_sommers
I'm wondering how to dynamically access the properties of an object. I've already looked into flash.utils.describeType, which does provide a list of accessors of an object. What I'd like to be able to do is iterate through that list, and obtain the value of each accessor (if the property is r

[flexcoders] Zooming in on the x-axis of the AreaChart

2007-04-14 Thread {reduxdj}
Is this possible to do? any examples of this anywhere, thanks? Patrick

[flexcoders] Correct way to determine MP3 length in ms and determine when sound starts playi?

2007-04-14 Thread wdsnapper
Hello, The flash.media.Sound class has a length property that says it contains the length of the current sound in milliseconds. 1) Is this the best, most accurate way to determine a sound length? 2) If so, do i need to wait for a certain amount of the track to be loaded and playing before accessi

[flexcoders] Re: how to substitute the old attachmovie()?

2007-04-14 Thread herklano
thanks, great help and tips, i got a lot to learn :) --- In [EMAIL PROTECTED], "Derek Vadneau" <[EMAIL PROTECTED]> wrote: > > Just do it the same way you did it in AS2. In your code you are attaching a > movie and giving it a name of nomeMenu+i. Do the same for your AS3 code - > don't assign the

[flexcoders] change Panel.titleIcon via actionscript

2007-04-14 Thread joshua gatcke
I am hoping someone could help me figure out how to change the Panel.titleIcon via AS during runtime. So far from the documentation, it looks like I have to use @Embed and cannot use a runtime loaded image. I tried creating a bindable object then manipulating that via AS, with no avail. T

Re: [flexcoders] open source plug-in AS frame work ?

2007-04-14 Thread Michael Schmalle
I bet he means 'plugins' like some web apps are starting to have. I think your answer is; You need to create a framework that has a public interface API. Once this api is set you can load any component/module at runtime and share within the specified ApplicationDomain. I am working on something

[flexcoders] How do I reference a class that is a few subdirectories below my application

2007-04-14 Thread boy_trike
I have a class under my application folder in Widgets/CustomClass/Custom.as How do I reference that in my application ? I tried using an import statement but I get an error "access of undefined property custom in widgets/customclass. Thanks bruce

Re: [flexcoders] open source plug-in AS frame work ?

2007-04-14 Thread Muzak
If you mean you want to create components for distribution or want to have them available accros projects, look into creating swc files. http://livedocs.macromedia.com/flex/201/html/creating_comps_041_1.html http://livedocs.adobe.com/flex/201/html/building_overview_121_09.html http://livedocs.ma

[flexcoders] Implementing a CheckBox array..

2007-04-14 Thread tommyhaych
I posted this as a reply in one of my other questions, so I apologize in advance if I appear to be spamming things. I've modified the question, anyway. -- Hey all.. I just have a question about forms in FLEX 2: I've got a repeater populated by a list of musicians taken from an XML file. Eac

Re: [flexcoders] open source plug-in AS frame work ?

2007-04-14 Thread Jeffry Houser
At 08:12 AM 4/14/2007, Nick Rathke wrote: >Greetings Flex coders, > >Is there an open source plug-in framework for AS/Flex that allows for >new new components to be added to an exiting application? Did you mean "Executing" application? You want to create new components on the fly as your app

[flexcoders] Structure and visual design techniques

2007-04-14 Thread longhairedsi
I've been the reading helps docs and I've come to the conclution that the suggested technique for using graphical and animated elements in flex is render then using actionscript. This is all well and good, but I come from a Flash as 1.0 and 2.0 background, I'm used to having these graphical ele

[flexcoders] Re: Uploading file to a java servlet.

2007-04-14 Thread pgp.coppens
You might find http://projects.apache.org/projects/jakarta_commons_fileupload.html useful. Works fine for me. Peter --- In [EMAIL PROTECTED], "ivansebastiansurya" <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > I'm wondering if anyone has actually write a servlet that becomes > the URL target

[flexcoders] open source plug-in AS frame work ?

2007-04-14 Thread Nick Rathke
Greetings Flex coders, Is there an open source plug-in framework for AS/Flex that allows for new new components to be added to an exiting application? I have Google for it, but anything with AS or Flex and plug-in all seem to point to the Eclipse Flex builder plug-in. I am looking for somethi

[flexcoders] Graphical elements in a Flex dynamic list

2007-04-14 Thread zzberthod
Hello, I'm using SOAP services that generate XML result. I need to feed a Flex dynamic list with the XML result. I try to use the XMLCollection AS object and I display it in a DataGrid. But I've got some problems. I just need to insert graphical elements (ex: MXML checkbox) into the list. Exam

[flexcoders] Uploading file to a java servlet.

2007-04-14 Thread ivansebastiansurya
Hi everyone, I'm wondering if anyone has actually write a servlet that becomes the URL target of a FileReference.upload() method. It seems that the uploaded file can be retrieved in the inputstream of the post request, i.e. in the inputstream of the Request in doPost() method. The problem is

[flexcoders] DateTimeAxis problems

2007-04-14 Thread adnane_1979
Hi Can anyone help with a problem I have with DatetimeAxis? I have some data which has some gaps over a time period for example, but not limited to, weekends and public holidays.I want to show the final chart without these gaps appearing on it.The problem is I must use this type of axis - does

RE: [flexcoders] variable change / call a function

2007-04-14 Thread Alex Harui
You should be adding a listener to the array collection for CollectionEvent.COLLECTION_CHANGE, then check the .kind in the event handler From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of sgrace99 Sent: Thursday, April 12, 2007 11:36 PM To: [EMAIL P

RE: [flexcoders] Italics in datagrid cell

2007-04-14 Thread Alex Harui
Check out the examples on my blog http://blogs.adobe.com/aharui/2007/03/thinking_about_item_renderers_1.ht ml From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of tsiesser Sent: Friday, April 13, 2007 1:49 PM To: [EMAIL PROTECTED] Subject: [flexcod

RE: [flexcoders] Grid columns of fixed and equal width

2007-04-14 Thread Alex Harui
What happened when you gave each column the same fixed width? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, April 13, 2007 9:30 AM To: [EMAIL PROTECTED] Subject: RE: [flexcoders] Grid columns of fixed and equal w

RE: [flexcoders] Grid columns of fixed and equal width

2007-04-14 Thread cooper_martin
Pretty please? Even a response telling me that it's a bonehead question and I'm a dolt for asking would tell me _something_. ;-) Thanks! -- Martin Cooper From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent:

[flexcoders] Re: Flex and Yahoo Pipes

2007-04-14 Thread joshspooning
--- In [EMAIL PROTECTED], shaun etherton <[EMAIL PROTECTED]> wrote: > > joshspooning wrote: > > I see. That's weird Yahoo has set there cross-domain wide open. I'll > > look into the docs. Do you mean I mean I need to allow yahoo's domain? > > > > --- In [EMAIL PROTECTED], "huangnankun" wrote: >