[Flashcoders] [JOB] as3/flex2 developer, Antwerp (Belgium)

2007-04-04 Thread Tom Versweyveld
Verso bvba, an Antwerp based Adobe partner specialized in RIA-development, is looking for a contract and long-term as3/flex2 developer. Requisite skills needed are: - Strong Actionscript 3.0 and Flex 2 coding skills - Experience in RIA development - Proficiency with Coldfusion, JAVA,

[Flashcoders] live preview for (non compiled) components, how to check for resize

2007-02-14 Thread Tom Versweyveld
I want to make a live preview for a non compiled component, but the only function that's being triggered in the live-preview swf is the onUpdate function (is triggered when user changes a parameter in the parameters tab of the component). I need to know when the user resizes the component on

[Flashcoders] Why would Selection.setFocus(mc) return false?

2006-10-23 Thread Tom Versweyveld | VERSO
Does anybody know why Selection.setFocus(mc) would return false, even if mc has a unique tabindex .it won't receive tabbing focus, unless you put it inside a handler: test_mc.tabIndex = 1; trace(Selection.setFocus(test_mc)); // traces false test_mc.onRelease = function() {

[Flashcoders] printing in higher resolution than 72dpi with printAsBitmap

2006-10-04 Thread Tom Versweyveld
Is it at all possible to print a movieclip (wich has alpha and mask effects, so printAsBitmap is needed), on a higher resolution than 72dpi. By this I mean, when the movieclip contains a 1000x1000px jpg, which is scaled to 100x100px, how can the jpg be printed to its full potential of

RE: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files

2006-07-07 Thread Tom Versweyveld | VERSO
Would it be possible to loadmovie a flex swf into a lightweight as3 only swf? It would come in handy when you need a lightweight frontend application, but want a flex backend app (where filesize isn't too much of a problem)... Tom -Original Message- From: [EMAIL PROTECTED]

[Flashcoders] best 360VR panorama

2006-03-16 Thread Tom Versweyveld
Hi, I'm looking for the best 360VR panorama implementation with fp8. Does anybody know of any opensource(or commercial) component which handles cylindrical view (though cubic would be even better). It has to support hotspots, and trigger scroll events (so a radar-like ground plan can be used to

RE: [Flashcoders] best 360VR panorama

2006-03-16 Thread Tom Versweyveld
out that 2nd URL - there is some crazy good stitching going on there. There don't seem to be hotspots supported for it though. On 3/16/06, Tom Versweyveld [EMAIL PROTECTED] wrote: Hi, I'm looking for the best 360VR panorama implementation with fp8. Does anybody know of any opensource

RE: [Flashcoders] best 360VR panorama

2006-03-16 Thread Tom Versweyveld
Thanx for the info Alan, 3Dvista seems like the right tool for the job, and it does support hotspots...! I'll let you know if I find anything better... tom -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan Shaw Sent: donderdag 16 maart 2006 16:38 To:

[Flashcoders] allowing external content to acces local content

2006-03-06 Thread Tom Versweyveld
I'm trying to allow an swf (loaded from a testing server), to access the global scope in an swf running in authoring, but I keep getting: *** Security Sandbox Violation *** SecurityDomain 'http://192.168.1.1/someflash.swf' tried to access incompatible context 'file:///C|//iloaded someflash.swf'

[Flashcoders] photoshop-like filters

2006-02-01 Thread Tom Versweyveld
Does anyone know where I can find (or buy) source as-code for photoshop-like filters (for use in fp8). I'm especially looking for a good sharpen filter, and some artistic filters (like watercolor, dry brush, etc...) Grtz, Tom ___ Flashcoders mailing

RE: [Flashcoders] photoshop-like filters

2006-02-01 Thread Tom Versweyveld
filter class: http://www.gskinner.com/blog/archives/2005/12/source_code_sha_1.html On 2/1/06, Tom Versweyveld [EMAIL PROTECTED] wrote: Does anyone know where I can find (or buy) source as-code for photoshop-like filters (for use in fp8). I'm especially looking for a good sharpen filter

[Flashcoders] V2 components loose skin when published to fp8

2006-01-11 Thread Tom Versweyveld
Hi all, When I publish my app with skinned V2 comps to fp7, everything works fine. The moment it is published to fp8, some of the skins are no longer applied, styles still work fine though... I manually skinned them using the MMdefault assets in the sampleTheme.fla that was in FlashMX 2004.

RE: [Flashcoders] lightweight flash7 color picker?

2006-01-11 Thread Tom Versweyveld
The color picker in the Bit components set (http://www.flashloaded.com/flashcomponents/bitcomponentset/) is about a third in size of the MM one, and it works just fine for me... t -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rajat Paharia Sent:

[Flashcoders] mCom comps 100% skinned?

2005-12-29 Thread Tom Versweyveld
Has anyone succeeded in fully skinning all of the mCom components? I'm especially having trouble with the rowrenderers...and the online docs are way too vague... Tnx, tom ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] MX charting components for fp7/8

2005-12-21 Thread Tom Versweyveld
Does anyone know if there's a Fp7/8 conversion of the first charting components for MX (http://www.macromedia.com/cfusion/exchange/index.cfm#loc=en_usview=sn1 06viewName=Exchange%20Search%20Detailsauthorid=60639501page=0scrollP os=0subcatid=0snid=sn106itemnumber=1extid=377283catid=0 ) I'm

[Flashcoders] colortween using ColorTransform class

2005-11-03 Thread Tom Versweyveld
I'm looking for a class to colortween an mc utilizing the new ColorTransform class. That is, because I presume using ColorTransform over the old mc_color.setRGB() function is a lot faster? tnx, tom ___ Flashcoders mailing list

RE: [Flashcoders] AS3.0 only projects + flex framework

2005-10-26 Thread Tom Versweyveld
Does this mean there is no way of loading a Flex swf into an AS3 project? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: maandag 24 oktober 2005 23:00 To: Flashcoders mailing list Subject: Re: [Flashcoders] AS3.0 only projects + flex

RE: [Flashcoders] AS3.0 only projects + flex framework

2005-10-26 Thread Tom Versweyveld
Subject: Re: [Flashcoders] AS3.0 only projects + flex framework You can load a Flex 1.5 swf into a Flex 2 project, but you can't interact with it unless you use the LocalConnection approach. Not sure if you can do that right now, but I intend to find out. Spike On 10/26/05, Tom Versweyveld [EMAIL