Re: [flexcoders] web compiler

2008-10-31 Thread jitendra jain
Paul, Sorry for late reply. I'm using this for load testing. Thanks, with Regards, Jitendra Jain From: Paul Andrews [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, 25 October, 2008 9:28:27 PM Subject: Re: [flexcoders] web compiler 

Re: [flexcoders] Dynamicaly loading of images

2008-10-31 Thread Alexander Baetz
Hi, i use the SuperImage component now. Works fine. Thanks to all, Alexander Alexander Baetz schrieb: Hi, for a special tool i want to display buttons with icons that where loaded at runtime (based on an xml document loaded at runtime) in adobe livedocs i read that i cant load icons at

Re: [flexcoders] web compiler

2008-10-31 Thread Paul Andrews
Jitendra, What specifically is it about dynamic compilation that makes this so useful in this kind of application? I'm struggling to get the point! Paul - Original Message - From: jitendra jain To: flexcoders@yahoogroups.com Sent: Friday, October 31, 2008 7:35 AM Subject:

[flexcoders] Online help for flex applications

2008-10-31 Thread Marco Catunda
Hi, I just discuss how is the best way to make a on-line help for flex application. I'm thinking to write the help text in wiki system with some marks to inform flex app where is the help text for. Getting static html from wget approach and process this marks in a batch script. This marks will

[flexcoders] New to ItemRenderers

2008-10-31 Thread Tyler Kocheran
I'm trying to create a simple List-based application to try and learn more about ItemRenderers. How do I make my ItemRenderer automatically size to fit whatever is inside of it? Right now I've got this as my ItemRenderer: mx:VBox mx:Text text={data.label} width=100%/ /mx:VBox I'm not

[flexcoders] SWFLoader: access its contents right away

2008-10-31 Thread Ignasi Lirio
Hi all, I am new in this group, so hello to everyone :-) I want to discuss here about SWFLoader component in Flex 3, and how to access their contents... programatically. Just for short: I have an existing, empty SWFLoader object in my MXML code. After some time, I just want to populate it

Re: [flexcoders] load fla file into web UI then edit image inside it

2008-10-31 Thread Tyler Kocheran
Well, first you need to implement some backend programming which will read a FLA file. You can try opening an FLA file with Notepad or maybe as a ZIP Archive... I'm not sure which format the FLA type follows, if it even has a format. Once you 'get in' to the FLA file's contents, you'll have to

Re: [flexcoders] web compiler

2008-10-31 Thread jitendra jain
Paul this link will help you http://labs.adobe.com/wiki/index.php/Flex_Stress_Testing_Framework  Thanks, with Regards, Jitendra Jain From: Paul Andrews [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, 31 October, 2008 2:54:05 PM Subject: Re:

Re: [flexcoders] web compiler

2008-10-31 Thread Paul Andrews
Thanks Jitendra. It's not an article I'd looked at. I'm really still quite surprised that Adobes test setup uses dynamically compiled mxml rather than just precompiled swfs, but I suppose there's a reason. Paul - Original Message - From: jitendra jain To:

Re: [flexcoders] load fla file into web UI then edit image inside it

2008-10-31 Thread Rich Rodecker
supposedly you would be able to do something like that with flash's new file format, xfl (not with flas): http://www.moock.org/blog/archives/000269.html I haven't touched cs4 or heard anything more about xfl so that's all i have on that. You *might* be able to pull something off with jsfl, but I

Re: [flexcoders] need your advice on flash or flex

2008-10-31 Thread Tom Chiverton
On Friday 31 Oct 2008, vuthecuong wrote: option. But tenically can I load fla file into web UI (using php+SQL) then modify text and image embed into that fla file (using imagemagick + flex)? thanks and regards, AFAIK you can't edit .fla files with those two tools. You'll need to use (run

[flexcoders] Flex htmlText component

2008-10-31 Thread brucewhealton
Hello all, I thought I could use the Accordion panel to nicely layout a collection of poems. The problem is getting the poetry to layout on the page right. I sure could use some tips on this. I have an Accordion wrapped in a Panel container. That's not the issue. The issue is the

Re: [flexcoders] web compiler

2008-10-31 Thread jitendra jain
The constructor for the LCDSTestManager class takes a String that uniquely identifies the application/browser instance. When the Test Admin application calls the browser server, it passes the URL of the MXML test application to the browser server. The Test Admin application also passes a unique ID

Re: [flexcoders] web compiler

2008-10-31 Thread Paul Andrews
- Original Message - From: jitendra jain To: flexcoders@yahoogroups.com Sent: Friday, October 31, 2008 1:26 PM Subject: Re: [flexcoders] web compiler The constructor for the LCDSTestManager class takes a String that uniquely identifies the application/browser instance. When

Re: [flexcoders] web compiler

2008-10-31 Thread Paul Andrews
- Original Message - From: Paul Andrews To: flexcoders@yahoogroups.com Sent: Friday, October 31, 2008 1:37 PM Subject: Re: [flexcoders] web compiler  - Original Message - From: jitendra jain To: flexcoders@yahoogroups.com Sent: Friday, October 31,

[flexcoders] AdvancedDataGrid update problems

2008-10-31 Thread kallebertell
I'm facing a problem where an advanced data grid (adg) with a hierarchical collection (~500-1000 rows) doesn't redraw properly after sorting is applied to the underlying collection. The fun bit is that it isn't reproduceable. The occurance seems to be completely random but somehow related to

[flexcoders] Re: What the heck am I doing wrong with my GroupingCollection?

2008-10-31 Thread Mark
I'm still looking for some help with this one. I received a little direction on the Adobe board but I'm still confused and am still obviously doing it wrong. Here is what the structure of the ADG should look like to the user: Person Name (column 1) Project Name (column 1) Date (column

RE: [flexcoders] Flex htmlText component

2008-10-31 Thread Keith Reinfeld
Give mx:Text condenseWhite=true a try. Regards, -Keith http://keithreinfeld.home.comcast.net http://keithreinfeld.home.comcast.net/ _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of brucewhealton Sent: Friday, October 31, 2008 4:46 AM To:

[flexcoders] Re: UI component, a set function creationComplete

2008-10-31 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I know I shouldn't step in here, but I'd like to ask for a cease- fire. Faithful Flex developers may know that Amy was the guinea pig for Gordon and my first article in Flex Authority magazine where we discussed the

[flexcoders] Re: load fla file into web UI then edit image inside it

2008-10-31 Thread valdhor
About the only way I could see this happening is using MacOS X as your server platform. You could have Flash CS4 running and use AppleScript to control it. (You can exec AppleScript scripts from PHP). --- In flexcoders@yahoogroups.com, Rich Rodecker [EMAIL PROTECTED] wrote: supposedly you

[flexcoders] Custom log

2008-10-31 Thread templeavenue
hi.. I'd like to create a custom log...but I am kinda stuck now ( I have read some tutorials for custom but it's a little different than what I want). Basically, I want to customize so that I can do like this myLog.getLogger(someFilterWebService).info(arg1,arg2) it's going to write to the server.

[flexcoders] Re: New to ItemRenderers

2008-10-31 Thread Tim Hoff
On the list tag, variableRowHeight=true; -TH --- In flexcoders@yahoogroups.com, Tyler Kocheran [EMAIL PROTECTED] wrote: I'm trying to create a simple List-based application to try and learn more about ItemRenderers. How do I make my ItemRenderer automatically size to fit whatever is inside

Re: [flexcoders] Custom log

2008-10-31 Thread Paul Andrews
If you just want to write messages to a server log, couldn't you just make your own standalone class rather than bother extending anything else? Paul - Original Message - From: templeavenue [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, October 31, 2008 3:22 PM Subject:

Re: [flexcoders] Custom log

2008-10-31 Thread Nate Beck
I second Paul. This seems like an entirely new implementation of logging. I've done something very similar that what your wanting to do. Let me see if I can dig up that code. Cheers, Nate On Fri, Oct 31, 2008 at 9:21 AM, Paul Andrews [EMAIL PROTECTED] wrote: If you just want to write

[flexcoders] Center Checkbox in DG Column

2008-10-31 Thread markgoldin_2000
I am trying to get a checkbox working properly in my DG column when it's placed in a HBox in order to center the checkbox. I am overriding a few functions in the checkbox but none of them gets any hit. Do I need also override something in the HBox container? Thanks for help.

[flexcoders] Re: finding out if a child is in view with the current scroll location of a Canvas

2008-10-31 Thread Aaron Miller
Is it to early to bump? I'm sure this is a common procedure, I'm just kind of new to display level programming. How would one go about pragmatically scrolling a Canvas until one of it's children is in view? I know how to do the rest, I just don't know how to find when the child is in view. Thanks

[flexcoders] Re: finding out if a child is in view with the current scroll location of a Canvas

2008-10-31 Thread Tim Hoff
Hi Aaron, If you kow the index of the canvas child that you want to scroll to, something like this will work: myCanvas.verticalScrollPosition = myCanvas.getChildAt(myChildIndex).y; -TH --- In flexcoders@yahoogroups.com, Aaron Miller [EMAIL PROTECTED] wrote: Is it to early to bump? I'm sure

[flexcoders] unable to open services-config.xml

2008-10-31 Thread creativepragmatic
Hello Everyone, I get the following error: unable to open '/home/demo1/tomcat/webapps/blazeds/WEB- INF/flex/services-config.xml' I understand that this is being caused by the additional compiler argument: -services /home/demo1/tomcat/webapps/blazeds/WEB-INF/flex/services- config.xml -locale

RE: [flexcoders] SWFLoader: access its contents right away

2008-10-31 Thread Alex Harui
The complete event tells you when the load is complete. All SWFLoader loads from the network are asynchronous. You'll always have to wait to access the data From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ignasi Lirio Sent: Thursday, October 30, 2008 2:36 PM To:

Re: [flexcoders] Re: New to ItemRenderers

2008-10-31 Thread Tyler Kocheran
Thanks, that's exactly what I needed! On Fri, Oct 31, 2008 at 9:21 AM, Tim Hoff [EMAIL PROTECTED] wrote: On the list tag, variableRowHeight=true; -TH --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Tyler Kocheran [EMAIL PROTECTED] wrote: I'm trying to create a simple

[flexcoders] Re: Flex htmlText component

2008-10-31 Thread Amy
--- In flexcoders@yahoogroups.com, Keith Reinfeld [EMAIL PROTECTED] wrote: Give mx:Text condenseWhite=true You also might want to use a dataGrid with the vertical and horizontal separators hidden and use a labelFunction in the first column to show the index of the line within the

Re: [flexcoders] rollOut event

2008-10-31 Thread Richard Rodseth
Target is the pod (the window-like thingy) and related object is the application. The pod is based on VBox and the title is currently an HBox with link buttons and a spacer. As a test, I gave the HBox title a fixed height, and the leavePod handler fires when moving off the info LinkButton in any

[flexcoders] Flash player 10 required for my swf?

2008-10-31 Thread ivo
Hello all, I had been getting reports from users that my widget swf was displaying the dialog This content requires Adobe Flash Player 10 but I could not reproduce it. I run and develop with Flash Player 9 installed. Other users that only had Flash player 9 installed also could run it without

[flexcoders] Re: textArea.setFocus();

2008-10-31 Thread valdhor
Bug has been filed. I would appreciate some votes so we can get some attention to this. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I think you can open bugs against the Flash Player now, so I would do that, and reference this bug From: flexcoders@yahoogroups.com

[flexcoders] Re: textArea.setFocus();

2008-10-31 Thread valdhor
Bug has been filed. I would appreciate some votes so we can get some attention to this. https://bugs.adobe.com/jira/browse/FP-879 --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I think you can open bugs against the Flash Player now, so I would do that, and reference

Re: [flexcoders] Flash player 10 required for my swf?

2008-10-31 Thread Daniel Freiman
I think the detection script checks to see if you have the required version. If you don't, then it will tell you that you need the most recently released version of Flash regardless of what version the wrapper actually requires. This does cause confusion form a troubleshooting standpoint, but

RE: [flexcoders] rollOut event

2008-10-31 Thread Alex Harui
Most containers have no backgrounds so the mouse falls through to what is below it. Set a background on the container(s) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Friday, October 31, 2008 11:34 AM To: flexcoders@yahoogroups.com Subject: Re:

Re: [flexcoders] rollOut event

2008-10-31 Thread Richard Rodseth
Ah! Just what I needed. Works like a charm. Thanks. On Fri, Oct 31, 2008 at 12:19 PM, Alex Harui [EMAIL PROTECTED] wrote: Most containers have no backgrounds so the mouse falls through to what is below it. Set a background on the container(s) *From:* flexcoders@yahoogroups.com

[flexcoders] Re: Center Checkbox in DG Column

2008-10-31 Thread Amy
--- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: I am trying to get a checkbox working properly in my DG column when it's placed in a HBox in order to center the checkbox. I am overriding a few functions in the checkbox but none of them gets any hit. Do I need

[flexcoders] Re: Flex and Screen Readers

2008-10-31 Thread Gus
This page has some interesting information about this combination: http://www.adobe.com/accessibility/products/flex/ according with that information, screen reader are only available in Windows, are there any plan to implement it in Linux or Mac? Gus

Re: [flexcoders] Flash player 10 required for my swf?

2008-10-31 Thread ivo
Thanks for your reply. My point is that I am not using any Flash Player 10 features, my dev build environment dont have Flash player 10 installed, I am building using the 3.1 SDK and the project is configured to target 9.0.124. The output swf passes QA for Flash Player 9. The 'Flash

Re: [flexcoders] Flash player 10 required for my swf?

2008-10-31 Thread Daniel Freiman
I'm going to stand by my theory that it's going to ask for Flash 10 no matter what once it fails the detection script. But I'm at a loss as to why it's failing at all, unless users are confused between the different versions of Flash 9. But your test would seem to discredit user confusion.

[flexcoders] Re: SWFLoader: access its contents right away

2008-10-31 Thread lagos_tout
Hi, I recently did something like this. But it was more complicated because I was loading a swf from a different domain from it's parent. I needed to attach an event handler to the swf when SWFLoader was done loading. Then at some point, the loaded swf would broadcast an event, and the parent

[flexcoders] Delays in posts

2008-10-31 Thread lagos_tout
You know, I love this group. But the delays suck. I posted 2 messages at least 3 days ago and they still haven't shown up. I guess if I have an urgent question, I'm going to have to post elsewhere, as much as I'm reluctant to do that - the people on this list are very knowledgeable and

RE: [flexcoders] Delays in posts

2008-10-31 Thread Dimitrios Gianninas
I checked your account and it is unmoderated, which is the way it is suppose to be. Maybe you can direct me to the messages offline and I check to see where they are? Can you see them via web interface? http://tech.groups.yahoo.com/group/flexcoders/messages

Re: [flexcoders] Re: Flex and Screen Readers

2008-10-31 Thread Weyert de Boer
Hi Gus, MacOSX comes with a nice screen reader out of the box. It's called VoiceOver. Yours, Weyert de Boer

[flexcoders] Re: SWFLoader: access its contents right away

2008-10-31 Thread lagos_tout
Wow, I messed up on that. Instead of -- //broadcast events that parent.swf can respond to. systemManager.dispatch(new Event(myChild)); use -- //broadcast events that parent.swf can respond to. systemManager.dispatch(new Event(myEventName)); --- In flexcoders@yahoogroups.com, lagos_tout

[flexcoders] Re: Center Checkbox in DG Column

2008-10-31 Thread markgoldin_2000
You could also potentially use my extended datagrid Where can I find it? --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2000@ wrote: I am trying to get a checkbox working properly in my DG column when it's

RE: [flexcoders] Re: Center Checkbox in DG Column

2008-10-31 Thread Alex Harui
Also see: http://blogs.adobe.com/aharui/2007/04/more_thinking_about_item_rende.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Friday, October 31, 2008 1:50 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Center Checkbox in DG

[flexcoders] Re: Delays in posts

2008-10-31 Thread lagos_tout
Hi, Thanks for the prompt response. I only use the web interface, both for posting and checking for responses. I do so by searching by my email address. This should should pull up all my posts, right? Yet when I do that, not even this thread shows in the results. Isn't that strange? I see

[flexcoders] Re: Center Checkbox in DG Column

2008-10-31 Thread Amy
--- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: You could also potentially use my extended datagrid Where can I find it? --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2000@

Re: [flexcoders] Re: Delays in posts

2008-10-31 Thread Doug McCune
Subscribe to the email list and have it send you individual emails. Then set up a filter in gmail to label all messages from the list and throw em into a folder and automatically out of the inbox. Then just let that sit and amass thousand of messages (my flexcoders label currently has 16,500

[flexcoders] Re: Center Checkbox in DG Column

2008-10-31 Thread markgoldin_2000
I could not find a sample for DG with a checkbox. Is there one? --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, markgoldin_2000 markgoldin_2000@ wrote: You could also potentially use my extended datagrid Where can I find it? ---

[flexcoders] Re: Center Checkbox in DG Column

2008-10-31 Thread markgoldin_2000
I dont know what I am missing, but still not working for me. Here is my code: import flash.events.Event; import mx.controls.*; import mx.controls.dataGridClasses.DataGridColumn; import mx.controls.listClasses.IDropInListItemRenderer; public class

[flexcoders] LinkBar | mx:dataProvider | does not work

2008-10-31 Thread ilikeflex
Hi I have below sample code(Code1) which is working fine and i have taken from livedocs. Now i have made modification to code1 and changed to code2. In code2 i am declaring the dataprovider property of the linkbar in a different way.I am using the mx:dataProvider tag.In this case linkbar

[flexcoders] Re: How do arguments to an AS3 class translate to MXML?

2008-10-31 Thread lagos_tout
Yeah. Cool, thanks. That's what I suspected. --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Regarding The AS3 class takes an argument. For future reference, IMXMLObject implemented as3 classes cannot have arguments in their constructors. As josh said,

[flexcoders] Re: Using addChild() in Flex to add a Flash component.

2008-10-31 Thread lagos_tout
Awesome. Thanks, Amy. --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, lagos_tout lagos.tout@ wrote: Hi, all. Is it possible to use addChild() in Flex to add a Flash instance of SimpleButton to a Flex app's displayList? I exported

RE: [flexcoders] Re: SWFLoader: access its contents right away

2008-10-31 Thread Tracy Spratt
Here is a complete example: http://www.cflex.net/showFileDetails.cfm?ObjectID=690 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lagos_tout Sent: Friday, October 31, 2008 4:45 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Delays in posts

2008-10-31 Thread Tim Hoff
16,500 unread messages. Slacker. :-) -TH --- In flexcoders@yahoogroups.com, Doug McCune [EMAIL PROTECTED] wrote: Subscribe to the email list and have it send you individual emails. Then set up a filter in gmail to label all messages from the list and throw em into a folder and

[flexcoders] Re: Delays in posts

2008-10-31 Thread markgoldin_2000
Same here. I am searching for my messages by my name but the last one I get is a month old. --- In flexcoders@yahoogroups.com, lagos_tout [EMAIL PROTECTED] wrote: Hi, Thanks for the prompt response. I only use the web interface, both for posting and checking for responses. I do so by

[flexcoders] How to pass data to popup window?

2008-10-31 Thread markflex2007
Hi , I need pass data from main window to popup window(mx:titlewindow).Please give me a idea how to do this. Please post here if you have a demo code to do this. Thanks Mark

[flexcoders] Re: How to pass data to popup window?

2008-10-31 Thread app.developer
Mark, What data are you passing to the popup so I can get an idea of what to pass to the window...and do you want to do this with or without a framework? Precia --- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: Hi , I need pass data from main window to popup

RE: [flexcoders] Re: Center Checkbox in DG Column

2008-10-31 Thread Alex Harui
Maybe: override public function set data(value:Object):void { if(value != null) { super.data = value; selected = ( value.label == true ? true: false); } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Friday, October 31, 2008 3:35 PM To: