Re: [flexcoders] Re: Mouse Clicks' Queue when Button is Disabled

2009-02-17 Thread Haykel BEN JEMIA
The problem seems to be somewhere else and not in the Button. Run the following application, then click on the button to disbale it, then click again when it's disabled. For me it behaves as expected, I don't get any Click events for the clicks I do while the button is disabled. ?xml version=1.0

Re: [flexcoders] Re: filter arraycollection with checkbox acting wired

2009-02-17 Thread Haykel BEN JEMIA
Can you click on the checkbox more than once (let's say 5 times) and resend the output? Haykel Ben Jemia Allmas Web RIA Development http://www.allmas-tn.com On Tue, Feb 17, 2009 at 8:57 AM, johndoematrix johndoemat...@yahoo.comwrote: when i replace the code and run the app, i get the

[flexcoders] Re: filter arraycollection with checkbox acting wired

2009-02-17 Thread johndoematrix
sorry i had forgotten to trace the item.pool. anyhow when i do that and i click the check box once i get true false true false true true when i click five times i get true false true false true true false false true false true true true false true false true true false false true false true true

Re: [flexcoders] Re: filter arraycollection with checkbox acting wired

2009-02-17 Thread Haykel BEN JEMIA
It seems like your data is OK. So I did a test application and I figured out that the filter function is wrong. It should only do the test if the checkbox is selected, otherwise it should always return true because in this case you want display all items. So here is my working test app, I hope you

[flexcoders] Re: filter arraycollection with checkbox acting wired

2009-02-17 Thread johndoematrix
Thanks Ben will let you know if it was successful, but am confident that this will work given your explanation.

[flexcoders] Re: Mouse Clicks' Queue when Button is Disabled

2009-02-17 Thread giladozer
Hi Haykel and thanks for the quick response. I guess I am missing something critical here... I'll investigate this more deeply... maybe it's a matter of milliseconds where the button is in the process of returning enabled and that's when the click are responsive again. Anyways... Thank you

[flexcoders] Re: DYNAMIC actionscript child layout.

2009-02-17 Thread sunild999999
Um, I think you just need to think about this a little differently. It's a percent value, so by definition it can only be 0-100. If you want a child component to be half the width of it's parent container, then you set the child component's width to be 50%... just like you would do in HTML.

[flexcoders] Re: perl and AMF

2009-02-17 Thread sunild999999
I haven't used this but there is a Perl AMF library: http://www.simonf.com/flap/ Perhaps this is the ancient implementation you're referring to. --- In flexcoders@yahoogroups.com, Guy Morton g...@... wrote: Is anyone using perl as a backend for remoting? I can't find a complete

[flexcoders] Flow Chart Modelling Tool

2009-02-17 Thread akn_carnage
Hi everyone, I would like to know if there exists any Flow Chart creation or Diagramming component either Commercial or Open Source for Flex 3? We need to create an IDE like application to drag and drop various components and connect them using lines etc. I heard of YFiles Flex but that is too

RE: [flexcoders] Presenting images with links to new Browser location

2009-02-17 Thread Tracy Spratt
Image does dispatch a click event. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of brucewhealton Sent: Monday, February 16, 2009 11:33 PM To:

[flexcoders] In AIR Application fonts getting distort

2009-02-17 Thread Ashish Verma
Hello All, Facing a strange problem. Actually I made an application using Flex - 3.0 later I build it Flex SDK 3.2 now on MAC system the font is getting distort what is wrong with application. I can see only the font with bold weight getting distort. Please advice me. Best, Ashish

Re: [flexcoders] Re: Flash 10 on mobile is a go

2009-02-17 Thread Tom Chiverton
On Monday 16 Feb 2009, app.developer wrote: A big THANK YOU to Adobe and the necessary mobile vendors that made this happen. Indeed. And I'm even more excited to know that the new v10 Player can run on these relatively CPU-poor devices, which hopefully means an updated Player for the Wii is

Re: [flexcoders] Components needed

2009-02-17 Thread Haykel BEN JEMIA
Some links: http://www.quietlyscheming.com/blog/components/flexbook/ http://dougmccune.com/blog/2007/11/19/flex-coverflow-performance-improvement-flex-carousel-component-and-vertical-coverflow/ http://www.thetechlabs.com/3d/simulating-piclens-with-flex-and-away3d-%E2%80%93-part-1/(there are also

Re: [flexcoders] Re: perl and AMF

2009-02-17 Thread Guy Morton
Yes, that project was last updated over 4 years ago. I'm not sure I want to invest time in developing a solution based on something that's not being actively developed (and that's assuming it even works with modern flash players). Guy On 17/02/2009, at 8:00 PM, sunild99 wrote: I

[flexcoders] AMF instead of XML over http?

2009-02-17 Thread Guy Morton
Is it possible to simply transfer data over http that has been encoded in AMF format, ie to bypass all the other remoting stuff and just use AMF as one might use XML? I've been looking at the docs and online and all the docs seem to assume you want the whole remoting thing with a gateway

Re: Re: [flexcoders] In AIR Application fonts getting distort

2009-02-17 Thread verma . lucky
Yes I did it but still not the font is distorting. Best, Ashish Did you clean the project after migrating to Flex 3.2? Haykel Ben Jemia Allmas Web RIA Development http://www.allmas-tn.com On Tue, Feb 17, 2009 at 10:52 AM, Ashish Verma verma.lu...@gmail.com wrote: Hello All, Facing a

Re: Re: [flexcoders] In AIR Application fonts getting distort

2009-02-17 Thread Johannes Nel
embed the font. its air after all so file size is not a concern On Tue, Feb 17, 2009 at 12:55 PM, verma.lu...@gmail.com wrote: Yes I did it but still not the font is distorting. Best, Ashish Did you clean the project after migrating to Flex 3.2? Haykel Ben Jemia Allmas Web RIA

Re: [flexcoders] AMF instead of XML over http?

2009-02-17 Thread Haykel BEN JEMIA
http://www.roboncode.com/articles/144 Haykel Ben Jemia Allmas Web RIA Development http://www.allmas-tn.com On Tue, Feb 17, 2009 at 11:45 AM, Guy Morton g...@alchemy.com.au wrote: Is it possible to simply transfer data over http that has been encoded in AMF format, ie to bypass all the

Re: [flexcoders] AMF instead of XML over http?

2009-02-17 Thread Johannes Nel
you mean build an swf and download that and get the compiled in data from that On Tue, Feb 17, 2009 at 12:45 PM, Guy Morton g...@alchemy.com.au wrote: Is it possible to simply transfer data over http that has been encoded in AMF format, ie to bypass all the other remoting stuff and just

Re: Re: Re: [flexcoders] In AIR Application fonts getting distort

2009-02-17 Thread verma . lucky
Hi Jon, I am not using any extra font in my AIR app but only simple system font that flash palyer support. previously it was working fine but now it's distorting only on MAC machine not for windows. what could be the possible reason. is it need Flash Player 10. Best, Ashish On Feb 17,

[flexcoders] Re: Flow Chart Modelling Tool

2009-02-17 Thread kosir.milan
You can try Diagrammer or Visualizer from KapLab (http://lab.kapit.fr/), their components are all free and good quality. Milan --- In flexcoders@yahoogroups.com, akn_carnage akn_carn...@... wrote: Hi everyone, I would like to know if there exists any Flow Chart creation or Diagramming

Re: [flexcoders] In AIR Application fonts getting distort

2009-02-17 Thread Haykel BEN JEMIA
Did you clean the project after migrating to Flex 3.2? Haykel Ben Jemia Allmas Web RIA Development http://www.allmas-tn.com On Tue, Feb 17, 2009 at 10:52 AM, Ashish Verma verma.lu...@gmail.comwrote: Hello All, Facing a strange problem. Actually I made an application using Flex - 3.0

Re: Re: Re: Re: [flexcoders] In AIR Application fonts getting distort

2009-02-17 Thread verma . lucky
Hello All, I have downloaded the latest flash player 10 for MAC and than tried but no luck. Please advice. On Feb 17, 2009 4:39pm, verma.lu...@gmail.com wrote: Hi Jon, I am not using any extra font in my AIR app but only simple system font that flash palyer support. previously it was

Re: [flexcoders] AMF instead of XML over http?

2009-02-17 Thread Peter Hall
ByteArray supports readObject() and writeObject() which read and write objects using AMF. The ByteArray can be written to disc as a file, or sent to a server as a variable (you may have to 7bit- or base64-encode it). Once you have this file, you can load it into your application using any means

Re: [flexcoders] AMF instead of XML over http?

2009-02-17 Thread Guy Morton
Thank you...that's exactly what I was missing! On 17/02/2009, at 10:05 PM, Haykel BEN JEMIA wrote: http://www.roboncode.com/articles/144 Haykel Ben Jemia Allmas Web RIA Development http://www.allmas-tn.com On Tue, Feb 17, 2009 at 11:45 AM, Guy Morton g...@alchemy.com.au wrote: Is

Re: [flexcoders] AMF instead of XML over http?

2009-02-17 Thread Guy Morton
No, I just meant to encode my data in AMF format instead of XML for faster/more compact transfer over http. On 17/02/2009, at 10:05 PM, Johannes Nel wrote: you mean build an swf and download that and get the compiled in data from that On Tue, Feb 17, 2009 at 12:45 PM, Guy Morton

Re: [flexcoders] AMF instead of XML over http?

2009-02-17 Thread Guy Morton
Yes, thanks, I knew the tools were all there, just didn't know how to put it all together. The post Haykel Ben Jemia sent made it all clear. On 17/02/2009, at 10:38 PM, Peter Hall wrote: ByteArray supports readObject() and writeObject() which read and write objects using AMF. The ByteArray

[flexcoders] ImageSnapshot sandbox problem

2009-02-17 Thread Guy Morton
Hi all I'm using Virtual Earth and the UMap component (afcomponents.com) to display maps in my app. I want to use ImageSnapshot to capture the map (and my overlays) and allow the user to save it to disk etc. However, when I run the code on the server I get the dreaded sandbox issue:

Re: [flexcoders] AMF instead of XML over http?

2009-02-17 Thread Anirudh Sasikumar
Hi, This is an excellent question. AMF has lots of potential as a data format. Peter is right. You can leverage ByteArray. I have a Flex component that internally does this (but it only expects the result from the HTTP call to be in AMF, you'd need to manually use ByteArray.writeObject() to

[flexcoders] Re: filter arraycollection with checkbox acting wired

2009-02-17 Thread johndoematrix
hi Ben when i tried the solution you gave, it worked very very well. but this is when am using a single criteria. when i try to add it to a filter function that filter's based on more than one criteria that's when there come's a problem.

[flexcoders] Ridiculous Thoughts...

2009-02-17 Thread nathanleewei
Have you developed Commands/Front Controller of Cairngorm? Have you developed Event Map of Mate? Have you thought about a much nicer Framework? Here is my Ridiculous Thoughts of Open Infrastructure Solution for Flex Application Architecture. http://code.google.com/p/flexrock/ Any ideas or

Re: [flexcoders] Components needed

2009-02-17 Thread Jeffry Houser
Don't forget about FlexLib ( flexlib.net ) as a source for components. Although I don't know a commercial component that would meet Bruce's current need, there are commercial components vendors out there: http://www.flextras.com?c=104 ( Me ) and Drumbeatinsight.com are two that come to

RE: [flexcoders] default skin in flex 3 component

2009-02-17 Thread Stephen Gilson
The doc on skinning is located here: http://livedocs.adobe.com/flex/3/html/skinning_1.html Was that helpful? Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of gwangdesign Sent: Tuesday, February 17, 2009 12:36 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Components needed

2009-02-17 Thread oneworld95
Google Code has a ton of Flex components; just run this search: http://tinyurl.com/c2kkmw It can take a bit of digging, but lots of free components there. - Alex C --- In flexcoders@yahoogroups.com, Jeffry Houser j...@... wrote: Don't forget about FlexLib ( flexlib.net ) as a source for

[flexcoders] writing data to SQL database

2009-02-17 Thread Danny Buetow
Greetings All, Yes, I am new to FLEX, as my question will surely show. I am making a simple CRUD app designed to administer my table of users. I used the ColdFusion wizard and created a Master/Detail set. The query is simple and tests out fine, however, when I Run the application and test

Re: [flexcoders] Re: DYNAMIC actionscript child layout.

2009-02-17 Thread Nathaniel Skiba
Percent width and height are based on the percent of their parent container's size. Thus, with your example, you'd want: var graphLayout:Canvas = new Canvas(); graphLayout.percentWidth=50; graphLayout.percentHeight=50; testlayout.addChild(graphLayout); You

[flexcoders] Bones and inverse kinematics on FLEX : where to find IKManager ?

2009-02-17 Thread yarekc
Hello I have created a SWF with bones which works good. When I do import it into Flex 4 mx:Image src=bones.swf It is displayed, but bones are nort active. I read that you need to import import fl.ik.* But FLEX does have theses classes ! Any way to have IK inside a FLEX application ? regards

Re: [flexcoders] Image-swfLoader-memory

2009-02-17 Thread Alain Thibodeau
Excellent, thanks Alex, great help!   From: Alex Harui aha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Monday, February 16, 2009 4:21:14 PM Subject: RE: [flexcoders] Image-swfLoader-memory There’s a profiler tutorial on my

Re: [flexcoders] [Req] What do you (love|hate|wish for) about (mx.*|Cairngorm|PureMVC|Mate|Prana|BlazeDS)?

2009-02-17 Thread alberto.acevedo
Josh, I'm using Flex with Mate in the client side, Spring + BlazeDS + iBatis in the server side. I was using Cairngorm but the use of Cairngorm events would force other teams developing modules to also use Cairngorm. The Mate framework is not intrusive and it uses Flash events so other teams

Re: [flexcoders] Re: Flas 10 on mobile is a go

2009-02-17 Thread Jon Bradley
On Feb 16, 2009, at 10:43 PM, Anatole Tartakovsky wrote: Jon, That is assumption based on the current status quo and not counting Adobe's and community capabilities and hardware in 15 month from now. Touchscreen is very questionable in most cases - slow and not very accessible in real

[flexcoders] Anyone tried effects on ChartItems in charts?

2009-02-17 Thread Sam Lai
Hi everyone, I've got a column chart that displays values for each day for say a month. When I click on a particular bar, I want to fade out all the days except those matching the one clicked, e.g. if I clicked on a bar and that bar represented a Monday, I want to fade out all bars except if they

[flexcoders] Re: Mouse Clicks' Queue when Button is Disabled

2009-02-17 Thread Amy
--- In flexcoders@yahoogroups.com, giladozer gilado...@... wrote: Thanks Alex for the quick response. However, the button is supposed to turn enabled after the result is returned. The problem is that while it looks like the button is disabled - clicking on it results in entering to the

Re: [flexcoders] Re: DYNAMIC actionscript child layout.

2009-02-17 Thread - -
Hi Sunil, this is what I'm trying to replicate in actionscript: mx:Canvasid=parentCanvas width=100% height=100%    mx:Canvasid=childCanvas width={parentCanvas.width} height={parentCanvas.height-childText.height}//mx:Canvas In MXML this layout is DYNAMIC, meaning if I resize my window, all my

[flexcoders] Using an itemRenderer in a grid and rendering glitches

2009-02-17 Thread biosmonkey
I have an adg that displays a tree of items, along with a custom item renderer that shows an icon representing status. For the most part this works well, however, in some rare circumstances when scrolling I have seen the item renderer glitch ... sometimes it appears to be double rendered,

[flexcoders] FlexCamp Miami Registration Open

2009-02-17 Thread Andrew Powell
The next Flex Camp event in Miami, Florida in the Hurricane100 Room at the BankUnited Center on the campus of the University of Miami on March 6th. Registration is only $30 for a whole day of great Flex and AIR content. http://www.flexcampmiami.com

RE: [flexcoders] Prob with CopyTo in AIR[getting File or directory does not exist Error]

2009-02-17 Thread Kevin Benz
You need to use the HTTP objects to download the file and save it as a local file. File which creates a reference to the file is incompatible with the stream based HTTP. As I remember, File can only reference the app:// and file:// local protocols. From: flexcoders@yahoogroups.com

[flexcoders] Unloading a swf that includes a ViewStack can cause a RTE

2009-02-17 Thread rob_mcmichael
Hi all, I am sill seeing this bug when trying to unload a SWF in an AIR 1.5 project: http://bugs.adobe.com/jira/browse/SDK-17422 I have tried everything mentioned but no avail. If anyone can help, please let me know. Thanks Rob

[flexcoders] HTTPRequest and Air too slow?

2009-02-17 Thread florian.salihovic
I'm currently devloping an AIR app. This causes some serious headaches, because of the following problem: When i run the application in my local network, it is fast and responses are in the client in a blink of an eye. But it seems like the app doesn't behave the same way everytime. It was

Re: [flexcoders] Re: Installing an AIR APP with configuration

2009-02-17 Thread bjorn
yeah, I did make progress. You can give the Application arguments during install: http://www.davidtucker.net/2008/01/10/air-tip-5-passing-arguments-to-an-application-on-install/ ..then it's just a matter of saving this in a file in applicationStorageDirectory or EncryptedLocalStore ..

[flexcoders] Deep copy line chart

2009-02-17 Thread lolr3a
Hi, Is there a simple way to deep copy a linechart? I saw ObjectUtil.copy doesn't work because this is a displayObject. thanks

[flexcoders] Displaying Extremely large fonts

2009-02-17 Thread Stephen More
Is there a way to display extremely large fonts in Flash ? I have tried: var format:TextFormat = new TextFormat(); format.font = Verdana; format.color = 0x00; format.size = 72; [TextLineMetrics ascent:72, descent:16, leading:0, width:40, height:88, x:2] format.size = 144; [TextLineMetrics

Re: [flexcoders] HTTPRequest and Air too slow?

2009-02-17 Thread Tom Chiverton
On Tuesday 17 Feb 2009, florian.salihovic wrote: behave the same way everytime. It was tested in a different environment and the responses reached the client after seconds. It was compared to an HTML-frontend which uses the same PHP-API in the background. The HTML frontend was constantly fast.

Re: [flexcoders] Deep copy line chart

2009-02-17 Thread Tom Chiverton
On Tuesday 17 Feb 2009, lolr3a wrote: Is there a simple way to deep copy a linechart? With the aim of doing what ? There are many examples of taking a bitmap of DisplayObjects, for instance. -- Tom Chiverton Helping to centrally transform virtual edge-of-your-seat web-readiness

Re: [flexcoders] Bones and inverse kinematics on FLEX : where to find IKManager ?

2009-02-17 Thread Tom Chiverton
On Tuesday 17 Feb 2009, yarekc wrote: Hello I have created a SWF with bones which works good. When I do import it into Flex 4 Have you tried in Flex 3, because Flex 4 isn't released yet, so could well be just broken. mx:Image src=bones.swf It is displayed, but bones are nort active. Do

Re: [flexcoders]Class path alias

2009-02-17 Thread Tom Chiverton
On Saturday 14 Feb 2009, dorkie dork from dorktown wrote: import com.domain.class; public var MyAlias = ClassAlias(com.domain.class); var instance:MyAlias = new MyAlias(); You could use something like ClassFactory, maybe, but what's your use case ? -- Tom Chiverton Helping to interactively

Re: [flexcoders] How to stop Flex from compiling my Java source files

2009-02-17 Thread Tom Chiverton
On Sunday 15 Feb 2009, elevight wrote: Java source files are in C:\Tomcat5\webapps\FlexApp\WEB-INF\src. When I build my Flex application, it tries to recompile the Java source files. Is there a way I can tell Flex Builder to leave my Java source files alone? It's causing me servlet errors.

Re: [flexcoders] Displaying Extremely large fonts

2009-02-17 Thread Weyert de Boer
Hmm. Did you try to scale it? Maybe that works?!?!

[flexcoders] Re: How to read the received ByteArray as SQLite?

2009-02-17 Thread handitan
Thx Johannes! --- In flexcoders@yahoogroups.com, Johannes Nel johannes@... wrote: you have to write it to the file system. if security is your concern encrypt it. we do this a lot, but we do not send it over web services, just using https get. On Mon, Feb 16, 2009 at 5:58 PM, handitan

Re: [flexcoders] Deep copy line chart

2009-02-17 Thread Tzahi El-Hay
I'm using alivePDF to export a chart to a PDF file... The export there makes use of a displayObject object... and I want to deep copy mine, because when I don't it affects the original object. http://alivepdf.bytearray.org/alivepdf-asdoc/ thanks From: Tom

[flexcoders] Re: HTTPRequest and Air too slow?

2009-02-17 Thread florian.salihovic
Actually both are doing the same thing. The HTML Frontend is an AJAX Client. It sends requests and gets the result. Allthough flex processes more data (about 10 times more), it's just a few k's... But somehow the HTTPService seems to wait longer for the service's response. --- In

[flexcoders] I am having a similar problem with fonts in AIR (mine involves away3d)

2009-02-17 Thread David Kramer
I'm experiencing something similar. To be more specific about my dilemma, the font distortion is in 3daway (so no one at Adobe will chime in I bet). The fonts aren't rendering correctly at all when at any angle but straight on. I embedded mine and...no dice either. Any help would be great. David

[flexcoders] Re: filter arraycollection with checkbox acting wired

2009-02-17 Thread Tim Hoff
This is asolutely comical. -TH --- In flexcoders@yahoogroups.com, johndoematrix johndoemat...@... wrote: hi Ben when i tried the solution you gave, it worked very very well. but this is when am using a single criteria. when i try to add it to a filter function that filter's based on more

[flexcoders] Capturing Phase

2009-02-17 Thread thelordsince1984
Hi, if i have a root application and a canvas (application's child), is possible to dispatch an event from the application to the canvas? the capturing phase is the right way, is it true? Thanks in advance Regards Lorenzo

[flexcoders] Is there any way to use predefined functions for a sortCompareFunction?

2009-02-17 Thread Keith Hughitt
When working with DataGrid ItemRenderers, you can say something like itemrenderer=Text, and Flex will know how to deal with the data. Is there anyway you can do this with a sortCompareFunction, e.g. sortCompareFunction=Numeric or sortCompareFunction=String? The reason is that I have some

[flexcoders] Publishing source code without Flex Builder?

2009-02-17 Thread Keith Hughitt
Anyone know how to include a View Source option in the context menu for Flex applications built using the SDK alone?

[flexcoders] Re: Flex End-User Documentation Tools

2009-02-17 Thread limscoder
Thanks for the info. I've tried searching for this, but (predictably) search terms like 'flex documentation' pull up a ton of results for actual Flex documentation and information about API documentation systems like ASDoc. If you have a link to a previous discussion of this topic, or a better

[flexcoders] Re: writing data to SQL database

2009-02-17 Thread Anthony DeBonis
You may find not many people use the wizard - its ok for a quick demo (maybe code table admins) but not for real application development. Check the CF Logs under the CF install dir, there may be something in the logs to tell what the problem is IF its on the CF side. I often create a basic cfm

[flexcoders] Interacting from outside local sandbox to java server

2009-02-17 Thread Jeremi Bergman
I have a java server that I modified based off of the SimpleServer java class. Everything works perfectly when I run from flex builder. As soon as I deploy it, it will not connect. I know this has to do with the crossdomain.xml file, but I cannot get the java class to send back what it needs

[flexcoders] Re: writing data to SQL database

2009-02-17 Thread Amy
--- In flexcoders@yahoogroups.com, Danny Buetow da...@... wrote: Greetings All, Yes, I am new to FLEX, as my question will surely show. I am making a simple CRUD app designed to administer my table of users. I used the ColdFusion wizard and created a Master/Detail set. The query

[flexcoders] Re: DYNAMIC actionscript child layout.

2009-02-17 Thread sunild999999
I think you want something like this: var parentCanvas:Canvas = new Canvas(); parentCanvas.percentWidth =100; parentCanvas.percentHeight = 100; var childCanvas:Canvas = new Canvas(); childCanvas.percentWidth = 100; childCanvas.percentHeight = 100; var childText:Text = new Text();

[flexcoders] How do I use CellRenderer in my AdvancedDataGrid? please help

2009-02-17 Thread yossi.baram
Hi, I need to implement an ItemRenderer on a specific column, Inside the column I need to hane an HBox that includs several images, the data I can take from the DataProvider of the dataGrid. What is the best way of doing that? Can you give me small example of using the CellRenderer, because I

[flexcoders] Module Issue....

2009-02-17 Thread Eric Dunn
I have done this twice before and apparently I am forgetting something.. 1) Create a main app with add a ModuleLoader and a button to load module. 2) Create Module - added some text field to display data.. 3) Run app and click button to load module.. I click the button and nothing happens...

[flexcoders] Re: Is there any way to use predefined functions for a sortCompareFunction?

2009-02-17 Thread Tim Hoff
Some people have extended DataGridColumn to handle nested objects and sorting. but, You might find this helpful: http://natescodevault.com/?p=61 http://natescodevault.com/?p=61 -TH --- In flexcoders@yahoogroups.com, Keith Hughitt keith.hugh...@... wrote: When working with DataGrid

[flexcoders] Re: Using an itemRenderer in a grid and rendering glitches

2009-02-17 Thread Amy
--- In flexcoders@yahoogroups.com, biosmonkey biosmon...@... wrote: I have an adg that displays a tree of items, along with a custom item renderer that shows an icon representing status. For the most part this works well, however, in some rare circumstances when scrolling I have seen the

[flexcoders] problem with services-config.xml in multiple work environments..

2009-02-17 Thread tchredeemed
Basically.. We develop on localhost:3000, we test on http://dev.oursite.com, and we go live on https://www.oursite.com. I need 3 different environments, one for each environment. Right now I have to recompile the SWF everytime I want to create it for a new environment. Obviously, when we have

[flexcoders] Colored Tabs

2009-02-17 Thread Wally Kolcz
I figured out how to turn one of the tabs red using a css snippet and the function below. Just it only works when the tab is not selected..what else would need to be added to get it to be all red all the time? mx:Style .tab1 { fill-colors: #e91116, #e91116; }

[flexcoders] Using Python with Flex

2009-02-17 Thread rbross77
Hello, I am look ing for some code example of using Python with Flex. I would like to be able to retrieve data using RemoteObjects and call the Python file/program to return the results in AMF format and not XML. Thank you,

Re: [flexcoders] Using Python with Flex

2009-02-17 Thread Maciek Sakrejda
http://pyamf.org/ ? -Original Message- From: rbross77 ro...@cswllc.com Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Using Python with Flex Date: Tue, 17 Feb 2009 19:38:11 - Hello, I am look ing for some code example of using Python with

[flexcoders] Re: problem with services-config.xml in multiple work environments..

2009-02-17 Thread Anthony DeBonis
What is the service type? If you talking AMF be sure to use {server.name} and not hard code the name... this is the default for most of the services in the config... did you have to change yours? Example - channel-definition id=my-amf class=mx.messaging.channels.AMFChannel

[flexcoders] Determining sound levels on video playback? leftpeak?

2009-02-17 Thread luvfotography
How can I determine the sound levels on a video playback? There is flash.media.SoundChannel.leftPeak, but it's only available on sound files, how can I use this on a video? Or is there another way?

[flexcoders] Re: Flex End-User Documentation Tools

2009-02-17 Thread stldvd
Hi, While this doesn't give a definitive answer, it will point you to some of the previous discussion on this matter. Search Flexcoders for RoboHelp and you will find some threads, e.g. One would hope that the company that owns Flash, Flex and RoboHelp is working on some integration... --

[flexcoders] interaction between mx:Image and mx:VSlider: causing Security Sandbox Violation

2009-02-17 Thread mr_j_harris
Hello, I've got an unusual and unwanted interaction between two controls going on. The first control (A) is a semi-complex control with custom actionscript and two Flex components: one custom (IconLoader) and one 'stock' (mx:Image): the custom pieice displays '.ico' files, the stock piece

[flexcoders] Re: HTML editor for Flex Builder 3?

2009-02-17 Thread huu...@ymail.com
Thanks Alan. I appreciate the response. Unfortunately, I'd prefer to use Flex Builder stand-alone and augment it via plugins rather than download Eclipse and augment it with the Flex Builder plugin. Any other suggestions? --- In flexcoders@yahoogroups.com, Alan K ultr...@... wrote: Download

Re: [flexcoders] Re: DYNAMIC actionscript child layout.

2009-02-17 Thread - -
The text always overlaps the canvas and remains at the top... ??? Am I doing something wrong? var parentCanvas.percentWidth =100; parentCanvas.percentHeight = 100;parentCanvas: Canvas = newCanvas();var childCanvas.percentWidth = 100; childCanvas.percentHeight = 100;childCanvas: Canvas =

RE: [flexcoders] problem with services-config.xml in multiple work environments..

2009-02-17 Thread Gregor Kiddie
We construct our Remote Objects at runtime. You can use something like servletPath = URLUtil.parseUriPath( Application.application.url ) + messagebroker/amf; to generate the URL you should be hitting (our URLUtil class strips the URL back to the context root, YMMV). That way you can

Re: [flexcoders] Is there any way to use predefined functions for a sortCompareFunction?

2009-02-17 Thread Jeffry Houser
Keith Hughitt wrote: When working with DataGrid ItemRenderers, you can say something like itemrenderer=Text, and Flex will know how to deal with the data. I just tested, this gives me a compiler error both on a ComboBox and DataGrid. What are you doing that I'm not doing? Is there

Re: [flexcoders] Re: HTML editor for Flex Builder 3?

2009-02-17 Thread Jeffry Houser
What's the difference between the two options? And/or why wouldn't you be able to install PDT as a plugin to Flex Builder? (Instructions for that seem to be here: http://wiki.eclipse.org/PDT/Installation#From_Update_Site ) Whether good or bad, I do most of my HTML editing in CFEclipse

Re: [flexcoders] Re: DYNAMIC actionscript child layout.

2009-02-17 Thread Jeffry Houser
I think that x and y values are defaulted to 0, 0; which would put your text in the top left of the canvas. The box may layout the canvas, but will not lay out children of the canvas. This looks like it might be a createChildren method? I would usually position elements in the

Re: [flexcoders] Is there any way to use predefined functions for a sortCompareFunction?

2009-02-17 Thread Adrian Williams
I don't think you can use the sortCompareFunction that way...it needs a function to process your data against. We use a number of customized sorting functions on a number of our fields via both sort.compareFunction as well as adg.sortCompareFunction, though funny enough, the compareFunction

Re: [flexcoders]Class path alias

2009-02-17 Thread dorkie dork from dorktown
During the discussion of the Fx prefix thing I was reminded when I was creating my own classes of the same name. For example, I think I was extending button and didn't want to change the name to anything else besides button so I had: public class Button extends mx.controls.Button Then in my

[flexcoders] [flexcomponents]Writing comments for properties on parent classes

2009-02-17 Thread dorkie dork from dorktown
Good morning Class (programming joke) I'm trying to write asdoc comments for properties on a class that i'm extending but don't know how. Example, public class SetProperty extends mx.states.SetProperty { public function SetProperty(target:Object = null, name:String = null,

[flexcoders] localConnection doesn't work with layered sfws

2009-02-17 Thread targetplanet
I have a project that was done in AS2, and instead of porting it to AS3(no budget..)I created an AS3 shell for all new features to be loaded into, and am communicating between the as2 and as3 with localConnection. This works fine, but the problem is since I want the new content to appear to be

RE: [flexcoders] interaction between mx:Image and mx:VSlider: causing Security Sandbox Violation

2009-02-17 Thread Alex Harui
If you don't get the exception dialog that halts the application, you can ignore those warnings. It'll slow your app on the debugger player, but the release player shouldn't spit that out so 99% of your end users should be unaffected Alex Harui Flex SDK Developer Adobe Systems

RE: [flexcoders] Capturing Phase

2009-02-17 Thread Alex Harui
The capture phase isn't really intended for that. The canvas should addEventListener to the application. 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 Behalf Of

RE: [flexcoders] Module Issue....

2009-02-17 Thread Alex Harui
Make sure the SWF is where you think it is. Other than that, looks ok. Attach listeners to events and see what’s happening. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] Unloading a swf that includes a ViewStack can cause a RTE

2009-02-17 Thread Alex Harui
What is the exact stack trace of the RTE? 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 Behalf Of rob_mcmichael Sent: Tuesday, February 17, 2009 7:17 AM To:

RE: [flexcoders] ImageSnapshot sandbox problem

2009-02-17 Thread Alex Harui
You can load foreign content, but you can't touch it. There are potential security issues involving sniffing through images of charts and what not. Normally you get around this using a proxy server Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog:

RE: [flexcoders] Presenting images with links to new Browser location

2009-02-17 Thread Alex Harui
You can put the image in a button, or place a Sprite over or under it as the hit detection area 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 Behalf Of

RE: [flexcoders] Re: filter arraycollection with checkbox acting wired

2009-02-17 Thread Tracy Spratt
I've quit this one. The original poster needs to develop his debugging techniques before going any further. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

Re: [flexcoders] Re: HTML editor for Flex Builder 3?

2009-02-17 Thread Sam Lai
That's definitely an option - go to Help - Software Updates - Find and Install. At least select the Europa Discovery Site when prompted for update sites. Click next and that should give you a list of things to pick to install. The names are pretty cryptic, and the descriptions aren't descriptions,

  1   2   >