[flexcoders] Will Flash 10.1 do much for Flex or is it mostly for video?

2010-02-16 Thread tntomek
Seems like the recent Adobe vs Jobs fiasco brought up some good performance debates. So will 10.1 really improve core non-video line of business Flex apps? or is is mostly to help CPU of youtube down and enable better mobile flash

[flexcoders] Re: Animating items in a tilelist when filtering arraycollection

2010-02-16 Thread ZIONIST
Hey Valdhor, this is exactly what i was looking for. i have tried it out and it works exactly like what i expected. thanks a lot bro.

Re: [flexcoders] Deep Object Copy?

2010-02-16 Thread Nick Middleweek
Hi, I understand the problem with ByteArray is that the destination Object looses all knowledge of it's Value Object Classes... I need to keep all this information intact. Thanks, Nick On 15 February 2010 22:20, Guy Morton g...@alchemy.com.au wrote: You can use ByteArray to deep copy an

Re: [flexcoders] Deep Object Copy?

2010-02-16 Thread claudiu ursica
Write your own utility. Do something recursive it takes some time but it will fit your needs. C From: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Tue, February 16, 2010 11:03:38 AM Subject: Re: [flexcoders] Deep Object Copy?

Re: [flexcoders] Deep Object Copy?

2010-02-16 Thread Nick Middleweek
ok, cool... I guess that was the answer I didn't want :) Shame there's no generic solution. Thanks for your help. On 16 February 2010 10:16, claudiu ursica the_bran...@yahoo.com wrote: Write your own utility. Do something recursive it takes some time but it will fit your needs. C

[flexcoders] Pb with Directories

2010-02-16 Thread Christophe
Hello, I have a directory for images at the same level of the www directory server. When I use mx:image source = ../Images/test.JPG / It does not find the image. How to solve this problem ? Thank you, Christophe,

Re: [flexcoders] Re: MP3 or any audio encoder?

2010-02-16 Thread Andriy Panas
Hi Judah, What server do you use to store locally the recorded audio stream? I believe that by default the recorded audio file from the microphone will be stored in FLV file with sound encoded using NellyMoser Asao Codec, not MPEG-1 Audio Layer (MP3) format. In the past it was very

Re: [flexcoders] Pb with Directories

2010-02-16 Thread Booking Heaven
I prefer to use a Class for images or icons like this package {     public class Icons     {         [Embed(source=icons/16x16/warning.png)]         public static const warning_16:Class; } } in your mx:image , write like this : mx:image source = {Images.warning_16} / hope it works;

[flexcoders] Reverse Binding?

2010-02-16 Thread Nick Middleweek
Hi, Am I correct in thinking it is NOT possible to do automatic 'reverse' binding In Flex? e.g. You can bind an Object.property to a textInput which updates if the Object.property is changed but when you change the TextInput.text, it doesn't update the Object.property and you need to DIY using

[flexcoders] Re: error while handling message from asp.net

2010-02-16 Thread valdhor
A 503 status code is Service Unavailable (http://www.checkupdown.com/status/E503.html). Check your server. Are you calling the correct service (As outlined in your config file(s). Are you calling the correct function. --- In flexcoders@yahoogroups.com, Abhishek Saxena abhisheksaxena...@...

[flexcoders] Re: Get Rid of [SPAM] tag

2010-02-16 Thread valdhor
I'm sorry to say that I've only ever seen it from your mails. I wonder if it's GoDaddy adding these. Do they have a spam filter setting somewhere? --- In flexcoders@yahoogroups.com, Tracy Spratt tr...@... wrote: Is it just me? I hate it myself, but don't know where it is coming from. I

[flexcoders] Re: Animating items in a tilelist when filtering arraycollection

2010-02-16 Thread valdhor
You're very welcome. --- In flexcoders@yahoogroups.com, ZIONIST stinas...@... wrote: Hey Valdhor, this is exactly what i was looking for. i have tried it out and it works exactly like what i expected. thanks a lot bro.

[flexcoders] Re: Reverse Binding?

2010-02-16 Thread valdhor
Google two way data binding. --- In flexcoders@yahoogroups.com, Nick Middleweek n...@... wrote: Hi, Am I correct in thinking it is NOT possible to do automatic 'reverse' binding In Flex? e.g. You can bind an Object.property to a textInput which updates if the Object.property is changed

RE: [SPAM] [flexcoders] Re: Get Rid of [SPAM] tag

2010-02-16 Thread Tracy Spratt
Dang. I have checked both goDaddy and my local Norton, but both say spam protection is off. I will keep looking. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of valdhor Sent: Tuesday,

[flexcoders] Re: Using PlotSeries icon in a seperate control

2010-02-16 Thread Mike
I never got a reply to this, so I though I would try again and see if anyone can help. Mike --- In flexcoders@yahoogroups.com, Mike msl...@... wrote: I need to create an instance of a PlotSeries icon. It's easy enough to discover the PlotSeries item renderer: var renderer:ClassFactory

[flexcoders] Accepting an Image Size

2010-02-16 Thread s_hernandez01
Hi Flexers I know it's possible to tell flex in actionscript to accept a image and limit the user to uploading 5Mb and to also only accept certain file types. However, is it possible, and how, to tell flex to only accept images no bigger than a specific size in dimensions, say to only allow

[flexcoders] Using 'setitemat ' to make images within a tilelist dynamic

2010-02-16 Thread James
In my app I have a tilelist which gets it's data and images from a data provider 'myTileListAArrayCollection'. I have a function which takes a snapshot of a component and saves it as a bitmap. What I want is for this bitmap to be saved so that it overwrites an image jpg I have defined in a

[flexcoders] Copy/Paste Camino

2010-02-16 Thread djhatrick
Copy and Paste, will this work on Camino in the near future?

Re: [flexcoders] PureMVC Folks...

2010-02-16 Thread Nick Middleweek
Nice! Cheers James! On 16 February 2010 00:57, jamesfin james.alan.finni...@gmail.com wrote: For you PureMVC/AS3 Folks... There's a new PureMVC Port in town...JavaScript. Well sort of. There's really an update using MooTools which will really move JavaScript along in the AS3/PureMVC

Re: [flexcoders] Initial sort on computed column

2010-02-16 Thread Richard Rodseth
Quick follow-up. It does appear to be important that a dynamic column have a valid dataField property, even though it has a labelFunction to actually determine the displayed value. I ran into a situation where the little triangle was jumping from the currently sorted column to the first column

[flexcoders] Re: Copy/Paste Camino

2010-02-16 Thread djhatrick
This actually works now... nm... Maybe Camino 2.01 fixed this it works now. --- In flexcoders@yahoogroups.com, djhatrick djhatr...@... wrote: Copy and Paste, will this work on Camino in the near future?

[flexcoders] Re: Using 'setitemat ' to make images within a tilelist dynamic

2010-02-16 Thread valdhor
Are you using AIR? If not, you can't do this locally. Otherwise you can sent the data to the server and have the server replace the file. These posts should help you on your way: http://www.quietless.com/kitchen/dynamically-create-an-image-in-flash-and-save-it-to-the-desktop-or-server/

[flexcoders] Copy/Paste Camino Fedora 12 Linux

2010-02-16 Thread djhatrick
Fails. anybody? --- In flexcoders@yahoogroups.com, djhatrick djhatr...@... wrote: This actually works now... nm... Maybe Camino 2.01 fixed this it works now. --- In flexcoders@yahoogroups.com, djhatrick djhatrick@ wrote: Copy and Paste, will this work on Camino in the near

[flexcoders] Re: PureMVC Folks...

2010-02-16 Thread djhatrick
ew. javascript :( But me loves puremvc --- In flexcoders@yahoogroups.com, jamesfin james.alan.finni...@... wrote: For you PureMVC/AS3 Folks... There's a new PureMVC Port in town...JavaScript. Well sort of. There's really an update using MooTools which will really move JavaScript along

[flexcoders] SDK 3.5 An unknown item is declared as the root of your MXML document

2010-02-16 Thread mitek17
Hi everybody! I am trying to switch to Flex SDK 3.5(a) and Design View goes haywire: https://bugs.adobe.com/jira/browse/FB-25994 If I switch back the SDK to 3.4 it starts to work. The code compiles executes with no problem, just a Design View problem. Anyone had similar problem? Thanks!

[flexcoders] Re: How to use Flex Unit 4 with Mate

2010-02-16 Thread jer_ela
You shouldn't create an instance of the event map for a unit test. There shouldn't be enough code in your event map to test. It should just wire the rest of the app together. The rest of the app shouldn't even know it is a mate app and so should be testable without any need for the event

Re: [flexcoders] Deep Object Copy?

2010-02-16 Thread Alex Harui
If you’ve registered your VO’s with [RemoteClass] or by calling registerClassAlias, then ByteArray or ObjectUtil.copy will do a deep copy. On 2/16/10 1:24 AM, Nick Middleweek n...@middleweek.co.uk wrote: ok, cool... I guess that was the answer I didn't want :) Shame there's no generic

[flexcoders] Keyboard constants gone....

2010-02-16 Thread djhatrick
OMG, why were these removed from the flex sdk. why? Annoying.

[flexcoders] Adobe Announces Air For Phones, Demos Flash on Android

2010-02-16 Thread hpatino.rm
http://www.pcmag.com/article2/0,2817,2359678,00.asp Good news, as I was looking for a solution like this. You can also look at this SDK to develop cross phone platform apps http://www.openplug.com/ HP

[flexcoders] Re: Deep Object Copy?

2010-02-16 Thread hpatino.rm
From Programming ActionScript 3.0 (page 157) Have you tried this: import flash.utils.ByteArray; function clone(source:Object):* { var myBA:ByteArray = new ByteArray(); myBA.writeObject(source); myBA.position = 0; return(myBA.readObject()); } HP

[flexcoders] Modules Without Dependencies

2010-02-16 Thread gtb104
Reading the Flex Docs gave me the impression that you can create modules that have no direct dependencies to the main app, but I can't figure it out. Basically, I want a team of developer somewhere else to create a module that's coded to an interface. I then want to load that module,

[flexcoders] Re: Get Rid of [SPAM] tag

2010-02-16 Thread Tracy
I found the problem, it was a setting on the GoDaddy mail account (I was looking at the wrong account previously) My abject apologies to the list, and thanks to Steve for bringing it to my attention. Tracy --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: I'm sorry to say

[flexcoders] AIR +JAVA

2010-02-16 Thread Prológica
Hi, I type from Brazil, I need urgente one exemple of integration AIR + JAVA Thank's

[flexcoders] Re: Modules Without Dependencies

2010-02-16 Thread ag_rcuren
This sounds very similar to a project I worked on. Here is post I made a while back that might help you. http://flexinonroids.wordpress.com/2009/05/27/flex-3-dynamically-loading-components-at-runtime/ The app I ended up creating knows how to load modules (that are not optimized to ensure they

[flexcoders] I want to apply a default sorting to the datagrid when it's dataprovider is set

2010-02-16 Thread hansenallanlund
i have an initial default sorting set on my datagrid tasksList.dispatchEvent(new DataGridEvent(DataGridEvent.HEADER_RELEASE, false, true, UPDATE_DATE_COLUMN_POSITION, null, 0, null, null,0)); however i need to know what event to listen for if i only want to set the default sorting when the

[flexcoders] FileReference Download to mapped drive crashed IE

2010-02-16 Thread kyledixon88
I am using fileReference to download tar files, sizes from 16Mb to 6Gb to customers. Everything works perfectly except when downloading in IE and saving to a network or mapped drive. IE goes to Not Responding mode and the Flash app freezes. The file downloads, but the app and IE are frozen.

[flexcoders] I want to apply a default sorting to the datagrid when it's dataprovider is set

2010-02-16 Thread hansenallanlund
i have an initial default sorting set on my datagrid tasksList.dispatchEvent(new DataGridEvent(DataGridEvent.HEADER_RELEASE, false, true, UPDATE_DATE_COLUMN_POSITION, null, 0, null, null,0)); however i need to know what event to listen for if i only want to set the default sorting when the

[flexcoders] error in consumer

2010-02-16 Thread Abhishek Saxena
hey i m working with consumer which subscribe to a destination... i get this error channel.connect.failed error undefined url:'rtmp://localhost:2037' the consumer was not able to subscribe to its target destination The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.

Re: [flexcoders] Keyboard constants gone....

2010-02-16 Thread Alex Harui
Are you talking about flash.ui.Keyboard? I just used them the other day. Maybe something else is wrong. On 2/16/10 1:16 PM, djhatrick djhatr...@yahoo.com wrote: OMG, why were these removed from the flex sdk. why? Annoying. -- Alex Harui Flex SDK Team Adobe System, Inc.

[flexcoders] Re: SDK 3.5 An unknown item is declared as the root of your MXML document

2010-02-16 Thread Flex
I have seen this happen sometimes (for some reason not always..) when you don't use an explicit namespace for the app...i.e. use a default namespace so if you use mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; / you should be ok But, if you use Application

[flexcoders] Re: SDK 3.5 An unknown item is declared as the root of your MXML document

2010-02-16 Thread mitek17
1)It actually always works for mx:Application, the problem exists only for components. 2) it is always fully specified namespace like mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; --- In flexcoders@yahoogroups.com, Flex myflexdownlo...@... wrote: I have seen this happen