Re: [flexcoders] AMFPHP problem

2009-11-11 Thread Pete
As you probably know, NetConnection.Call.BadVersion means that an error was thrown in the php script, usually a syntax error, but your script runs fine on other servers. I would suspect something in the php config on the server is causing you trouble. I have the same problem every time I

[flexcoders] Re: Nested PopUp and Mouse_Down_Outside event

2009-11-11 Thread johncch85
Thank you for the suggestion. I looked at the event class and it would be quite tedious just to trap the mouse down event because of the need to traverse the owner chain. what I need to do is just to stop the mouse down event from bubbling up the chain. In the end I solved this problem by

Re: [Spam] RE: [flexcoders] tabbing between headerRenderers?

2009-11-11 Thread Nick Middleweek
Hey Alex, Thanks for your reply... I'm finding that event.preventDefault isn't working for me... This is it in a new flex web app... http://pastebin.com/m40b6a13c And when I run it in debug mode, click into the text input and press any key, I can see the keyCode but cancelable = false and

Re: [Spam] RE: [flexcoders] tabbing between headerRenderers?

2009-11-11 Thread Nick Middleweek
Alex, I've sorted it... My mistake.. I wasn't using the correct event and I needed to assign it using AS, not MXML... http://pastebin.com/d5a59014b Thanks for your help :) Nick 2009/11/11 Nick Middleweek n...@middleweek.co.uk Hey Alex, Thanks for your reply... I'm finding that

[flexcoders] Re: Progress for synchronous operation

2009-11-11 Thread valdhor
Could you use an indeterminate progress bar? (http://livedocs.adobe.com/flex/3/langref/mx/controls/ProgressBar.html) --- In flexcoders@yahoogroups.com, Richard Rodseth rrods...@... wrote: What's a good way to display progress or a busy cursor for a potentially long-running, but synchronous

Re: [flexcoders] Passing values from popup window to MXML component

2009-11-11 Thread Funand Learning
Hi, I have written a function and after checking the username and password, to toggle the buttons, but I get the following error: TypeError: Error #1009: Cannot access a property or method of a null object reference. Here is the function I wrote public function checkCredentials():void {

[flexcoders] Re: Progress for synchronous operation

2009-11-11 Thread ag_rcuren
I am not fully sure how AlivePDF works because I have never used it but I thought that it could be done asynchronously because I saw a complete event in the documentation that reads: Dispatched when PDF has been generated and available. The save() method generate this event That to me says

[flexcoders] Embedded and non-embedded fonts in a single text field at the same time

2009-11-11 Thread m_koks
Hi All, Is it possible to show some part of the text using non-embedded font and remaining text using embedded font in a single UITextField? I am trying a workaround for subscript and superscript. For this to work, I need to have the custom created subscript and superscript font to be

[flexcoders] Re: Odd DragOver Problem

2009-11-11 Thread droponrcll
--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Double check your logic about when you call acceptDragDrop Also, are you overriding createChildren? If so, please post your code.

[flexcoders] Re: How can I use Grouping collection to group data on the parent ?

2009-11-11 Thread droponrcll
--- In flexcoders@yahoogroups.com, Thomas Silvester thomas_...@... wrote: Please Can anyone help me out? There's a GroupingCollection example at flexdiary.blogspot.com. It's not an exact match for what you're asking, but you might find that it helps point you in the right direction. HTH;

Re: [flexcoders] Re: How can I use Grouping collection to group data on the parent ?

2009-11-11 Thread Thomas Silvester
ThanksĀ  much. Tom. --- On Wed, 11/11/09, droponrcll amyblankens...@bellsouth.net wrote: From: droponrcll amyblankens...@bellsouth.net Subject: [flexcoders] Re: How can I use Grouping collection to group data on the parent ? To: flexcoders@yahoogroups.com Date: Wednesday, November 11, 2009,

[flexcoders] Re: Odd DragOver Problem

2009-11-11 Thread bgamblin
Thank you for the help. I have a dragEnterHandler function which is called upon the main container's DragEvent.DRAG_ENTER event. The dragEnterHandler is the only place where acceptDragDrop is called, but that handler is only called when I'm on the left side of the container. I'm looking

[flexcoders] Re: AMFPHP problem

2009-11-11 Thread gotgoose09
So you would suggest increasing the memory allocation for scripts in php.ini? Are there any other settings I should check? --- In flexcoders@yahoogroups.com, Pete pe...@... wrote: As you probably know, NetConnection.Call.BadVersion means that an error was thrown in the php script, usually a

Re: [flexcoders] Re: AMFPHP problem

2009-11-11 Thread Tom Chiverton
On Wednesday 11 Nov 2009, gotgoose09 wrote: So you would suggest increasing the memory allocation for scripts in php.ini? Only if that's the problem :-) What does the error log of you PHP application say ? -- Helping to simultaneously negotiate out-of-the-box turn-key customers as part of

[flexcoders] Re: Odd DragOver Problem

2009-11-11 Thread bgamblin
I'm not overriding CreateChildren, but I'd be glad to post the code I'm using. Here's the function for when the main container is created: public function ColumnArranger() { super(); this.setStyle(borderStyle,solid); this.setStyle(borderThickness,1);

[flexcoders] Re: AMFPHP problem

2009-11-11 Thread gotgoose09
I was trying to enable that, but was unsuccessful. Do you know how I can enable it and get something useful out of it? Thanks, Ben --- In flexcoders@yahoogroups.com, Tom Chiverton tom.chiver...@... wrote: On Wednesday 11 Nov 2009, gotgoose09 wrote: So you would suggest increasing the

Re: [flexcoders] Re: AMFPHP problem

2009-11-11 Thread Pete
A quick check of my php.ini file and a default one, I spotted the following differences: - max_execution_time = 1200 ; Maximum execution time of each script, in seconds max_input_time = 1200; Maximum amount of time each script may spend parsing request data memory_limit = 256M ;

[flexcoders] Re: AMFPHP problem

2009-11-11 Thread droponrcll
--- In flexcoders@yahoogroups.com, Pete pe...@... wrote: As you probably know, NetConnection.Call.BadVersion means that an error was thrown in the php script, usually a syntax error, but your script runs fine on other servers. I would suspect something in the php config on the server is

Re: [flexcoders] Runtime fonts embedding in AIR

2009-11-11 Thread Sergey Kovalyov
But it seems that in this case loaded SWF resides in the different applcation domain and thus its Font.registerFont() call does nothing for the parent application. On Wed, Nov 11, 2009 at 1:25 AM, Alex Harui aha...@adobe.com wrote: I think most folks load the SWF as a byteArray using

[flexcoders] Re: AMFPHP problem

2009-11-11 Thread gotgoose09
Hmm, good point. The server is running 5.1.6 and I am running 5.2. Thanks for the links I will check them out. --- In flexcoders@yahoogroups.com, droponrcll amyblankens...@... wrote: --- In flexcoders@yahoogroups.com, Pete pete1@ wrote: As you probably know,

[flexcoders] Re: AMFPHP problem

2009-11-11 Thread gotgoose09
I found this So, I posted to flexcoders and it seems that the latest AMFPHP requires PHP 5.2.3, and my host had stalled out somewhere in 4. Bottom line, I can't post a working example unless my host upgrades, I switch hosting plans/hosts, or I can find a remoting option which will work on PHP

Re: [flexcoders] Re: Progress for synchronous operation

2009-11-11 Thread Richard Rodseth
Thanks. Yes, I wasn't expecting to show dynamically-updating progress during the synchronous operation. Just wanted to pop up something (or change the cursor) before, and remove it after. I'll take a closer look at the AlivePDF docs. On Wed, Nov 11, 2009 at 6:24 AM, ag_rcuren

Re: [flexcoders] Flex Data Grid Question

2009-11-11 Thread InvertedSpear
Apologies for resurrecting a somewhat old thread, but since my searches turned me up here and I spent several hours today working on this issue I thought it would be appropriate. Here's is the code I came up with that mostly solves this. My source data is just a basic XMLListCollection. The

Re: [flexcoders] Flex Data Grid Question

2009-11-11 Thread InvertedSpear
I'm not sure how to group in the way you're wishing it, but I am sure that it can be done. I think the trick is with the item renderers. Which is something I just learned about. Here's my entire code, Sorry I can't release the entire http service since it's to a protected site, but it pulls back

[flexcoders] Common Access Card (CAC) integration for login to flex app running in browser

2009-11-11 Thread d9_tech
I need to allow login to my Flex app (running in a browser on Windows, Linux, or Mac) from a goverment CAC card. Has anyone on this list ever done that or know where I can go for more info on how to make this happen?

[flexcoders] Chart Similar to Google finance ?

2009-11-11 Thread Dharmendra
Hi There, I need charts similar to google finance . Does any charting library support it ? . I explored all leading third party charting library but none of them seems to satisfy my requirement. please advice me on this .. Regard, Dharmendra

[flexcoders] Re: Chart Similar to Google finance ?

2009-11-11 Thread Matthew
Check anychart.com. They have some pretty good charts that might fit your needs. HTH, Matt --- In flexcoders@yahoogroups.com, Dharmendra chauhan_i...@... wrote: Hi There, I need charts similar to google finance . Does any charting library support it ? . I explored all leading third

[flexcoders] Determine the location of shared object files

2009-11-11 Thread ag_rcuren
I am hoping that someone can at least point me in the right direction here. I have an application that runs on the users desktop that I would like to be able to read / write flash shared object files. This is NOT an Air application so I need to manually write this file. My goal is to have my

Re: [flexcoders] Re: Progress for synchronous operation

2009-11-11 Thread Richard Rodseth
So I tried this pattern: private function onClickSave(event:Event):void { CursorManager.setBusyCursor(); var generatePDF:Function = function(e:Event):void { savePDF(bytes); }; // Delay start so cursor can

[flexcoders] When Do I Render a Legend in a Chart?

2009-11-11 Thread icepero
My Flex chart has code that creates a legend from each data series. Currently, I have the drawLegend function execute when a button is clicked. I am trying to get the legend to draw automatically but I am having trouble determining when to call the drawLegend function. Users click on an

[flexcoders] Cant get Java compiler classes to work - Error: -1

2009-11-11 Thread Nathan Russell
Hi, (sorry if this appears as a duplicate post - I dont think the first one posted properly into the mailing list) I wonder if anyone can help. I'm trying to write a very simple Java class using the Flex SDK 3.4 to compile a simple mxml file. The code I've written is: import java.io.File;

RE: [flexcoders] Runtime fonts embedding in AIR

2009-11-11 Thread Alex Harui
The applicationDomain shouldn't matter because all of the related classes should be wrapping a DefineFont object. LoadBytes() lets you choose an applicationDomain topology so you can always load directly into the main one if you want. Alex Harui Flex SDK Developer Adobe Systems

RE: [SPAM] Re: [flexcoders] Passing values from popup window to MXML component

2009-11-11 Thread Tracy Spratt
What reference is null? Yes, that architecture is common. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Funand Learning Sent: Wednesday, November 11, 2009 12:07 AM To:

[flexcoders] Re: using itemsChangeEffect when filtering a tilelist

2009-11-11 Thread stinasius
any help guys