Re: [flexcoders] Debug Flash Player 10.0.42.34 ?

2009-12-11 Thread flexcoders . list
On Thu, Dec 10, 2009 at 11:23:38 -0500, Rick Winscot wrote: Any ETA or information from Adobe-ites when we might expect to see debug packages? They are available here: http://www.adobe.com/support/flashplayer/downloads.html Look for the 12/8/2009 sections.

[flexcoders] Re: itemchange effect with filter funtion

2009-12-11 Thread stinasius
come on guys any work around this monster problem?

RE: [SPAM] [flexcoders] XMLList question

2009-12-11 Thread Russ Ferguson
Sent from my Windows MobileĀ® phone. -Original Message- From: Tracy Spratt tr...@nts3rd.com Sent: Thursday, December 10, 2009 11:45 PM To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Subject: RE: [SPAM] [flexcoders] XMLList question I don't believe you can sort an xmllist

[flexcoders] Re: Accessing the URLRequest object from the URLLoader?

2009-12-11 Thread Nick Middleweek
Hi, Here's my class so I can reference the urlRequest object via the UrlLoader object via the complete event.currentTarget... //- package comps { import flash.net.URLLoader; import flash.net.URLRequest; public class URLRequestLoader extends URLLoader { public var

[flexcoders] Re: Blazeds on Godaddy

2009-12-11 Thread mslinn.com
I am considering moving to a hosted service instead of running my own servers because sysadmin takes too much time. I'm not sure which Godaddy service you use, but I learned yesterday that their shared hosted offering uses JDK 1.5 and Tomcat 5. The turnkey BlazeDS is provided with Tomcat 6,

[flexcoders] Cut Paste KB Difference between IE and Firefox

2009-12-11 Thread aceoohay
I have created a tree component whose only difference is to allow control-c to copy things from the tree to paste in another component. When I run it in firefox, it works fine. when I run it in IE v7 control-c does nothing. Any ideas? Paul package AppTools { import

Re: [SPAM] [flexcoders] XMLList question

2009-12-11 Thread invertedspear
I forgot I asked that question here too. I actually turned up a pretty simple function some dude developed to sort XML at http://freerpad.blogspot.com/2007/07/more-hierarchical-sorting-e4x-xml-for.html I then modified it a bit to do what I need and posted it here

[flexcoders] Data Management Service, Pagination of DataGrid

2009-12-11 Thread mslinn.com
The channel protocol is independent of the features provided by the destination. Any server push mechanism will work, but RTMP will provide the most responsive connection. However, because RTMP might not function across some routers or firewalls, you should configure fallback channels that

[flexcoders] .exe files in flex3

2009-12-11 Thread kanna
Hi i need a help from you all,i want to know how to create a .exe files in Flex3. For example i have a application up and running which is developed in flex3 with blezeds -tomcat. i want to create it as a full exe so that it can be installed in other system and without doing any other

[flexcoders] Preserve multi-column sort in AdvancedDataGrid with dataProvider as GroupingCollection

2009-12-11 Thread singrahu
I have three attributes in my XML object: last name, first name, and age. My sample XML looks like: dataXML info last=Abc first=Def age=20/ info last=Abc first=Hij age=10/ info last=Xyz first=Klm age=25/ info last=Xyz first=Opq age=64/ info last=Xyz

[flexcoders] Re: .exe files in flex3

2009-12-11 Thread invertedspear
You might want to post your question in the directly instead of as a reply. You'll get a more detailed answer than what I know. You want to make an Air application. All I can suggest is looking into how to compile to an Air app. --- In flexcoders@yahoogroups.com, kanna kannaec...@... wrote:

[flexcoders] cannot convert mx.charts.events::ChartItemEvent to mx.events.IndexChangedEvent.

2009-12-11 Thread Battershall, Jeff
Hello, I have a LineChart with selectionMode = multiple, living inside a container and finally a ViewStack. I'm getting this error: cannot convert mx.charts.events::chartitemev...@ea1e341 to mx.events.IndexChangedEvent. If I remove the selectionMode attribute, everything works fine, except I

[flexcoders] Re: Cut Paste KB Difference between IE and Firefox

2009-12-11 Thread aceoohay
In order to test I traced the keycodes, and it gets the control key 17 but it does not get the c key 67. Control-c works properly as the default behavior in things like textAreas. Still looking for ideas. Paul

[flexcoders] css reset

2009-12-11 Thread Joel Stransky
Are there any popular css reset files out there similar to the YUI xhtml resets? -- --Joel Stransky stranskydesign.com

[flexcoders] RE: cannot convert mx.charts.events::ChartItemEvent to mx.events.IndexChangedEvent.

2009-12-11 Thread Battershall, Jeff
The workaround is to use event.stopImmediatePropagation() on the chart's change event. Looks like this has been filed as a bug before but not addressed as it couldn't be replicated. Jeff From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

[flexcoders] Re: Cut Paste KB Difference between IE and Firefox

2009-12-11 Thread aceoohay
Interestingly, the keyboard up handler works for IE. But if you don't trap the KB down handler, Firefox does some nasty default behavior. So here is the solution I came up with. Paul package AppTools { import flash.events.KeyboardEvent; import flash.system.System;

Re: [flexcoders] Re: .exe files in flex3

2009-12-11 Thread David Pariente
For a desktop app go for air, but remember it needs the air virtual machine installed, but will work on mac, windows and linux with no changes. If u want an exe for windows there are 2 or 3 commercial apps that u can find googleing. They are advertised as flash to exe apps, but thet should work

Re: [flexcoders] Re: .exe files in flex3

2009-12-11 Thread Nick Collins
You could also look at the Air 2.0 beta which allows you to export to a standalone executable for both Mac and PC. That way you wouldn't have to worry about the AIR runtime being installed. On Fri, Dec 11, 2009 at 12:05 PM, David Pariente xxmapach...@yahoo.eswrote: For a desktop app go for

RE: [flexcoders] Re: .exe files in flex3

2009-12-11 Thread Jim Hayes
No, you still need the runtime installed, I'm afraid! -Original Message- From: flexcoders@yahoogroups.com on behalf of Nick Collins Sent: Fri 12/11/2009 6:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: .exe files in flex3 You could also look at the Air 2.0 beta

[flexcoders] font-face not cascading throughout app

2009-12-11 Thread Joel Stransky
I wanted to change the default font throughout my flex app so I simply embeded the font using @font-face in a .css file and then using the Application type selector, set its fontFamily to my chosen name like so: @font-face { src: url(../fonts/HelveticaCondensed.ttf); fontFamily:

[flexcoders] custom HSlider display?

2009-12-11 Thread markflex2007
Hi I want to use slider to select distance.I need select 500,ik,2k,3k,4k,5k etc with slider. I use the follow component to do that. but 1.5k,2.5k etc also display mx:HSlider id=hsInput x=139 y=73 width=300 minimum=500 maximum=5000 tickColor=0x323232 snapInterval=500

[flexcoders] Re: .exe files in flex3

2009-12-11 Thread ag_rcuren
Check out mProjector although I think it only supports AS2 or Zinc which I know supports AS3. I have used both and they work ok, they both allow you to embed a flash play in the exe as well. I have also used F in Box which is a .net library that allows your exes to load swfs. There are also a

Re: [flexcoders] Re: Help, please

2009-12-11 Thread Greg Morphis
Thanks... I finally just reinstalled Eclipse 3.2, FDS2.0.1 and Flex Builder 2.0.1 and I can compile Flex apps from within FB2. On Fri, Dec 4, 2009 at 2:09 PM, invertedspear invertedsp...@yahoo.com wrote: You might try the adobe forums themselves, but you're using an old version of Flex as a

[flexcoders] Crazy problem with a script creating datagrids

2009-12-11 Thread invertedspear
This is driving me nuts. This script is adding datagrids to various containers in an accordion. In my first level for-each loop the item that fills my if(compone...@component_componentid == 9) is the last item looped through everything works fine except the datagrid I am building

[flexcoders] 3.5 is out!!!

2009-12-11 Thread tntomek
http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3 Is there DMV released with this as well?

Re: [flexcoders] 3.5 is out!!!

2009-12-11 Thread Matt Chotin
We've updated the OS site a week earlier than we were able to push on the www.adobe.com site. When we get out there next week we'll have the DMV builds updated as well. Matt On Dec 11, 2009, at 3:12 PM, tntomek wrote: http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3 Is

Re: [flexcoders] Best way to load XML file

2009-12-11 Thread Flex Killer
Thanks Jim for sharing the link with me . This solved my problem . The actual file size was 1.68MB and after compressing it is just 236 KB . The time it is taking now is just 7 seconds( before compression it was taking around 45 seconds) . Once again thanks for your suggestion Nathan , thanks

[flexcoders] AIR App Not Compiling After Updating AIR SDK to 1.5.3

2009-12-11 Thread seanmcmonahan
I just updated my AIR SDK to 1.5.3 from 1.5.2 and when I attempt to build my application I get the following error: Unable to locate specified base class 'mx.core.WindowedApplication' for component class 'MyApp'. I've done some searching and not come up with anything. Fortunately I backed up

[flexcoders] Re: AIR App Not Compiling After Updating AIR SDK to 1.5.3

2009-12-11 Thread seanmcmonahan
Aha! Fnder! Sometimes it's not a lot of fun to be a Windows guy trapped in a Mac office ;) Following this thread on the Adobe forums: http://forums.adobe.com/thread/526625, it seems you cannot just drag and drop the new AIR SDK files in the Finder on Mac OS. You need to use the

[flexcoders] Flex+SSL+IE = broke

2009-12-11 Thread wb...@ymail.com
When serving a modular app on a server using SSL, I've run into a some serious issues in IE regarding caching and not caching the SWFs. The initial problem was handled based on a little article from Adobe that says to allow caching despite being SSL. This actually did make it so that the app

[flexcoders] array count?

2009-12-11 Thread tex_learning_flex
how do I best count items in an array? thanks, Tex

Re: [flexcoders] array count?

2009-12-11 Thread Julian Alexander
myArray.length -J From: tex_learning_flex tex.learning.f...@gmail.com To: flexcoders@yahoogroups.com Sent: Fri, December 11, 2009 9:46:17 PM Subject: [flexcoders] array count? how do I best count items in an array? thanks, Tex

Re: [flexcoders] array count?

2009-12-11 Thread Charles Parcell
Do you mean? myArray.length; Charles P. On Fri, Dec 11, 2009 at 9:46 PM, tex_learning_flex tex.learning.f...@gmail.com wrote: how do I best count items in an array? thanks, Tex -- Flexcoders Mailing List FAQ:

[flexcoders] Re: array count?

2009-12-11 Thread tex_learning_flex
never mind... I got it. the length property (duh) thanks, Tex --- In flexcoders@yahoogroups.com, tex_learning_flex tex.learning.f...@... wrote: how do I best count items in an array? thanks, Tex

[flexcoders] Re: 3.5 is out!!!

2009-12-11 Thread tntomek
Awesome Matt, greatest holiday gift :) (programming wise that is) --- In flexcoders@yahoogroups.com, Matt Chotin mcho...@... wrote: We've updated the OS site a week earlier than we were able to push on the www.adobe.com site. When we get out there next week we'll have the DMV builds

RE: [flexcoders] Crazy problem with a script creating datagrids

2009-12-11 Thread Alex Harui
In general, you should manipulate the columns of a DataGrid at setup other than maybe to change visible. The recommended practice at setup is to create a fresh array of DataGridColumns and assign the whole array to the columns property. Alex Harui Flex SDK Developer Adobe Systems

RE: [flexcoders] SWFLoader too aliased on resize

2009-12-11 Thread Alex Harui
I think you can try various filters depending on what your image content is. You might also consider using Scene7. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On