Re: [flexcoders] In-house Online Training Solution

2013-10-02 Thread Johannes Nel
Red 5 can function as a drop replacement for Media Server, at the same time it allows functions as an amf server (so you won't need blaze). I have not used Red5 in a long time (note to self go see what the 1.0 release they just did looks like). Red5 uses Spring quite heavily (once again have not

Re: [flexcoders] Re: Flex alternatives

2012-01-17 Thread Johannes Nel
I have said this before, look at google closure. you code in javascript, annotate your types a compiler which gives you real errors, it has a component library with a well defined livecycle. it is what gmail, docs, goog+ is written in. it is really really good. On Tue, Jan 17, 2012 at 8:58 AM,

Re: [flexcoders] Challenge in Migrating to HTML5 from FLEX.

2012-01-14 Thread Johannes Nel
use jackson or jersey to convert your pojos to xml or json On Fri, Jan 13, 2012 at 4:21 PM, Venkat M venkat_...@yahoo.com wrote: ** Hi Team, ** ** I have a question on migration from FLEX to HTML5. This question may be little out of the discussion in here; It would be great if someone

Re: [flexcoders] Flex and AIR on Mobile Platforms

2011-11-13 Thread Johannes Nel
http://blogs.adobe.com/flex/2011/11/your-questions-about-flex.html On Sun, Nov 13, 2011 at 12:58 AM, Guy Morton g...@alchemy.com.au wrote: ** I think the only thing you should draw from this announcement is that Adobe has given up on trying to support flash as a browser plugin on mobile

[flexcoders] air 2.7 3

2011-10-30 Thread Johannes Nel
Has anybody else had issues with this upgrade. we have had massive problems, tracks of bugs that got created around this (our app is partially html and partially flex) -- j:pn \\no comment

Re: [flexcoders] adding uniqueIds to XML nodes dynamically

2011-10-18 Thread Johannes Nel
quick question. do you want to give each node an ID, even if it is the same as another node I don't know the e4x for selecting everynode, but the xpath is real easy //* then have a singleton with a getID method, itterate through the collection adding an attribute (i would advise namespacing that

Re: [flexcoders] Embedded SVG scales like bitmap.

2011-10-16 Thread Johannes Nel
export it as a swf On Sun, Oct 16, 2011 at 6:46 PM, Dave Glasser dglas...@pobox.com wrote: ** I drew a simple irregular polygon in Adobe Illustrator and saved it as an SVG. I embedded it in my Flex app as a SpriteAsset. I then set it as the skin (all states) for a button. When I set the

Re: [flexcoders] Re: Flex, HTML5, Javascript...oh my!

2011-10-14 Thread Johannes Nel
. --- In flexcoders@yahoogroups.com, Johannes Nel johannes.nel@... wrote: look, i don't want to get into a fight with people, but i can really say that the google closure toolset makes every other html/javascript approach look absolutely stoneage. a compiler, i mean a real compiler

Re: [flexcoders] Re: Flex, HTML5, Javascript...oh my!

2011-10-14 Thread Johannes Nel
code base) and so many potential errors get picked up by the compiler. On Fri, Oct 14, 2011 at 4:33 PM, Alex Harui aha...@adobe.com wrote: ** But also read up on Google’s new DART language. On 10/14/11 8:06 AM, Johannes Nel johannes@gmail.com wrote: i can really recommend

Re: [flexcoders] Flex, HTML5, Javascript...oh my!

2011-10-13 Thread Johannes Nel
look, i don't want to get into a fight with people, but i can really say that the google closure toolset makes every other html/javascript approach look absolutely stoneage. a compiler, i mean a real compiler, it eliminates dead code, does your optimisations for you, you don't have to write

Re: [flexcoders] Restrict access to an API to only allowed applications

2011-09-26 Thread Johannes Nel
The problem with making it as hard as possible is the overhead on your client application. decrypting a lot of data is a processer intensive operation and your own UI could suffer, while someone stealing data could decrypt it in C and republish that data unencrypted, giving their UI the edge over

Re: [flexcoders] BlazeDS having localhost:8080 hardcoded somewhere?

2011-08-24 Thread Johannes Nel
check where your swf is calling, is that url hardcoded? I assume you have changed the server.xml for your tomcat to run of the port you want (since it is serving the swf) Also check your blaze services-config.xml in your web-inf folder. On Wed, Aug 24, 2011 at 1:43 AM, Venkat M

Re: [flexcoders] SQLite Insert Statements in a transaction

2011-08-18 Thread Johannes Nel
thinking correct on that? Thanks, Tac On Wed, Aug 17, 2011 at 2:52 AM, Johannes Nel johannes@gmail.comwrote: ** how much data are you dealing with. make your inserts synchronous perhaps On Tue, Aug 16, 2011 at 1:24 PM, Tac Tacelosky tac...@gmail.com wrote: ** I'm trying

Re: [flexcoders] SQLite Insert Statements in a transaction

2011-08-17 Thread Johannes Nel
how much data are you dealing with. make your inserts synchronous perhaps On Tue, Aug 16, 2011 at 1:24 PM, Tac Tacelosky tac...@gmail.com wrote: ** I'm trying to get my head around how to do a SQLite bulk insert using transactions. This works, but it doesn't make sense to re-create a new

Re: [flexcoders] Re: How to debug PHP side in AIR applications?

2011-08-09 Thread Johannes Nel
it? I mean, are you debugging PHP in AIR applications? --- In flexcoders@yahoogroups.com, Johannes Nel johannes.nel@... wrote: split your projects, put a break point in the php code. On Mon, Aug 8, 2011 at 8:08 PM, enridp enridp@... wrote: ** Hi ! I think I can't explain

Re: [flexcoders] How to debug PHP side in AIR applications?

2011-08-08 Thread Johannes Nel
split your projects, put a break point in the php code. On Mon, Aug 8, 2011 at 8:08 PM, enridp enr...@yahoo.com.ar wrote: ** Hi ! I think I can't explain it better than my subject :) Flash Builder 4.5 for PHP it's wonderful for debugging both, Flex and PHP side at the same time, but it

Re: [flexcoders] Re: Switching Item Renderers

2010-09-02 Thread Johannes Nel
not sure if that recycles well though? On Wed, Sep 1, 2010 at 3:01 PM, Johannes Nel johannes@gmail.comwrote: set your renderer to an IFactory. this is a pretty standard way of doing things. On Wed, Sep 1, 2010 at 1:19 PM, valdhor valdhorli...@embarqmail.comwrote: The only computation I

Re: [flexcoders] Re: Switching Item Renderers

2010-09-01 Thread Johannes Nel
set your renderer to an IFactory. this is a pretty standard way of doing things. On Wed, Sep 1, 2010 at 1:19 PM, valdhor valdhorli...@embarqmail.com wrote: The only computation I see is determining which component to use. With your original idea you would still need the same computation to

Re: [flexcoders] How to declare a Complex Type : String + int-

2010-08-09 Thread Johannes Nel
wel you could use the variant type var p:* but this is not very neat, nice or efficient to be honest On Mon, Aug 9, 2010 at 2:52 PM, Oleg Sivokon olegsivo...@gmail.com wrote: You cannot really have custom types in AS3 or any other ECMAScript language. I'd go for a class with 2 fields for

Re: [flexcoders] Re: Flex Project Management App

2010-07-09 Thread Johannes Nel
i would guess the person used a tree with custom itemrederer or a custom component for http://www.seenowdo.com we use a custom component for the taskboard On Fri, Jul 9, 2010 at 3:59 PM, valdhor valdhorli...@embarqmail.com wrote: I would create a custom component that has all of the features

Re: [flexcoders] Uninstall Flash Player

2010-07-05 Thread Johannes Nel
there is also a flash version switcher for firefox http://www.sephiroth.it/weblog/archives/2006/10/flash_switcher_for_firefox.php On Sun, Jul 4, 2010 at 11:13 AM, Christophe christophe_jacque...@yahoo.frwrote: Hello, How to uninstall Flash Player 10.1 (on Firefox) to get back to Flash

Re: [flexcoders] How to automatise Unit test with Maven ???

2010-05-18 Thread Johannes Nel
when you say automate what do you exactly mean. DO you mean running unit tests on the back of a continues integration build? Paul B-H has blogged about that a fair bit http://eyefodder.com/ On Tue, May 18, 2010 at 3:56 PM, Nini7016 Nini7016 nahloulaha...@hotmail.com wrote: Hello I would

Re: [flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-05-05 Thread Johannes Nel
i would like to chime in on this point. What restrictions are placed upon the SWF format? None so far as I know. You can take the spec and do whatever you want with it; including creating alternate IDEs and alternate players. You might be able to argue that it is not a standard in the same

Re: [flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-05-05 Thread Johannes Nel
With way behind I am referring to the whole eco-system : profiler (contains rant), crappy automated testing tools (qtp?) and docs about the api's for people trying to write their own (flex mokey) More comprehensive documentation on extending Flex builder API - helping people extend their tool

Re: [flexcoders] Writing images to the src folder in flex/air

2010-02-18 Thread Johannes Nel
first off, you don't want to save them in your src folder since this is only available at compile time and not in the deployed application. Also, if you are deploying to a Mac, you can't save things in your application directory, this will give you a security error, you should rather save to the

Re: [flexcoders] Air File Is Damaged Error

2010-02-12 Thread Johannes Nel
one thing which can cause this is if the update.xml file and the air file have different versions. On Fri, Feb 12, 2010 at 2:54 PM, James garymoorcroft_...@yahoo.co.ukwrote: I keep getting the same The application could not be installed because the AIR file is damaged. etc... message every

[flexcoders] roundtrip catalyst flash builder

2010-01-22 Thread Johannes Nel
Hi I followed the approach outlined by Ryan Stewart by creating the catalyst project, exporting it as a library project, pulling this into flex builder (it automagically creates a library project although you just select flex builder project). So all good one way in. Then i get compile errors, my

Re: [flexcoders] Can QTP work for AS 3 based project ?

2010-01-07 Thread Johannes Nel
i seriously doubt it, since the automation links in with the flex component set. of course, you can always write your own components to support the automation libraries, but that is not documented (or I have not seen documentation on this) On Fri, Jan 8, 2010 at 6:05 AM, Pankaj Munjal

Re: [flexcoders] Creating an AIR install file from scratch..

2009-12-14 Thread Johannes Nel
old post which i am resurrecting. I am having issues singing a build with my p12 key file, has anyone got a working example (not using the flexTasks jar) of this working? jpn On Tue, Jul 1, 2008 at 1:22 PM, Jim Hayes j...@primalpictures.com wrote: That is what ADT is there for, I believe.

Re: [flexcoders] Re: Progress for synchronous operation

2009-11-18 Thread Johannes Nel
well if it is synchronous then this will help squat unless a separate thread gets spawned, since the drawing cycle and the render cycle are split in the vm. so, if it does not lock up the vm (which basically renders you powerless) then it ain't synchronous. On Thu, Nov 19, 2009 at 2:57 AM,

Re: [flexcoders] ArrayList Vs ArrayCollection

2009-11-10 Thread Johannes Nel
to dig up an old horse, the main advantage I can see is that arrayList supports disableEvents and enableEvents, which in theory should be availible via the fact that ArrayCollection extends ListCollectionView which has a getter called get list():ArrayList on which in theory i would want to say

Re: [flexcoders] ArrayList Vs ArrayCollection

2009-11-10 Thread Johannes Nel
retraction, disable events is private. mourn. On Tue, Nov 10, 2009 at 12:41 PM, Johannes Nel johannes@gmail.comwrote: to dig up an old horse, the main advantage I can see is that arrayList supports disableEvents and enableEvents, which in theory should be availible via the fact

Re: [flexcoders] Implement Multiple Interfaces in a MXML component

2009-09-08 Thread Johannes Nel
only one attribute, but comma deliminated interface paths in that attributes text On Tue, Sep 8, 2009 at 11:48 AM, Michael Ridland rid...@gmail.com wrote: Hi I want to be able to implement multiple interfaces in a MXML Component. But I get this error, 'Attribute implements was already

Re: [flexcoders] What does [Bindable(dataChange)] do?

2009-09-03 Thread Johannes Nel
it means the binding will only update when the dataChange event fires on that object. On Thu, Sep 3, 2009 at 4:40 PM, Nick Middleweek n...@middleweek.co.ukwrote: i'm still new to Flex... I'm going through someone's code and i'm wondering what *[Bindable(dataChange)]* does. It's in an

Re: [flexcoders] What does [Bindable(dataChange)] do?

2009-09-03 Thread Johannes Nel
getter, for example [Bindable(eventA)] [Bindable(eventB)] funciton get a():String { } lastly its a way to make read only properties bindbale. On Thu, Sep 3, 2009 at 6:02 PM, Johannes Nel johannes@gmail.com wrote: it means the binding will only update when the dataChange event fires

Re: [flexcoders] LCDS : Looking for livecycle experts

2009-08-10 Thread Johannes Nel
I tried this and got 0 responses. :( What are your issues, I have been through a fair amount of pain recently with livecycle. On Mon, Aug 10, 2009 at 11:11 AM, Besite - Bart b...@besite.be wrote: Dear all, We have developed a Flex application that extensively uses Livecycle Data Services,

Re: [flexcoders] LCDS : Looking for livecycle experts

2009-08-10 Thread Johannes Nel
I personally have not used the MultiTopicConsumer class (unless its underlying in something else I used, but still unaware). Is there anyway you can interrogate the server side classes to find out if your client application is subscribed post a refresh? (does it log in cataline.out that the user

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-07 Thread Johannes Nel
this a little more complex; this is an Air application so it’s installed locally. -- *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Johannes Nel *Sent:* Wednesday, August 05, 2009 9:46 AM *To:* flexcoders@yahoogroups.com *Subject

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Johannes Nel
if you setup your services config to point to a specific server like this: endpoint url=rtmp://www.servername.com:2038 class=flex.messaging.endpoints.RTMPEndpoint/ then change it to endpoint url=rtmp://{server.name}:2038 class=flex.messaging.endpoints.RTMPEndpoint/ so for example my amf channel

Re: [flexcoders] Moving flex app (coldfusion) to a production server

2009-08-05 Thread Johannes Nel
I have noticed a lot of developers tend to put hardcoded paths in there to be able to debug since they use flex projects and not server projects. On Wed, Aug 5, 2009 at 5:03 PM, Tom Chiverton tom.chiver...@halliwells.comwrote: On Wednesday 05 Aug 2009, Johannes Nel wrote: then change

Re: [flexcoders] how to enable stack traceback?

2009-08-04 Thread Johannes Nel
just using the debug player should give you that. On Tue, Aug 4, 2009 at 3:54 PM, mitchgrrt mitch_g...@hotmail.com wrote: I've recently changed companies. At my old company in the Flex app we were developing, whenever there was an unhandled exception we got a stack traceback in a popup

Re: [flexcoders] Re: Lcds via Tomcat on Mac - possible?

2009-07-31 Thread Johannes Nel
just grab the latest version of tomcat, drop them lcds jars under tomcat/lib and remember to set the context in your application project xml under tomcat/conf/Catalina/localhost/{project}.xml to include Context Transaction factory=org.objectweb.jotm.UserTransactionFactory jotm.timeout=60/

Re: [flexcoders] Re: LCDS fallback and firewalls which inspect packets

2009-07-25 Thread Johannes Nel
) it all started working. Automagically. On Wed, Jul 15, 2009 at 2:56 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Tuesday 14 Jul 2009, Johannes Nel wrote: the https idea is worth a try. Thanks for the input. Or set up a site-to-site VPN. -- Helping to biannually differentiate

[flexcoders] Tomcat LCDS configuration, contractor seeked

2009-07-14 Thread Johannes Nel
Hi All We are having problems with configuring LCDS to work in all enviroments and would like to hire a contracter to set it up for us. Please contact me offlist if you have experience in this. We use Tomcat 6 and LCDS 2.6.1. My main concern is really fall back management. Regards Johan --

Re: [flexcoders] LCDS fallback and firewalls which inspect packets

2009-07-14 Thread Johannes Nel
I have. They are not prepared to change their setup so I really want to get hold of an expert who can solve or answer with finality. On Tue, Jul 14, 2009 at 2:54 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Tuesday 07 Jul 2009, Johannes Nel wrote: deity, has a network which

Re: [flexcoders] LCDS fallback and firewalls which inspect packets

2009-07-14 Thread Johannes Nel
Someone must see some easy money here! come on people! On Tue, Jul 14, 2009 at 3:03 PM, Johannes Nel johannes@gmail.comwrote: I have. They are not prepared to change their setup so I really want to get hold of an expert who can solve or answer with finality. On Tue, Jul 14, 2009 at 2

Re: [flexcoders] Re: LCDS fallback and firewalls which inspect packets

2009-07-14 Thread Johannes Nel
the https idea is worth a try. Thanks for the input. On Tue, Jul 14, 2009 at 8:07 PM, valdhor valdhorli...@embarqmail.comwrote: Just a couple of ideas... Try AMF over HTTPS. Could you use PPTP or L2TP? --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel

[flexcoders] LCDS fallback and firewalls which inspect packets

2009-07-07 Thread Johannes Nel
Hi All We have our fall back mechanisms configured, we drop down to port 80 using tunneling et al. Unfortunately my clients's biggest client, thus my meta deity, has a network which inspects packets. They seem to be throwing out out all my AMF over http packets. So...is there something I can do?

Re: [flexcoders] LCDS / Tomcat : port 2038 already in use

2009-06-30 Thread Johannes Nel
we have a similiar issue on our CI server with the same version of Tomcat and LCDS, we are forced to kill -KILL (-f) the process. as yet we have found no work around. I don't know if you have tried forcing the kill yet, just going kill pid does not always work for us. ps ax | grep lcds (or lsof

[flexcoders] RDS configuration to postgres, FB4 + modeling

2009-06-25 Thread Johannes Nel
Hi in my project.xml file (for tomcat) I am trying to setup a RDS connection to a postgres db. i get the following error: Data source not found: java:/comp/env/jdbc/dbName I have tried Resource name=jdbc/DbName type=javax.sql.DataSource driverClassName=org.postgresql.Driver

[flexcoders] Re: RDS configuration to postgres, FB4 + modeling

2009-06-25 Thread Johannes Nel
stupid mistake. the postgres jar must be in the tomcat/libs folder, project/web-inf/libs is not enough http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html On Thu, Jun 25, 2009 at 7:45 PM, Johannes Nel johannes@gmail.comwrote: Hi in my project.xml file (for tomcat

[flexcoders] flash builder 4 license error

2009-06-24 Thread Johannes Nel
Hi All I managed to install the plugin version of Flash Builder 4 without an issue, it gave me a license error but continued working, I installed the modeling plugin and then my actionscript editor stopped working. A lot of the jars that came with the modeling plugin were already part of my

Re: [flexcoders] Re: ArrayCollection to Delimited String

2009-06-08 Thread Johannes Nel
if this has to be imported somewhere else you need to consider, what happens if your delimiter is in a piece of text? On Sun, Jun 7, 2009 at 2:25 PM, Angelo Anolin angelo_ano...@yahoo.comwrote: Hi Tim, Thanks for the tip(s). Was able to make this thing work out. Regards, Angelo

[flexcoders] case sensitive hard drive formatting

2009-06-02 Thread Johannes Nel
this is actually a problem for the whole cs4 suite, but i was amazed that its the same for catalyst (as its built on eclipse). If you format your hard drive case sensitive you cannot install catalyst (nor flash, photoshop...) why? -- j:pn \\no comment

Re: [flexcoders] Re: LCDS problems using refreshCollection(value:ListCollectionView)

2009-06-02 Thread Johannes Nel
this even however fires a lot if you use that collection to manipulate data On Tue, Jun 2, 2009 at 2:38 PM, rahul_bindu rahul_bi...@yahoo.com wrote: Kevin, This is a quick fix, you could listen to the CollectionEvent.COLLECTION_CHANGE on the managed collection. If you could post more code,

Re: [flexcoders] LCDS async error

2009-05-28 Thread Johannes Nel
that worked out for them, kinda desperate by now On Wed, May 27, 2009 at 11:10 AM, Johannes Nel johannes@gmail.comwrote: Since Jeff has left Adobe, can someone from Adobe please check the source code on this. We are using build 2.6.0.201390 of the fds.swc. On Tue, May 26, 2009 at 11:13

Re: [flexcoders] LCDS async error

2009-05-27 Thread Johannes Nel
Since Jeff has left Adobe, can someone from Adobe please check the source code on this. We are using build 2.6.0.201390 of the fds.swc. On Tue, May 26, 2009 at 11:13 AM, Johannes Nel johannes@gmail.comwrote: No, tis not 1, all our error handeling uses FaultEvent. How I would have

Re: [flexcoders] LCDS async error

2009-05-26 Thread Johannes Nel
a MessageFaultEvent, it is probably 2). I don't have access to the source anymore or I'd check into 2) for you... Jeff On Mon, May 25, 2009 at 5:17 AM, Johannes Nel johannes@gmail.comwrote: Hi All I have a LCDS app which must stay open for ages, deal with dodgy internet connections

[flexcoders] LCDS async error

2009-05-25 Thread Johannes Nel
Hi All I have a LCDS app which must stay open for ages, deal with dodgy internet connections and all such fun things. Thus far we have managed to get the NetConnection to re-establish itself nicely when the line drops, but here is a wonderful error (which does not actually break the app) that i

[flexcoders] Re: LCDS async error

2009-05-25 Thread Johannes Nel
My bad, we get it on windows as well. On Mon, May 25, 2009 at 2:17 PM, Johannes Nel johannes@gmail.comwrote: Hi All I have a LCDS app which must stay open for ages, deal with dodgy internet connections and all such fun things. Thus far we have managed to get the NetConnection to re

[flexcoders] Re: LCDS async error

2009-05-25 Thread Johannes Nel
this is a show stopper here for us. I realise why the code is not availible, but an unhandleble error coming from the lcds swc's is a pain. anyone...? On Mon, May 25, 2009 at 3:36 PM, Johannes Nel johannes@gmail.comwrote: My bad, we get it on windows as well. On Mon, May 25, 2009 at 2:17

Re: [flexcoders] HyperThreading...

2009-05-18 Thread Johannes Nel
The player is not really single threaded. We might not be able to kick off more threads, but with stuff like alchemy, pixelbender (or any async process going outside the player) it is multi threaded. On Mon, May 18, 2009 at 12:42 PM, Paul Andrews p...@ipauland.com wrote: - Original

Re: [flexcoders] Remote Desktop

2009-04-30 Thread Johannes Nel
darron schall wrote a vnc client. obviously this is not exactly what you are looking for. Acrobat connect (previously called breeze) is the thing for you most likely, and you can extend that (aka load swf's in if my memory serves correctly since this came from central, to breeze to ...) On Thu,

Re: [flexcoders] Re: best ftp client

2009-04-30 Thread Johannes Nel
i like total commander the most personally on a windows box. on a mac fetch. On Thu, Apr 30, 2009 at 1:30 AM, Tracy Spratt tr...@nts3rd.com wrote: Me too. I’ve never done a lot of ftp, but FileZilla was easy to use and does all all need so far. Tracy Spratt, Lariat Services,

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-28 Thread Johannes Nel
:( On Tue, Apr 28, 2009 at 4:43 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: It looks like Builder on Linux might be a gonner (http://gruchalski.com/2009/04/22/flex-builder-3-for-linux-on-hold/) - register your support for the product by voting for

[flexcoders] Re: No message broker found

2009-04-01 Thread Johannes Nel
collection open) data also updates. This would obviously not work if the change to my data was initiated by a non flex client. On Tue, Mar 31, 2009 at 6:36 PM, Johannes Nel johannes@gmail.comwrote: Hi All Using a many to one relationship on a collection and I have more than one client which has

[flexcoders] No message broker found

2009-03-31 Thread Johannes Nel
Hi All Using a many to one relationship on a collection and I have more than one client which has the collection visible. From my java code I refresh my fills and then I get the no message broker error. Yet if I add anything to the collection from within my flex app the changes propagate fine. So

Re: [flexcoders] Array of objects

2009-03-13 Thread Johannes Nel
the annotation is not only for mxml. Vector is really fast, so if possible use that. On Fri, Mar 13, 2009 at 5:25 PM, Maciek Sakrejda msakre...@truviso.comwrote: Note that the annotation is only for compile-time checking (and only for MXML, it looks like?), so you were still mostly correct,

[flexcoders] adg as adg renderer - sizing the child renderers.

2009-03-03 Thread Johannes Nel
Hi All When using an adg as the renderer for another adg, has anyone got any tipes on how to size the child renderers so i don't have empty rows. thanks -- j:pn \\no comment

Re: [flexcoders] adg as adg renderer - sizing the child renderers.

2009-03-03 Thread Johannes Nel
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Johannes Nel *Sent:* Tuesday, March 03, 2009 9:43 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] adg as adg renderer - sizing the child renderers. Hi All When using an adg as the renderer for another adg, has anyone

Re: [flexcoders] Send an object via an ItemRenderer in a DataGrid

2009-02-25 Thread Johannes Nel
instead of passing a class factory to the render pass an instance of ifactory, passing the needed variables to the constructer of your custom factory. then in newInstance of your ifactory set the needed variables on that new instance. remember that your renderers will get reused, so newInstance

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 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: [flexcoders] Re: How to read the received ByteArray as SQLite?

2009-02-16 Thread Johannes Nel
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 handi...@yahoo.com wrote: I would like to clear one thing: - The .Net webservice returns

Re: [flexcoders] Re: Help Me for SharedObject and registerClassAlias method

2009-02-16 Thread Johannes Nel
watch out for classes that take arguments in the constructer or java style enums. On Mon, Feb 16, 2009 at 12:07 AM, Braam Genis braamge...@gmail.com wrote: Use the metadata tag [RemoteClass(alias=WindowInfo)] above your WindowInfo class declaration and your objects should be typed when you

[flexcoders] advanced datagrid error weirdness

2009-02-13 Thread Johannes Nel
hey, actually hoping someone from the adg team can tell me what on a certain line would be giving an error. I use sdk 3.0 so i have an adg which renderers another adg. detail is not really that important. i have a mock data set in 2 different projects (1 being the main app i am working on and

[flexcoders] Re: advanced datagrid error weirdness

2009-02-13 Thread Johannes Nel
getStyle returned a null bla bla. less black box debugging would have made this much easier :( and commenting it out solved the problem. will report later On Fri, Feb 13, 2009 at 11:24 AM, Johannes Nel johannes@gmail.comwrote: hey, actually hoping someone from the adg team can tell me

Re: [flexcoders] Conditional compilation for variable declarations

2009-01-31 Thread Johannes Nel
abstract factory would also solve this, unless you compile to swc that is. On Fri, Jan 30, 2009 at 6:46 PM, jimmy5804 jimmy5...@yahoo.com wrote: I'm able to use conditional compilation for functions by prefacing them with CONFIG::xxx and other blocks by wrapping them in if(CONFIG::xxx), but

Re: [flexcoders] itemRenderer data question (recycling)

2009-01-30 Thread Johannes Nel
it improperly. Tracy Spratt Lariat Services Flex development bandwidth available -- *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Johannes Nel *Sent:* Wednesday, January 28, 2009 5:05 AM *To:* flexcoders@yahoogroups.com

Re: [flexcoders] ItemEditors and rowHeight

2009-01-30 Thread Johannes Nel
have you considered using a sub renderer as an editor. on the adg you have a rendererProviders which allow you to alter the individual rows, var t:AdvancedDataGridRendererProvider = new AdvancedDataGridRendererProvider(); t.depth = 2; t.columnIndex = 1;

Re: [flexcoders] itemRenderer data question (recycling)

2009-01-28 Thread Johannes Nel
mmm, repeater is rarely the sollution IMO. remember that they render all the items (when they do not recycle) and not only the visible parts like a list. On Wed, Jan 28, 2009 at 11:23 AM, nwebb neilw...@gmail.com wrote: Ah right - wasn't aware that repeaters didn't recycle - thanks. On

Re: [flexcoders] BindingUtils and ResourceManager Question

2009-01-28 Thread Johannes Nel
on rereading your post i realise that what you are after is change events (but my post will also help a bit me thinks) a few people did custom annotations which function like an event listener, just google a bit, i think it will make your life easier. old post/// ok, i will approach it

Re: [flexcoders] Re: Navigational Design Patterns?

2009-01-23 Thread Johannes Nel
work well with modules as this project is modular? On Fri, Jan 23, 2009 at 7:46 AM, Johannes Nel johannes@gmail.comwrote: kind of off topic now. i would actually look at slide, even for an existing app (if it uses viewstacks and states) for navigation. it makes life much much easier

Re: [flexcoders] Re: Navigational Design Patterns?

2009-01-22 Thread Johannes Nel
Depending on the application type, the command pattern works quite nicely with navigation. You can then also implement a memento more easily and have the command support an undo function allowing you to go back and forth. we use slide (obviously) and the uri based navigation (based on states)

Re: [flexcoders] Re: Navigational Design Patterns?

2009-01-22 Thread Johannes Nel
22, 2009 at 12:08 PM, Johannes Nel johannes@gmail.comwrote: Depending on the application type, the command pattern works quite nicely with navigation. You can then also implement a memento more easily and have the command support an undo function allowing you to go back and forth. we

Re: [flexcoders] Re: Using ActiveXObject with Adobe AIR and Flex

2009-01-06 Thread Johannes Nel
I suspect this cannot work, mostly since the browser in air would have to be cross platform and OLE objects are windows based. you can reverse this of course and embed the whole flex application into a win app as an ActiveX control and then use browser active X control as well. not nearly as nice

Re: [flexcoders] Test-driven development in Flex

2008-12-23 Thread Johannes Nel
a well written post. Fowlers sync concerns are not especially relevant in flex with the data binding mechanisms we have at our disposal. from where I am standing the supervisor controller and a presentation model seems a decent approach. My reasoning behind this is that views render aspects or

Re: [flexcoders] SWC compression format?

2008-12-17 Thread Johannes Nel
i think its gnu zip On Wed, Dec 17, 2008 at 5:13 PM, John McCormack j...@easypeasy.co.ukwrote: If you rename the *.swc file to a *.zip file you can open it with Windows Vista (and XP?) or with 7-zip (etc.) without renaming it, so it must be a derivation of the pkzip format. There are some

Re: [flexcoders] Loadbytes - Exclude framework?

2008-12-17 Thread Johannes Nel
export the framework as an external RSL for both your main app and the runtime loaded class swf, that way your external swf won't have the bytes in it and the main app will mount all the needed classes from the rsl as is necesary. of course you are also helping all the rest of us who then export

Re: [flexcoders] Re: How do I include a file in the AIR app-storage directory at install time?

2008-12-15 Thread Johannes Nel
--- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Johannes Nel johannes@... wrote: include it in the application directory as part of the instal and copy it over if it does not exist. On Mon, Dec 15, 2008 at 5:22 AM, Jim Boone j...@... wrote: Hi, I am

Re: [flexcoders] How do I include a file in the AIR app-storage directory at install time?

2008-12-14 Thread Johannes Nel
include it in the application directory as part of the instal and copy it over if it does not exist. On Mon, Dec 15, 2008 at 5:22 AM, Jim Boone j...@jim-boone.com wrote: Hi, I am new to AIR and I am writing an application that needs access to a new SQLite database when the user first

Re: [flexcoders] Re: Lazy loading trees

2008-12-11 Thread Johannes Nel
those classes were just random stuff i was using from where i copied the code. On Fri, Dec 12, 2008 at 2:16 AM, Amy amyblankens...@bellsouth.net wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, dandante danda...@... wrote: Thank you. I am unclear on where the

Re: [flexcoders] Lazy loading trees

2008-12-09 Thread Johannes Nel
Implement ITreeDataDescriptor and set the tree's data descriptor thus every time you open a node you call the getChildren function of your data descriptor a simple example internal class ReferenceDataDescriptor implements ITreeDataDescriptor { private var

Re: [flexcoders] OpenAMF for returning files?

2008-12-02 Thread Johannes Nel
build the file on the server, download via get. use blazeDS or red5 instead of openAMF On Tue, Dec 2, 2008 at 1:23 AM, buzz_tarun [EMAIL PROTECTED] wrote: Hi there, I am using openamf for integrating flex ui with a J2EE backend. The integration works fine as far as strongly typed data

Re: [flexcoders] The Online Flex Builder!

2008-11-25 Thread Johannes Nel
this mailing list has been running for years, no where near the beginning of the archives :) On Mon, Nov 24, 2008 at 10:45 PM, Jim Hayes [EMAIL PROTECTED] wrote: John Grden had one quite a while back, not seen any news on it for a while though. The name of it escapes me for now I'm afraid.

[flexcoders] LCDS hostinG

2008-11-25 Thread Johannes Nel
HI Can you guys recommend a LCDS hosting company. Thanks Johan -- j:pn \\no comment

Re: [flexcoders] Re: How can I create a path animation in Flex?

2008-11-25 Thread Johannes Nel
i fair while ago i created an animation in flash, exported it to xml (its a command in flash) import the correct action script classes and used it in flex. i cannot recall if i had t make changes. http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/motionXSD.html i am certain other people

Re: [flexcoders] Re: AIR SQLLite, ints, and NULLs

2008-11-24 Thread Johannes Nel
on debug level it evaluates to NaN, which should insert as NULL.but then remember var n:Number; // == NaN var p:Number = n + 1;//==NaN var q:int = n+1;//==0 On Mon, Nov 24, 2008 at 9:01 PM, Charlie Hubbard [EMAIL PROTECTED]wrote: So if I can sum up your email very clearly. I'd say: DO NOT

Re: [flexcoders] How to refer xsd file in flex ?

2008-11-17 Thread Johannes Nel
currently that validation has to be done on a server. On Mon, Nov 17, 2008 at 10:05 AM, Nievtha NagaRaj [EMAIL PROTECTED]wrote: Hi , How to refer xsd file in flex before loading XML Data? Could u help me If anyone knows about this? Thanks in Advance Nivetha -- j:pn \\no

Re: [flexcoders] How to refer xsd file in flex ?

2008-11-17 Thread Johannes Nel
oh, if you mean just a schema, load it as an xml file and parse that. i meant you will not be able to validate an xml file against a schema On Mon, Nov 17, 2008 at 12:18 PM, Johannes Nel [EMAIL PROTECTED]wrote: currently that validation has to be done on a server. On Mon, Nov 17, 2008 at 10

  1   2   3   4   >