[flexcoders] debug AMFPHP/flex -- beginner question

2007-03-07 Thread Rico Leuthold
Hi there, I do my first steps in programming flex and using amfphp. I have a simple program that loads data from mysql into a flex table. When I tried to extend the example into an adress book app, it didn't work any longer. The mysql data is not shown in the flex table. So I tried to

[flexcoders] AMFPHP 1.9 / RemoteObject pass arguments

2007-03-29 Thread Rico Leuthold
Hi everybody, I just started to use AMFPHP 1.9, which looks really promising. But now I'm stuck ... should be very simple - but can't figure it out. How can I pass arguments in the mx:RemoteObject/ to the (AMF) PHP function ? Thank's for answering ...

Re: [flexcoders] Re: File upload in Flex

2007-09-12 Thread Rico Leuthold
, but this list may increase (e.g. MP3 files etc). I have not seen an example of a Flex system which allows users to browse there local PC and upload files. Is it possible and if so how? Stephen ... Rico Leuthold [EMAIL PROTECTED] +41(0)76 512 05 50 ...

Re: [flexcoders] How to fully configure an AbstractService just using ActionScript?

2007-10-16 Thread Rico Leuthold
the presentation layer at the Flex client level, so I do not want to have MXML tags for my RPC services spread all over the code (I want to have some sort of an AS service factory class having all of these) Thanks. ... Rico Leuthold [EMAIL PROTECTED] +41(0)76 512 05

Re: [flexcoders] new Date(unixTimeStamp) doesn't work (Flex 3)

2007-10-23 Thread Rico Leuthold
=stampstamp=1180166923timezone=1) I get: Saturday, May 26th 2007, 9:08:43 (GMT +1) ... which is the date I want What am I missing here ? Thanks. _rico ... Rico Leuthold [EMAIL PROTECTED] +41(0)76 512 05 50 ...

Re: [flexcoders] TabNavigator no child selected

2007-11-18 Thread Rico Leuthold
... Rico Leuthold [EMAIL PROTECTED] +41(0)76 512 05 50 ...

Re: [flexcoders] AsDoc and libraries problem

2007-12-07 Thread Rico Leuthold
://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders% 40yahoogroups.com Yahoo! Groups Links ... Rico Leuthold [EMAIL PROTECTED] +41(0)76 512 05 50 ...

Re: [flexcoders] AsDoc and libraries problem

2007-12-10 Thread Rico Leuthold
using -doc-sources path/to/project instead of - source-path? AFAIK you don't need to specify the libs you're using then. regards, Christophe --- Christophe Herreman http://www.herrodius.com http://www.pranaframework.org 2007/12/7, Rico Leuthold [EMAIL PROTECTED]: I already have the swc

Re: [flexcoders] AsDoc and libraries problem

2007-12-10 Thread Rico Leuthold
/10, Rico Leuthold [EMAIL PROTECTED]: Hi, I already have the -doc-sources argument: I'm changing to the project root directory and invoke asdoc like this: asdoc -source-path . -doc-sources . ... and the flexlib is in ./libs/flexlib. So, based on the documention providing . as a -doc

Re: [flexcoders] Flex 3: ChartLabel.as - parent is null

2008-04-03 Thread Rico Leuthold
Yep ... most likely you stumbled over this bug ... https://bugs.adobe.com/jira/browse/FLEXDMV-1695 Use the workaround with not setting initially ... works for me ... On 02.04.2008, at 17:40, adtrantravis wrote: When adding a chart to a canvas component, sometimes I recieve the following

Re: [flexcoders] Loading XML in preloader/ before application onComplete

2008-04-03 Thread Rico Leuthold
Extend the DownloadProgressBar Class (name it e.g myPreloader) and override the preloader: override public function set preloader(value:Sprite):void { value.addEventListener(FlexEvent.INIT_COMPLETE, FlexInitComplete); // I added my download function to the INIT_COMPLETE event }

Re: [flexcoders] Re: View State change throws Error #1009 in ChartLabel/updateDisplayList()

2008-04-20 Thread Rico Leuthold
Yep - It's a bug - https://bugs.adobe.com/jira/browse/FLEXDMV-1695 _rico On 20.04.2008, at 00:17, craig081785 wrote: Have you found a solution to this yet, I'm encountering the exact same error on the same line. --- In flexcoders@yahoogroups.com, rleuthold [EMAIL PROTECTED] wrote: Hi,

Re: [flexcoders] Checking value in ArrayCollection

2008-06-10 Thread Rico Leuthold
Hi, I would do that with a view cursor on the array collection - but I have no idea if it's faster then your method. Check here: http://livedocs.adobe.com/flex/3/html/help.html?content=about_dataproviders_4.html the section called Using a view cursor. _rico On 09.06.2008, at 22:54,

[flexcoders] Resize from left to right

2008-08-14 Thread Rico Leuthold
Hi, I was pretty sure to find the answer in the archive - but nope ... couldn't find it. Is there an easy way to have the resize of a component going from left to right ? Thank's _rico

Re: [flexcoders] Using data from List Control to send to PHP

2008-10-02 Thread Rico Leuthold
... or use amfphp and you can send an array. _rico On 02.10.2008, at 21:16, Ryan Gravener wrote: You can iterate through the dataprovider; for each (var obj:Object in list.dataProvider) { //do work } Ryan Gravener http://twitter.com/ryangravener On Thu, Oct 2, 2008 at 3:11 PM, ghus32

[flexcoders] How to handle RemoteObject timeouts

2008-10-23 Thread Rico Leuthold
Hi, I'm searching for a good way to handle request timouts of remote object calls. There is no event which handles timeouts, but you can set a requestTimout for a RemoteObject - so what is that good for ? Every idea is welcome. Thank's _rico

Re: [flexcoders] Upgrade only ASDoc.

2008-11-12 Thread Rico Leuthold
Hi Josh, Yes I know that it's no problem have multiple sdk's installed. My problem is, that the nice ASDoc feature is Gumbo only but my app doesn't compile with Gumbo. So I thought there is maybe a way to have the ASDoc from Gumbo running over my Flex 3 app. _rico On 10.11.2008, at

Re: [flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-02-27 Thread Rico Leuthold
Hi Luke, I couldn't find any solution to this, but found a workaround. Just filter the underlying ArrayCollection, set it as source for the grouping collection and refresh the collection. ac.filterFunction = theFilterFunc; gc.source = ac; gc.refresh(); adg.expandAll(); This works for me.

[flexcoders] amfphp problem - Client.Error.DeliveryInDoubt - when trying to export image

2009-03-03 Thread Rico Leuthold
Hi, I have a really annoying, randomly occuring, problem with amfphp when I want to export an image file. The application is sending a byteArray (png encoded) to php over amfphp, where the png file is created and the image file is served for download. Sometimes that works perfect, but the

Re: [flexcoders] amfphp problem - Client.Error.DeliveryInDoubt - when trying to export image

2009-03-04 Thread Rico Leuthold
(this is needed if your upload page is available only to logged in users) On Tue, Mar 3, 2009 at 8:01 PM, Rico Leuthold rleuth...@sunrise.ch wrote: Hi, I have a really annoying, randomly occuring, problem with amfphp when I want to export an image file. The application is sending

Re: [flexcoders] amfphp problem - Client.Error.DeliveryInDoubt - when trying to export image

2009-03-04 Thread Rico Leuthold
is available only to logged in users) On Tue, Mar 3, 2009 at 8:01 PM, Rico Leuthold rleuth...@sunrise.ch wrote: Hi, I have a really annoying, randomly occuring, problem with amfphp when I want to export an image file. The application is sending a byteArray (png encoded) to php over amfphp

Re: [flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-03-04 Thread Rico Leuthold
a refresh() method. Thanks --- In flexcoders@yahoogroups.com, Rico Leuthold rleuth...@... wrote: Hi Luke, I couldn't find any solution to this, but found a workaround. Just filter the underlying ArrayCollection, set it as source for the grouping collection and refresh the collection

[flexcoders] Make label of LegendItem selectable

2009-07-09 Thread Rico Leuthold
Hi, I try to make the text of the LegendItem label selectable, unfortunately with no luck. I thought this approach woud do the trick: 1.) Extend LegendItem 2.) override the set label and get label methods 3.) override the createChildren method In the createChildren() method I try to add a