Re: [flexcoders] Re: Actionscript SSH Library..heard of any?

2008-11-17 Thread Johannes Nel
Alchemy is sweeet! this weekend - dedicated to XSLT and some new compiler :) On Tue, Nov 18, 2008 at 5:51 AM, Nate Beck [EMAIL PROTECTED] wrote: Even though this is absolutely a preview / research project at the moment. Adobe Alchemy (http://labs.adobe.com/technologies/alchemy/): Welcome

Re: [flexcoders] Re: Actionscript SSH Library..heard of any?

2008-11-16 Thread Johannes Nel
or take a look at merapi with Air On Fri, Nov 14, 2008 at 10:43 PM, Jim Hayes [EMAIL PROTECTED] wrote: Could you use the webkit browser in AIR to do the SSL connection? I don't think it needs to be visible to work. Just an idea, and It's probable I've not understood the reasons the project

Re: [flexcoders] Re: sqlite insert issue

2008-11-04 Thread Johannes Nel
, Nov 4, 2008 at 8:22 AM, jason_williams_mm [EMAIL PROTECTED]wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] The confusion here is due to the affinities that you have selected. When the AIR embedded db cannot find the affinity specified

[flexcoders] sqlite insert issue

2008-11-03 Thread Johannes Nel
Hi All I have a sql statement which runs sans any issues in my sqlite viewer, but when executed from within air it gives me the error SQLError: 'Error #3132: Data type mismatch.', details:'could not convert text value to numeric value.' this is the table schema CREATE TABLE category ( id

Re: [flexcoders] Re: sqlite insert issue

2008-11-03 Thread Johannes Nel
-19 16:46:54.26' to a number. Have you tried converting it before adding it to the database? --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: Hi All I have a sql statement which runs sans any issues in my sqlite viewer, but when

Re: [flexcoders] Do you use a Mac?

2008-10-23 Thread Johannes Nel
i use a mac, but alongside this i develop in windows using vmware, the advantages of vm'ing is really what i am after, some people use ubuntu and a vm others use pc in our team. the vm is the key, new developer joins, here you go a complete setup environment. my environment gets a bit slow after

Re: [flexcoders] Rippling through state changes

2008-10-17 Thread Johannes Nel
this is also a nice way to test around the presentation model pattern, your pres model exposes the state the view should be in and dependent on what the data state of your pres model is in On Fri, Oct 17, 2008 at 3:41 PM, claudiu ursica [EMAIL PROTECTED]wrote: How about write a custom item

Re: [flexcoders] Can I play a video in slow motion? or frame by frame?

2008-10-07 Thread Johannes Nel
yup. On Tue, Oct 7, 2008 at 1:49 AM, Josh McDonald [EMAIL PROTECTED] wrote: Also, IIRC seek only goes to the nearest keyframe as well. -Josh On Tue, Oct 7, 2008 at 12:58 AM, Johannes Nel [EMAIL PROTECTED]wrote: i would advise against that. if you are playing the video in slow motion

Re: [flexcoders] Can I play a video in slow motion? or frame by frame?

2008-10-06 Thread Johannes Nel
i would advise against that. if you are playing the video in slow motion i would recomed making bitmap snapshots and using those to play it any pace you desire. On Mon, Oct 6, 2008 at 4:53 PM, Tom Chiverton [EMAIL PROTECTED]wrote: On Saturday 04 Oct 2008, luvfotography wrote: Is there a way

Re: [flexcoders] Bindable does not behavior in extended class

2008-09-18 Thread Johannes Nel
adding the Bindable metadata to a class makes it implement eventdispatcher automagically during the 2 step compilation. On Thu, Sep 18, 2008 at 4:55 PM, Michael Schmalle [EMAIL PROTECTED]wrote: Hi, This might be stupid but your ServiceForm is an EventDispatcher right? I have never seen an

Re: [flexcoders] Bindable does not behavior in extended class

2008-09-18 Thread Johannes Nel
try [Bindable (customEvent)] public function set item(value:XML):void { this._item = value; dispatchEvent(new Event(customEvent)); } public function get item():XML { return this._item; } On Thu, Sep 18, 2008 at 5:48 PM, Guilherme Blanco [EMAIL PROTECTED] wrote: Nope... It didn't

Re: [flexcoders] Bindable does not behavior in extended class

2008-09-18 Thread Johannes Nel
, Johannes Nel [EMAIL PROTECTED]wrote: adding the Bindable metadata to a class makes it implement eventdispatcher automagically during the 2 step compilation. On Thu, Sep 18, 2008 at 4:55 PM, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, This might be stupid but your ServiceForm

Re: [flexcoders] Re: Chrome and developer's version of Flash player installation

2008-09-15 Thread Johannes Nel
*Hello **Friends**, * *This is anand from Sure IT Solutions.* *We have a very Urgent Requirement fo Get! YahooAutoMailer $9.95 - Auto-Post to Unlimited Yahoo Groups http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Alternative FAQ location:

Re: [flexcoders] Broken Tomcat server within Eclipse - NullPointerException on startup

2008-09-14 Thread Johannes Nel
inline. On Sun, Sep 14, 2008 at 8:33 AM, ansury2 [EMAIL PROTECTED] wrote: I'm having one of those infamous IT WTH?! moments. You know, the kind where you have no idea what you did to break it? I have no idea what I did to break this apparently fragile as hell project setup. I'm using

Re: [flexcoders] application hangs while inserting data into sqlite database

2008-09-14 Thread Johannes Nel
use sqlite asynchronous mode.also when doing several inserts getting them into a transaction in synchronous mode speeds things up a lot On Sun, Sep 14, 2008 at 7:09 PM, sudha_bsb [EMAIL PROTECTED] wrote: Hi, I am trying to insert images into sqlite database from an air application. The

Re: [flexcoders] Hi..

2008-09-08 Thread Johannes Nel
hire someone. On Mon, Sep 8, 2008 at 8:51 AM, Ajay dalal [EMAIL PROTECTED] wrote: Hi, I am a new starter in Flex. I know the basics but could anybody give me any tutorial to build a full featured RIA using Flex in very quick time. Thanks in advance!!! Cheers!!! Ajay -- j:pn

Re: [flexcoders] Flex and Scene7, Flexstore license, List etiquette

2008-09-03 Thread Johannes Nel
You got promoted! Adobe does compete not only through products but through their consulting services as well. The fact of the matter however is that even Adobe consulting helps all of us, directly and indirectly through the competition and subbing various people on this list, developing frameworks

[flexcoders] fullscreen vista and text measurement

2008-09-03 Thread Johannes Nel
Hi In an application I have, when I go fullscreen text measurement really breaks on Vista machines, we have tried several little tricks and discovered that a work around for this is resizing the app then to go fullscreen, not something I would consider an optimal release. Anybody else ever

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
using custom events with your bindable metadata is not only best practice but allows you to decide which properties you want to refresh. [Bindable(myEvent)] i would recomend using this at all times. On Wed, Sep 3, 2008 at 1:04 PM, Josh McDonald [EMAIL PROTECTED] wrote: What it does is renames

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
suited to the situation. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: using custom events with your bindable metadata is not only best practice but allows you to decide which properties you want to refresh. [Bindable(myEvent

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
, but unfortunately it's when you have objects with many bindable fields that you're more likely to need the custom events (otherwise binding becomes very cpu-intensive). -Josh On Wed, Sep 3, 2008 at 9:30 PM, Johannes Nel [EMAIL PROTECTED] wrote: it does depend on the scale of your

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
but if u dont have a get/set how do you know the property changed and who will fires the event, or are you saying that Flex automatically creates and dispatches the event for you? tks --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: I'm

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
, I followed JM advise and its doing what I need to do for now, so I am happy lol. tks --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: no you need to dispatch the event yourself. as i said in some cases a get/set pair is needed

Re: [flexcoders] BubbleSeries effect that leaves a trail

2008-09-03 Thread Johannes Nel
a wild stab.when the move occurs, take bitmap snapshots, alpha them out while the move effect is running and put the snapshots over the chart. this will of course be a nightmare if your axis values change. On Wed, Sep 3, 2008 at 8:26 PM, Pan Troglodytes [EMAIL PROTECTED]wrote: My boss has

Re: [flexcoders] Re: Flexunit and asynchronous calls

2008-08-22 Thread Johannes Nel
you can compose event dispatcher onto anything. On Fri, Aug 22, 2008 at 6:08 AM, dbronk [EMAIL PROTECTED] wrote: I've done this: var myResponder : IResponder = new Responder(addAsync(handleSuccess, 1000 ), handleFault); I actually have my own responder that extends Responder so the above

Re: [flexcoders] Re: May I save object to SQLite in AIR?

2008-08-21 Thread Johannes Nel
it does support the BLOB datatype if memory serves me, no need to use json On Thu, Aug 21, 2008 at 4:04 PM, Jon Oxtoby [EMAIL PROTECTED] wrote: I don't believe you can store it as a native object but you could always serialize the object and store the string in the db, then deserialize it

Re: [flexcoders] Re: Flexunit and asynchronous calls

2008-08-21 Thread Johannes Nel
you can hack around it by pointing the the callback function to your unit test class and dispatching an event from there. On Thu, Aug 21, 2008 at 10:34 PM, Richard Rodseth [EMAIL PROTECTED]wrote: As I mentioned, the service (delegate) method I am calling has an IResponder callback - it

Re: [flexcoders] Re: Flexunit and asynchronous calls

2008-08-21 Thread Johannes Nel
. On Thu, Aug 21, 2008 at 1:38 PM, Johannes Nel [EMAIL PROTECTED]wrote: you can hack around it by pointing the the callback function to your unit test class and dispatching an event from there. On Thu, Aug 21, 2008 at 10:34 PM, Richard Rodseth [EMAIL PROTECTED]wrote: As I mentioned

Re: [flexcoders] Problem with Subclipse...

2008-08-18 Thread Johannes Nel
you should not commit your bin and bin debug to svn, we have an exclude rule on it to enforce this. On Mon, Aug 18, 2008 at 2:10 PM, Rob Kunkle [EMAIL PROTECTED] wrote: Hello all - I'm having a problem with with subclipse and flex builder 3, and I was wondering if anyone else had run into

Re: [flexcoders] Re: Flex is time consuming

2008-08-18 Thread Johannes Nel
I also believe that Adobe needs to kick it into gear and come out with a patch ASAP that addresses the, from my experience, the absolute slowest compiler on the planet. you never used flash then. mx2004 anyone... On Mon, Aug 18, 2008 at 3:49 PM, dbronk [EMAIL PROTECTED] wrote: Although I

Re: [flexcoders] Problem with Subclipse...

2008-08-18 Thread Johannes Nel
, rob On Aug 18, 2008, at 6:19 AM, Johannes Nel wrote: you should not commit your bin and bin debug to svn, we have an exclude rule on it to enforce this. On Mon, Aug 18, 2008 at 2:10 PM, Rob Kunkle [EMAIL PROTECTED] wrote: Hello all - I'm having a problem with with subclipse and flex

Re: [flexcoders] The end of ActionScript 3 as an EcmaScript 4 implementation

2008-08-14 Thread Johannes Nel
https://mail.mozilla.org/pipermail/es3.x-discuss/2008-August/000463.html On Thu, Aug 14, 2008 at 4:55 PM, hank williams [EMAIL PROTECTED] wrote: http://whydoeseverythingsuck.com/2008/08/ru-roh-adobe-screwed-by-ecmascript.html -- blog: whydoeseverythingsuck.com -- j:pn \\no

Re: [flexcoders] The end of ActionScript 3 as an EcmaScript 4 implementation

2008-08-14 Thread Johannes Nel
annotations, packages what else? On Thu, Aug 14, 2008 at 7:37 PM, hank williams [EMAIL PROTECTED] wrote: Troy, This is not true. Much of ES4, things like packages and lots of other stuff is going away. What they are going to implement is much closer to the current javascript than it is

Re: [flexcoders] Design Patters For Loading Data?

2008-08-12 Thread Johannes Nel
i normally use a hash to manage this kind of thing. when the responder returns you set the key in the dictionary object's to true, false or error object, and you loop through all the keys and make your decision from there. On Tue, Aug 12, 2008 at 1:46 PM, Simon Bailey [EMAIL PROTECTED]wrote:

Re: [flexcoders] Design Patters For Loading Data?

2008-08-12 Thread Johannes Nel
nice On Tue, Aug 12, 2008 at 8:20 PM, Troy Gilbert [EMAIL PROTECTED]wrote: Check out BulkLoader: http://code.google.com/p/bulk-loader/ It's designed for doing exactly this, as well as handling a lot of other common cases (like loading SWF, images, etc. and automatically returning the

Re: [flexcoders] Re: How does AIR apps connect to database?

2008-08-10 Thread Johannes Nel
some bloke also implemented a mysql socket for local connection. a google will show the way. On 8/9/08, haykelbj [EMAIL PROTECTED] wrote: If you are using remoting with Flex you should still be able to use it with AIR. --- In flexcoders@yahoogroups.com, Joshua Jackson [EMAIL

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Johannes Nel
yeah, thats the way, why would you however want two instances of flex builder (i get two eclipses).if its more than one project just open both at once, or have both in one project and mod your build script. On Thu, Aug 7, 2008 at 1:29 PM, Gus [EMAIL PROTECTED] wrote: AFAIK, just open a new

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Johannes Nel
in one while the other is building (which also takes way too long) On Thu, Aug 7, 2008 at 9:34 PM, Johannes Nel [EMAIL PROTECTED]wrote: yeah, thats the way, why would you however want two instances of flex builder (i get two eclipses).if its more than one project just open both at once, or have

Re: [flexcoders] Re: Multiple Builder instances / windows?

2008-08-07 Thread Johannes Nel
i vm my work enviroment and two instances of eclipse (either while working on plugins or building stuff side by side) is a annoying at times. On Thu, Aug 7, 2008 at 5:01 PM, Gus [EMAIL PROTECTED] wrote: I don't think 200meg is a lot these days is it ? Well I think it depends on how many

Re: [flexcoders] Re: Flex Tree having 20000 nodes crashes

2008-08-04 Thread Johannes Nel
The class you need to look at to load sub nodes on demand is the ITreeDataDescriptor and the method you ned to implement is public function getChildren(node:Object, model:Object=null):ICollectionView On Sun, Aug 3, 2008 at 9:50 AM, profiles_arun [EMAIL PROTECTED] wrote: Hi Jon, Thanks for

Re: [flexcoders] Re: Chart: pass info about series1 to series2 lineSegmentRenderer callback?

2008-07-31 Thread Johannes Nel
i think you are making your own life difficult. calculate the values before hand and render it then instead of trying to do it while you render, On Thu, Jul 31, 2008 at 7:26 PM, chigwell23 [EMAIL PROTECTED] wrote: Hi Laurent, Yes true, but the data passed to the renderer is only the data

Re: [flexcoders] new Component() ?

2008-07-23 Thread Johannes Nel
wiht the datagrid you put the datagridcolumns into an array and then set the datagrid.columns property On Wed, Jul 23, 2008 at 8:47 AM, Rafael Faria [EMAIL PROTECTED] wrote: Is there anyway to create components on the fly? Let me explain what i mean. I have a datagrid that has like 5

Re: [flexcoders] Re: Inline EventListener in MXML tags - confusing description in Developers guid

2008-07-21 Thread Johannes Nel
you could compile with the -keep option to see what is output underneath the covers. and then what i think might be the case pure speculation follows consider that the mxml gets converted to as. now in mxml you could have something event={a=1} or something event=function(event,'sdfdsf') or... now

Re: [flexcoders] Re: Numbers gone crazy: 5 - 4.8 = 0.2000000000000018 ?

2008-07-21 Thread Johannes Nel
this is well discussed and a side effect of dealing with Floats On Mon, Jul 21, 2008 at 12:03 PM, Kuldeep Atil [EMAIL PROTECTED] wrote: well, u can use number.tofixed(2); --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, b_alen [EMAIL PROTECTED] wrote: Here is how I

Re: [flexcoders] SQLlite limitations

2008-07-14 Thread Johannes Nel
I have tested up to 300k rows without a problem so i doubt its with the sqlite side of things. However setting a dataprovider on a chart of grid with 40k rows is bound to give you problems. you can also use offset and limit in sqlite to page for example select * from table limit 100 offset 400;

Re: [flexcoders] Re: Binding for Dynamic Datagrid

2008-07-14 Thread Johannes Nel
in code it is grid.dataprovider = youDP; in mxml it's mx:whatever dataprovider ={myDP}/ On Mon, Jul 14, 2008 at 3:35 PM, limhy0306 [EMAIL PROTECTED] wrote: Hi, I discovered something peculiar about the behaviour of the item renderer for the datagrid. In my item renderer; which extends

Re: [flexcoders] Howto Create Flex Builder Custom Component folders?

2008-06-10 Thread Johannes Nel
On Mon, Jun 9, 2008 at 10:35 AM, Johannes Nel [EMAIL PROTECTED] wrote: or you could create your own exlipse plugin to go with your components to manage this. On Mon, Jun 9, 2008 at 5:33 PM, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Nope, component devs are out of luck

Re: [flexcoders] Howto Create Flex Builder Custom Component folders?

2008-06-09 Thread Johannes Nel
or you could create your own exlipse plugin to go with your components to manage this. On Mon, Jun 9, 2008 at 5:33 PM, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Nope, component devs are out of luck with this. You could file an enhancement request for Flex Builder 4. :) Mike On

Re: [flexcoders] Google App Engine

2008-04-08 Thread Johannes Nel
yeah, we have moved all our mail already to google and also use their sites for document management. added to that we have air apps that speak to docs as well. all good stuff IMO. On Tue, Apr 8, 2008 at 9:35 AM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All Have any of you guys treid App

Re: [flexcoders] Why upgrade to FB3?

2008-02-15 Thread Johannes Nel
as the sdk is for free you are asking why upgrade your IDE. the profiler. On Fri, Feb 15, 2008 at 9:46 AM, Mr Greg Murnock [EMAIL PROTECTED] wrote: For the big discussion of the day/week... I have been given the task to give a strong case on why we need to spend the money (proposed

Re: [flexcoders] Re: Example of Object.isPrototypeOf ()

2008-02-15 Thread Johannes Nel
prototype chain is in for ecma complience. the white paper is a good source of info On Fri, Feb 15, 2008 at 1:03 PM, Roscoe P Coltrane [EMAIL PROTECTED] wrote: What exactly does it mean when the Flex doco says: This method returns true if the object is in the prototype chain of the object

Re: [flexcoders] how to start with a dynamic actionscript class instead of mx:Application?

2008-02-14 Thread Johannes Nel
try and find out what properties they are adding dynamically and implement that interface On Thu, Feb 14, 2008 at 9:48 AM, Brian [EMAIL PROTECTED] wrote: I've created a game with Flex, and now I'm trying to integrate MochiAds with it. They give you a preloader to use, but most of their

Re: [flexcoders] Viewstack selectedIndex variable setting more than once during a event.

2008-02-13 Thread Johannes Nel
its because the change occurs later via an invalidate function. changing it more than once inside one execution stack does not make sense unless you have an algorithm containing a loop, in which case this is easily fixable. On Feb 13, 2008 1:55 PM, Jerry DuVal [EMAIL PROTECTED] wrote: I have

Re: [flexcoders] Tree expansion performance

2008-02-12 Thread Johannes Nel
use your own tree descriptor. On Feb 12, 2008 11:07 AM, j_lentzz [EMAIL PROTECTED] wrote: I have a tree that I need to expand to get the list of nodes to navigate to. However, the tree is large and is taking very (20 sec) long to appear on the screen with the visible nodes open. The tree

Re: [flexcoders] SQLite - Importing file

2008-02-04 Thread Johannes Nel
i could not find an a way apart from parsing myself to do this. remember to use transactions for the insert. all this said, we build the sqlite db on the server and pump that down the wire. On Feb 4, 2008 11:22 AM, Rick Root [EMAIL PROTECTED] wrote: Is it possible for a Flex app to import a

Re: [flexcoders] New technique to Export to Excel, feasible?

2008-01-30 Thread Johannes Nel
just create a csv file, you are making it way more complex than needed On Jan 30, 2008 5:13 AM, Ramanujam, Pratap [EMAIL PROTECTED] wrote: Hi Flex Coders, If I have to copy the contents of a datagrid to an excel sheet, one way I am aware is copying the contents of the datagrid to the

Re: [flexcoders] VideoDisplay.totalTime is 0

2008-01-28 Thread Johannes Nel
meta data in your video On Jan 28, 2008 12:38 PM, polestar11 [EMAIL PROTECTED] wrote: Hi there With Flex3B3 I am trying to init a slider bar to have a max value of a videoDisplay.totalTime value. I have bound it to the value, but it always returns 0. It looks like the value only gets

Re: [flexcoders] itemRenderer in folder other than source root

2008-01-26 Thread Johannes Nel
is your main mxml page also in the src folder or said another way have you added the src folder to your class path 2008/1/25 Sherif Abdou [EMAIL PROTECTED]: src does not count so it would be com.blah.blah.foo - Original Message From: Glenn Williams [EMAIL PROTECTED] To:

Re: [flexcoders] Conditional Compilation

2008-01-26 Thread Johannes Nel
am i missing something? http://www.mail-archive.com/flexcoders@yahoogroups.com/msg43648.html On Jan 26, 2008 12:49 PM, Glenn Williams [EMAIL PROTECTED] wrote: Am I correct in thinking that the conditional compile feature of builder 3 is only for actionScript classes, and not MXML markup?

Re: [flexcoders] Re: Conditional Compilation

2008-01-26 Thread Johannes Nel
:):):) thanks 2008/1/26 Glenn Williams [EMAIL PROTECTED]: http://blogs.adobe.com/flexdoc/conditionalcompilation.pdf -- j:pn \\no comment

Re: [flexcoders] Re: Conditional Compilation

2008-01-26 Thread Johannes Nel
we have had to hack around a bit with servicelocators in order to get air and web compilation, this solves that :) On Jan 26, 2008 1:23 PM, Glenn Williams [EMAIL PROTECTED] wrote: I think it's early day's for this feature. Lot's of improvements can be made, but at least we now know the

Re: [flexcoders] Re: Dynamic Variable Naming

2008-01-26 Thread Johannes Nel
use a dictionary On Jan 26, 2008 2:34 PM, Sherif Abdou [EMAIL PROTECTED] wrote: you can't do that at least i dont think, you would need to use an object with the key as the dynamic so * var * object:Object = *new* Object(); object.r[gridrows] = (gridRows / 5); - Original

Re: [flexcoders] itemRenderer in folder other than source root

2008-01-25 Thread Johannes Nel
your class path itemRenderer=com.blah.blah.foo On Jan 25, 2008 1:50 PM, Glenn Williams [EMAIL PROTECTED] wrote: Ok, this must be simple by i can't see it. Take this example mx:List id=myListNav itemRenderer=ListRenderer / Say its part of a file foo.mxml that's in the folder

Re: [flexcoders] Re: Tree and ITreeDataDescriptor

2008-01-21 Thread Johannes Nel
you are going to have to implement your own TreeDataDescriptor On 1/21/08, hmmmbeer3 [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Are you making this harder than it is? Just assign the XML to the

Re: [flexcoders] Re: Tree and ITreeDataDescriptor

2008-01-21 Thread Johannes Nel
you don't have to use the default one look at overriding getChildren On 1/21/08, hmmmbeer3 [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: you are going to have to implement your own TreeDataDescriptor Hi

Re: [flexcoders] Re: Remote Objects AIR

2008-01-17 Thread Johannes Nel
in your service config On Jan 17, 2008 10:05 PM, Dale Fraser [EMAIL PROTECTED] wrote: I have read that it is possible but can't find any examples. Where do you tell AIR or your project that the Remote Objects are on Server X. Regards Dale Fraser http://learncf.com *From:*

Re: [flexcoders] Binding to a property change in a collection

2008-01-10 Thread Johannes Nel
you will need to add listeners to each item in the collection On Jan 10, 2008 12:10 PM, Kevin [EMAIL PROTECTED] wrote: I am wondering how to approach the follow problem. I have an object which holds a collection of objects. When one of the properties of the first item in the collection

Re: [flexcoders] Enumerable classes

2008-01-10 Thread Johannes Nel
nice class. On Jan 10, 2008 12:45 PM, Jamie S [EMAIL PROTECTED] wrote: Tracey I have written a class that does just that. It's very similar to the Enumerable module in Prototype or Ruby. It's part of my open source framework JumpShip http://www.osflash.org/jumpship or grab it here:

Re: [flexcoders] Flex Builder license

2008-01-09 Thread Johannes Nel
design view has an intrinsic problems. it does not render some of my custom views (any view which extends a base class) :(:( On Jan 9, 2008 5:47 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 09 Jan 2008, Paul Andrews wrote: Seems to me that besides the limitations, Flex builder wins

Re: [flexcoders] How to use Beta 2 SDK in Flex Builder 3 beta 3?

2008-01-03 Thread Johannes Nel
why do you wish to continue using b2 sdk? On Jan 2, 2008 9:34 AM, Scot [EMAIL PROTECTED] wrote: I have a new installation of Flex Builder 3 b 3. I would like to use this version (beta 3) to continue developing projects with the beta 2 SDK. I have set the location to the beta 2 SDK in the

Re: [flexcoders] Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Johannes Nel
have you tried dispatching the collection_change event from the array collection? On Jan 2, 2008 10:20 AM, j_lentzz [EMAIL PROTECTED] wrote: Hi, I've got a datagrid with a custom renderer. I'm not editing in the datagrid, but when a row is selected, I populate some TextInputs and

Re: [flexcoders] Strange compiler error

2008-01-02 Thread Johannes Nel
i have noticed the reverse in B3, if you do not put a semi colon in then the bindable throws a compiler error. i logged it on the bug system On Jan 2, 2008 12:00 PM, Mark Ingram [EMAIL PROTECTED] wrote: I've managed to fix this (after much deleting and undoing and redoing). The problem was

Re: [flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Johannes Nel
, but are really there if I select that row again. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: have you tried dispatching the collection_change event from the array collection? On Jan 2, 2008 10:20 AM, j_lentzz [EMAIL PROTECTED

Re: [flexcoders] Re: interface inheretence

2008-01-01 Thread Johannes Nel
You should probably check the type at runtime e.g... if (user is ChildUserModel1) if (user is IChildUserModel1) i think this is a solid approach in some cases. interestingly enough union types are suggested for ecma 4 [dummy syntax example] var myVar:(ISomeInterface,IOtherInterface); [end] in

Re: [flexcoders] Re: Custom HTTP Headers broken?

2007-12-31 Thread Johannes Nel
that this seems to be a confirmed bug for everyone. Thanks again --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: PUT would be determined by the sand box per se, no put outside it. With POST and GET its currently working for me with B3

Re: [flexcoders] Add FDS returned AS3.0 native array to local SQLlite DB?

2007-12-31 Thread Johannes Nel
Innitially we returned an Object[] containing Vectors from FDS to the app and then just inserted that. The option we have settled on however was to build the sqlite db on the server and then just download it using get On Dec 30, 2007 9:57 PM, Scott Mulder [EMAIL PROTECTED] wrote: Another few

Re: [flexcoders] How do I print multiple objects with no page breaks??

2007-12-31 Thread Johannes Nel
create a bitmap, draw onto that bitmap the layout you want to print and print that bitmap On Dec 31, 2007 8:41 AM, anthony_morsey [EMAIL PROTECTED] wrote: I'd like my application to print multiple objects without forced page breaks between them. If I use the PrintJob.addObject() method,

Re: [flexcoders] Re: Alternatives to LCDS

2007-12-28 Thread Johannes Nel
red5 as well On Dec 28, 2007 5:19 AM, den.orlov [EMAIL PROTECTED] wrote: Blaze is restricted but free and open source version of LCDS (some components was cut off), check this: http://res.sys-con.com/story/dec07/474563/BlazeDS.JPG After some struggling with LCDS’s we decided migrate to

Re: [flexcoders] function binding toString !! Additional information

2007-12-28 Thread Johannes Nel
override the set data function in your item renderer and bind your function getter to an event you dispatch in there. On Dec 27, 2007 2:39 AM, yigit [EMAIL PROTECTED] wrote: i think i'm misunderstood; because your solution suggestions does not fit my problem. first of all, functions can be

Re: [flexcoders] Re: Custom HTTP Headers broken?

2007-12-28 Thread Johannes Nel
in understanding why I can use custom headers in a PUT, but not a GET. Thanks --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: custom headers function within the sand box security. have you read the docs and http sniffed a bit? On Dec 27, 2007

Re: [flexcoders] Custom HTTP Headers broken?

2007-12-27 Thread Johannes Nel
custom headers function within the sand box security. have you read the docs and http sniffed a bit? On Dec 27, 2007 3:46 PM, scott.royston [EMAIL PROTECTED] wrote: With the latest Flex 3 beta release, I can't get any custom headers to be sent without: 1) The method being POST (e.g.

Re: [flexcoders] Re: Learning Java for Flex

2007-12-25 Thread Johannes Nel
if you program in actionscript then you don't need to look at java basics, your questions would more prob be centered in workspace setup. Some things to consider (with my local machine setup added) Questions like : which servlet container (tomcat 5.5) jdk (1.4.2) what do i need in my eclipse (i

Re: [flexcoders] NetConnection.Call.Failed: HTTP: Status 500

2007-12-07 Thread Johannes Nel
i have this problem at times (returning a F*^load of records), but my tomcat sends back more detailed messages. try playing with your settings to see if you can get something other than a 500 error which is just a generic Your server code fell over On Dec 7, 2007 2:12 AM, [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Managing States and Cairngorm

2007-11-22 Thread Johannes Nel
puremvc works in flex (its an agnostic framework really) but rising to cairngorm's defence, the faults with cairngorm are well documented, puremvc is not as used. puremvc is still a (relatively) new addition, it has its faults, like those 3 singletns's i care not for an agnostic framework, i

Re: [flexcoders] Flex 3 + LiveCycle: Is debugging Java possible?

2007-11-22 Thread Johannes Nel
ditto On Nov 22, 2007 5:25 PM, Carlos Rovira [EMAIL PROTECTED] wrote: We are using eclipse wtp with tomcat and we can debug Flex, java or both at once 2007/11/21, jamiebadman [EMAIL PROTECTED]: Hi, Our project is a Flex 3 + LiveCycle 2.5 application and is all built under a

Re: [flexcoders] Debugging who changed data...

2007-11-17 Thread Johannes Nel
use a watch in the debugger On Nov 17, 2007 1:22 AM, bithroop [EMAIL PROTECTED] wrote: I have a property that is getting changed and I'm having a really hard time figuring out where it's happening and who is doing it. The debugger is walking me pretty far into the SDK and events are firing

Re: [flexcoders] [Bindable] and dispatchEvent

2007-11-15 Thread Johannes Nel
yeah i noticed as well, it makes it implement IEventDispatcher in the backgound via the first pass compiler On Nov 15, 2007 5:58 AM, Stephen Allison [EMAIL PROTECTED] wrote: Hello, What is going on that makes this legal code: [Bindbale] class MyClass { function something() {

Re: [flexcoders] Re: Bug in Proxy

2007-10-31 Thread Johannes Nel
. A workaround in that case is to lookup the XML methods first and return them if found, but then you have conflicts, a problem that using methods was supposed to resolve. The solution is to have callProperty called. On 9/27/07, Johannes Nel [EMAIL PROTECTED] wrote: and here

Re: [flexcoders] Can't use an undefined conditional anymore?

2007-10-25 Thread Johannes Nel
if(foo) will give you the same result. basically if the instance is there it'll work else it won't On 10/25/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I used to do conditionals based on undefined all the time in AS 2. For example I would do a data look up and then cast the results

Re: [flexcoders] Add reference in MXML without adding to children

2007-10-25 Thread Johannes Nel
use states. mx:State name=red mx:AddChild relativeTo={screenContainer} position=firstChild views:myView id=redView width=100% addedEffect=show horizontalScrollPolicy=off minHeight=484

Re: [flexcoders] Flex Builder cannot locate the required debug version of the Flash Player

2007-10-16 Thread Johannes Nel
this happened to me when i set my flexbuilder to use a different browser for a while, no matter how many players i installed it would not go away until i returned to my systems default browser (win xp, fb 2.01) On 10/16/07, Muzak [EMAIL PROTECTED] wrote: Just follow the instructions.. You may

Re: [flexcoders] embed meta tag to embed xml?

2007-10-15 Thread Johannes Nel
http://www.peterjoel.com/blog/index.php?archive=2006_05_01_archive.xml#114770134881719072#114770134881719072 On 10/15/07, Matthias Dittgen [EMAIL PROTECTED] wrote: Hello, is it possible to embed xml data into the swf using the Embed meta tag like embedding of SVG?

Re: [flexcoders] Access a private method

2007-09-28 Thread Johannes Nel
pull the class into your own project (with the same package structure) and change it there. dodgy but workable in a bad way On 9/28/07, Sheriff [EMAIL PROTECTED] wrote: i need to access this private method in the accordion but since its private i can't so i was wondering if i would be able

Re: [flexcoders] Re: Bug in Proxy

2007-09-27 Thread Johannes Nel
var mo:MyOther = new MyOther(); var mp:MyProxy = new MyProxy(); mo.nextfunction = mp['go'] this is a very good point. On 9/27/07, actionscript_czar [EMAIL PROTECTED] wrote: This doesn't seem to be a bug to me, just looking at it from a limited perspective. Image a class that lookes

Re: [flexcoders] Re: Bug in Proxy

2007-09-27 Thread Johannes Nel
as a side note, someone on the player team did think this was a bug before i logged it post i escalated it to people who know more people than i do :) On 9/27/07, Johannes Nel [EMAIL PROTECTED] wrote: var mo:MyOther = new MyOther(); var mp:MyProxy = new MyProxy(); mo.nextfunction = mp['go

Re: [flexcoders] Re: Bug in Proxy

2007-09-27 Thread Johannes Nel
and here is the bug id: http://bugs.adobe.com/jira/browse/ASC-2812 On 9/27/07, Johannes Nel [EMAIL PROTECTED] wrote: as a side note, someone on the player team did think this was a bug before i logged it post i escalated it to people who know more people than i do :) On 9/27/07, Johannes Nel

Re: [flexcoders] Bug in Proxy

2007-09-26 Thread Johannes Nel
i confirm, i logged this on the open bug list and sent them a code sample. my temp hack (and this is because i do not need a getter) is this: override flash_proxy function getProperty(name:*):* { var p:* = function():* { callProperty(name,arguments);

Re: [flexcoders] generate thumbnail fro swf file

2007-09-11 Thread Johannes Nel
load the swf, tell it to gotoAndStop on that frame and use BitmapData.drawto capture the image On 9/12/07, Ary [EMAIL PROTECTED] wrote: Hi, is it possible to capture certain frame from a swf file? and display it as thumbnail? thanks in advance ary.

Re: [flexcoders] YouTube style video (Video vs VideoDisplay)

2007-06-05 Thread Johannes Nel
playing at the same time. Only one video is displayed, but you can hear two (or more) audio tracks. Johannes Nel wrote: for progressive and simple streaming videoDisplay is fine. i find it too limiting to build a robust streaming system (something that needs to try different ports switch

Re: [flexcoders] YouTube style video (Video vs VideoDisplay)

2007-06-05 Thread Johannes Nel
the appoach i describe has other benefits as well, like being able to seperate your stream logic from your display thus we got the same video mangement working in flash 9 in about 5 minutes. On 6/4/07, Johannes Nel [EMAIL PROTECTED] wrote: yeah. i saw it does that, but the problems you

<    1   2   3   4   >