[flexcoders] Re: compiled swc and file sizes

2008-04-17 Thread Bjorn Schultheiss
ou mean with the import statements in the AS itself, or > in the project properties? > > dnk > > > On 17-Apr-08, at 7:09 PM, Bjorn Schultheiss wrote: > > > depends how you link the swc to your project. > > > > compiler.include.libraries // will add the en

[flexcoders] Re: Large application strategy - Flex or Flash?

2008-04-27 Thread Bjorn Schultheiss
> No current requirement for Flex components That seems like a relevant factor in the decision.. --- In flexcoders@yahoogroups.com, "Mike Chabot" <[EMAIL PROTECTED]> wrote: > > None of the factors you mention seem highly relevant to making the decision. > > Are the developers already comfortabl

[flexcoders] Re: Large application strategy - Flex or Flash?

2008-04-28 Thread Bjorn Schultheiss
>From what I've seen FDT looks like a nice tool. Although no IDE for Mac means I haven't used it in anger. I think an interesting Flex 4 feature would be, to be able to use Flex components within Flash (outside of a Flex project). --- In flexcoders@yahoogroups.com, "Doug McCune" <[EMAIL PROTECT

[flexcoders] Re: Large application strategy - Flex or Flash?

2008-04-28 Thread Bjorn Schultheiss
Sorry it was Flash Develop I had used.. Not FDT. --- In flexcoders@yahoogroups.com, "Bjorn Schultheiss" <[EMAIL PROTECTED]> wrote: > > From what I've seen FDT looks like a nice tool. > Although no IDE for Mac means I haven't used it in anger. > > I thi

Re: [flexcoders] Advanced(?) Actionscript question

2008-04-28 Thread Bjorn Schultheiss
In the second version your initializing foo as an object. I'm pretty certain you cant do, var foo:Function = {trace('foo')} On 29/04/2008, at 9:37 AM, Josh McDonald wrote: Guys, what's the difference (if it exists) between: public function foo() : * {} and: public var foo : Function = {}

[flexcoders] Re: Bindable Metatag

2008-04-28 Thread Bjorn Schultheiss
According to the guidelines adobe published, > [Bindable("change")] Wins! --- In flexcoders@yahoogroups.com, "reflexactions" <[EMAIL PROTECTED]> wrote: > > In the help file all the examples have > [Bindable(event="change")] > > While the source files with FB3 have > [Bindable("change")] >

[flexcoders] Re: Advanced(?) Actionscript question

2008-04-28 Thread Bjorn Schultheiss
*From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > > Behalf Of *Josh McDonald > > *Sent:* Monday, April 28, 2008 4:58 PM > > *To:* flexcoders@yahoogroups.com > > *Subject:* Re: [flexcoders] Advanced(?) Actionscript question > > > > > > > >

[flexcoders] Re: Advanced(?) Actionscript question

2008-04-28 Thread Bjorn Schultheiss
Check this out.. Mixins, How to. http://flexonrails.net/?p=79 --- In flexcoders@yahoogroups.com, "Josh McDonald" <[EMAIL PROTECTED]> wrote: > > Of course, I always forger about the "dynamic" keyword :) > > On Tue, Apr 29, 2008 at 1:18 PM, Bjorn Sc

[flexcoders] Re: Deep Linking Problems

2008-04-28 Thread Bjorn Schultheiss
Apparently SWFAddress works.. I have used Flex's deep linking yet so i can't comment. http://labs.blitzagency.com/?p=51 --- In flexcoders@yahoogroups.com, "Aaron Miller" <[EMAIL PROTECTED]> wrote: > > I've had the same experience. My conclusion was that it is only useful for > limited functiona

[flexcoders] Re: Cairngorm Model Locator

2008-04-29 Thread Bjorn Schultheiss
I think the problem is that the current flex framework architecture doesn't conceptually work well with Cairngorm. There's too much logic encapsulated into the view. Ideally you would like to drive the entire app via the model. It would be ideal if your model was managing how many windows are cur

[flexcoders] Re: Cairngorm Model Locator

2008-04-29 Thread Bjorn Schultheiss
"Josh McDonald" <[EMAIL PROTECTED]> wrote: > > The whole point of MVC is that the model knows *nothing* about the view. > Which is one of the reasons UM is a great extension to Cairngorm. > > -J > > On Wed, Apr 30, 2008 at 8:46 AM, Bjorn Schultheiss < >

[flexcoders] Re: compc and manifest file

2008-04-29 Thread Bjorn Schultheiss
Automation of the manifest is a nice feature request.. Hopefully we can get it into FB4. Has anyone logged it yet? --- In flexcoders@yahoogroups.com, Maciek Sakrejda <[EMAIL PROTECTED]> wrote: > > I don't think that this is a compc issue: if memory serves (from a > couple of months ago when I

[flexcoders] Re: Application initialization and runtime config

2008-04-29 Thread Bjorn Schultheiss
In terms of passing the config data through to modules we create an interface for each module that is used by the shell to pass data via public methods to the loaded module on the ready event. --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Flashvars should be read

[flexcoders] Re: Use Cairngorm wihtout Dispatch

2008-05-04 Thread Bjorn Schultheiss
ServiceFacade.getInstance().loadCats(); public function loadCats():void { var handlers : IResponder = new mx.rpc.Responder(onResults_loadCatalog,fault); getDelegate(handlers).loadCatalog(); } Looks like a terrible solution. I agree with your comments regarding the Co

[flexcoders] Re: Use Cairngorm wihtout Dispatch

2008-05-05 Thread Bjorn Schultheiss
> The point I was making as that just because events are used on the > view instead of it accessing controller methods directly it doesn't > necessarily de-couple them Agreed. Also, I don't like being restricted to only being able to register events types to command classes to a Front Control

[flexcoders] Re: Modules the way to go?

2008-05-06 Thread Bjorn Schultheiss
Any external swf you load can crash your app. It's a really big issue with the player at the moment. >From my experience Modules provide you a good basis for multi-swf architecture with Flex. --- In flexcoders@yahoogroups.com, "Gregor Kiddie" <[EMAIL PROTECTED]> wrote: > > "I won't develop the

[flexcoders] Re: Singleton view classes?

2008-05-06 Thread Bjorn Schultheiss
You probably can using some sort of Singleton Manager. http://code.ericfeminella.com/classes/as3/SingletonManager.as.html But you can't change a sealed class's constructor such as UIComponent therefore you will not be able to manage the amount of instances created without the use of the manager cl

[flexcoders] Re: isDynamic(obj) ?

2008-05-06 Thread Bjorn Schultheiss
flash.utils.describeType() returns XML describing the object. The root node has an attribute "isDynamic".. --- In flexcoders@yahoogroups.com, "Josh McDonald" <[EMAIL PROTECTED]> wrote: > > Guys, > > Is there some easy way to tell if an object is dynamic without wrapping it > in a try-catch and ju

[flexcoders] Re: Singleton view classes?

2008-05-07 Thread Bjorn Schultheiss
here's one tip http://www.insideria.com/2008/03/flex-performance-memory-manage.html --- In flexcoders@yahoogroups.com, "David Ham" <[EMAIL PROTECTED]> wrote: > > > > > Better off looking at some other type of pattern. > > > > Any recommendations? I was getting some serious performance problems

[flexcoders] Re: Decompile SWF to extract Actionscript

2008-05-07 Thread Bjorn Schultheiss
Try this // parse SWF file function parseSWF(data:ByteArray) { parseLog = ""; data.endian = Endian.LITTLE_ENDIAN; var format:String = data.readUTFBytes(3); var compressed:Boolean = format=="CWS"; if (format=="FWS" || format=="CWS") { parseL

[flexcoders] Re: Declaring protected fields in MXML?

2008-05-07 Thread Bjorn Schultheiss
Everything you described is possible except the protected instead of public part. At some point one of the accessor must be public. --- In flexcoders@yahoogroups.com, "Josh McDonald" <[EMAIL PROTECTED]> wrote: > > Hey guys, > > Is it possible to define (non visual) components in MXML that are pro

[flexcoders] Re: Declaring protected fields in MXML?

2008-05-07 Thread Bjorn Schultheiss
didn't want the ids leaking into the public > API. > > I guess I'll just have to rethink things a little bit, make the declarative > stuff the public API, and have it reference the functions that are declared > in that used to be ;-) > > -J > > On Thu, May

[flexcoders] Re: Declaring protected fields in MXML?

2008-05-07 Thread Bjorn Schultheiss
sorry, at the end i meant to say So you can*t* access the button ID's via the panel. Only the canvas. --- In flexcoders@yahoogroups.com, "Bjorn Schultheiss" <[EMAIL PROTECTED]> wrote: > > well i'm not sure what you're actually trying to do but you can

[flexcoders] Re: Modules the way to go?

2008-05-08 Thread Bjorn Schultheiss
loaders are childs of a panel that can be > > draggable and resizable, with a maximize and a close button... So if > > the user choose to open N modules at the same, N modules will be > > displayed... > > > > A problem might be that by rule, the modules have

[flexcoders] Re: Help with Module strategy

2008-05-08 Thread Bjorn Schultheiss
- the charts are in modules, optimized for the single host This sounds the most reasonable. If the modules need to be loaded into another shell they can be re-compiled for that purpose. I have each module in its own project and run the deploy build via ant. --- In flexcoders@yahoogroups.com, "

[flexcoders] Re: How big does a SWF get before IE starts to worry?

2008-05-08 Thread Bjorn Schultheiss
I don't know what Rick was talking about, but if you're looking for training, local info, etc, ask on the flexaussie mailing list. http://groups.yahoo.com/group/flexaussie --- In flexcoders@yahoogroups.com, "Josh McDonald" <[EMAIL PROTECTED]> wrote: > > I assume you're the Doug he's talking abo

[flexcoders] Re: Help with Module strategy

2008-05-09 Thread Bjorn Schultheiss
> >>> > >>> > >>> About your chart dilemma - consider consolidating like chart types. > >>> Generalizing an interface to facilitate repurposing is smart and means > >> that > >>> each one of your little chart

[flexcoders] Re: Memory leak in UIDUtil.createUID()

2008-05-12 Thread Bjorn Schultheiss
I hope not. I'm using it everywhere! --- In flexcoders@yahoogroups.com, "shlomic_thailand" <[EMAIL PROTECTED]> wrote: > > Hi > > i ran the following simple application in flex builder 3 profiler > and found that this method (createUID) is leaking memory. > looking at its content seems its ok -

[flexcoders] shared code issue

2008-05-12 Thread Bjorn Schultheiss
I'm getting this error TypeError: Error #1034: Type Coercion failed: cannot convert com.qmecom.common.events::[EMAIL PROTECTED] to com.qmecom.common.events.UploadAssetsModuleEvent. at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/dispatchEve

[flexcoders] Re: shared code issue

2008-05-12 Thread Bjorn Schultheiss
my bad.. shared code module wasn't compiling due to a weird compiler error. it wasn't displaying in my problems panel for some reason. --- In flexcoders@yahoogroups.com, "Bjorn Schultheiss" <[EMAIL PROTECTED]> wrote: > > I'm getting this error > > T

[flexcoders] Re: Classes defined in MXML - are they dynamic? Can they be?

2008-05-13 Thread Bjorn Schultheiss
In run into this problem once with the array class back in the day. I changed a var from ArrayCollection to Array and had over 100 errors that were not caught at compile time since the Array is dynamic. --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > IMHO, dynamic

[flexcoders] Re: Flash Player 10 is in prerelease!

2008-05-14 Thread Bjorn Schultheiss
Is there a new api to play with? --- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote: > > http://labs.adobe.com/technologies/flashplayer10/ > > > > Gordon Smith > > Adobe Flex SDK Team >

[flexcoders] Re: Flash Player 10 is in prerelease!

2008-05-16 Thread Bjorn Schultheiss
http://blog.tengerstudio.com/2008/05/16/flash-player-10-class-browser/ --- In flexcoders@yahoogroups.com, VELO <[EMAIL PROTECTED]> wrote: > > Any word on API? > > VELO > > On Thu, May 15, 2008 at 3:25 AM, Bjorn Schultheiss < > [EMAIL PROTECTED]> wrote: > &

[flexcoders] Re: Sandbox violation running from Builder. How did I get this and how do I fix it?

2008-06-05 Thread Bjorn Schultheiss
Are you sure its not a security settings related issue.. www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html --- In flexcoders@yahoogroups.com, "Rick Winscot" <[EMAIL PROTECTED]> wrote: > > Also. where is the project 'physically' located? I would strongly recomme

Re: [flexcoders] Flex 3 beta 2 - Black Background on Initialize!?

2007-10-01 Thread Bjorn Schultheiss
Use the background-color compiler setting/option cheers, Bjorn On 02/10/2007, at 11:36 AM, herklano wrote: hi, why is the background black on initialize in the Flex 3 Beta 2 ??? anyone knows how to get rid of this? cheers, herculano

Re: [flexcoders] How to get all children in Application?

2007-10-01 Thread Bjorn Schultheiss
I dont think there is a built-in function that returns all children. It wouldn't be difficult to write a recursive function that recurses through the display list and gets all child display objects though. regards, Bjorn On 02/10/2007, at 12:11 PM, flexawesome wrote: Hi there, is th

Re: [flexcoders] Re: How to get all children in Application?

2007-10-01 Thread Bjorn Schultheiss
http://en.wikipedia.org/wiki/Recursion On 02/10/2007, at 12:23 PM, flexawesome wrote: I think so, and I creates function below. but don't know how to implement and writes the recursive function in this case, would u please show me an example? THANKS --- In flexcoders@yahoogroups.com,

[flexcoders] swc question

2007-10-02 Thread Bjorn Schultheiss
unnecessarily adding to the file size? regards, Bjorn

Re: [flexcoders] swc question

2007-10-02 Thread Bjorn Schultheiss
icate' them in the compiled end swf? I guess i'm mainly interested in the flex framework classes. regards, Bjorn On 03/10/2007, at 1:51 PM, Patrick Lemiuex wrote: Actually, I don't know the answer to your question Bjorn but you can inspect the contents of a swc by renam

[flexcoders] Anyone reading Paul Williams blogging about Presentation Patterns?

2007-10-14 Thread Bjorn Schultheiss
as opposed to a 'reusable-component' as abstraction can be a time-consuming exercise. I've never been a fan of code behind but i think the 'Presenter' does bring in a useful and easy to implement application level of abstraction that can ease development. btw I also like his use of Binding. regards, Bjorn

Re: [flexcoders] Multiple IFrames in Flex

2007-10-15 Thread Bjorn Schultheiss
Use ExternalInterface to call js methods on the html page that loads your Flex app. Forgive me for the lack of detail in my explanation. On 16/10/2007, at 11:50 AM, [EMAIL PROTECTED] wrote: Right. On 10/16/07, Dimitrios Gianninas<[EMAIL PROTECTED]> wrote: Are you using the Iframe tr

Re: [flexcoders] Re: Anyone reading Paul Williams blogging about Presentation Patterns?

2007-10-15 Thread Bjorn Schultheiss
olid. > > > > That makes it easy to inject a test data object (or series of data or data > > objects) to automate running through each presentation possibility. > > > > ...paul > > > > > > On 10/15/07, Bjorn Schultheiss <[EMAIL PROTECTED]>

Re: [flexcoders] Site Launch

2007-10-16 Thread Bjorn Schultheiss
Yo Mike, Nice Site. Out of curiosity how long did it take from the initial brief? regards, Bjorn On 16/10/2007, at 4:58 PM, Shaun McCran wrote: Top looking site, but it crashed my ie7 session as well, took out all my windows. All I did was close the stefani pop up window with the

Re: [flexcoders] Anyone reading Paul Williams blogging about Presentation Patterns?

2007-10-16 Thread Bjorn Schultheiss
cool, it seems comments are now on. I've got to say I'm pretty interested to read your upcoming posts. regards, Bjorn On 16/10/2007, at 5:14 PM, Paul Williams wrote: Hi Bjorn, Thanks for the feedback. I didn’t realize comments were not active on these entries; I’ve correcte

Re: [flexcoders] Mock objects in AS3

2007-10-16 Thread Bjorn Schultheiss
try add flash.net.registerClassAlias( "attempt.TestInterface", TestInterface ); prior to your cast attempt. regards, Bjorn On 17/10/2007, at 1:06 PM, aduston1976 wrote: lus I see a number of places on the web where the idea is mentioned, e.g. http://www.herrodius.com/blog

Re: [flexcoders] Validation border doesn't update

2007-10-17 Thread Bjorn Schultheiss
I logged a bug recently on this topic. vote for it http://bugs.adobe.com/jira/browse/SDK-13005 The workaround is there as well On 18/10/2007, at 10:15 AM, Richard Rodseth wrote: I'm following the recipe described here: http://www.adobe.com/devnet/flex/quickstart/validating_data/ In the last

Re: [flexcoders] Re: Mock objects in AS3

2007-10-18 Thread Bjorn Schultheiss
s.readObject(); return result; } regards, Bjorn On 18/10/2007, at 10:40 AM, dave_defusion wrote: Bjorn, I have been looking at this (as I would like a mocking framework for Flex too) this evening and I've had no luck either. The the registerClassAlias() do

[flexcoders] custom mxml-manifest file updates not noticed in F3B2

2007-10-21 Thread Bjorn Schultheiss
#x27; erros from the new entries. Also i do not get any errors if I rename an existing entry in the manifest to an invalid name. regards, Bjorn

[flexcoders] Cairngorm vs PureMVC

2007-10-22 Thread Bjorn Schultheiss
l with me. Dumb Models (vo collections) is another. Support for unit testing in the View is another. Anyone care to help start a discussion? regards, Bjorn

Re: [flexcoders] Re: Cairngorm vs PureMVC

2007-10-22 Thread Bjorn Schultheiss
PureMVC yet but would like to at some point. That being said, I've also not really encountered any situations where I felt Cairngorm was restricting me from accomplishing anything. Ben --- In flexcoders@yahoogroups.com, Bjorn Schultheiss <[EMAIL PROTECTED]> wrote: > > Hey All, > &

Re: [flexcoders] Cairngorm vs PureMVC

2007-10-22 Thread Bjorn Schultheiss
the Model. In this case, the Commands are the Controller (usually), and as such, setting ModelLocator data is their job, and their job alone. If data is getting f’d up, you immediately know it’s in the Command. You never have to question “who’s setting my data, where, and when?”. regards

Re: [flexcoders] Cairngorm vs PureMVC

2007-10-22 Thread Bjorn Schultheiss
of the defined structure via the Singleton. regards, Bjorn On 23/10/2007, at 2:49 PM, shaun wrote: > Hey Bjorn, > > Bjorn Schultheiss wrote: > >> It took me a while to grapple with but thats how it's been >> explained to >> me. >> >> VO's

Re: [flexcoders] Re: Cairngorm vs PureMVC

2007-10-22 Thread Bjorn Schultheiss
Hey Doug, My backend is mainly DAO's and I've got one delegate pers DAO in my company lib, that gets used across multiple projects. But I'm pretty sure thats not Cairngorm. Cairngorm is 1 to 1 e-c-d. regards, Bjorn On 23/10/2007, at 2:33 PM, Douglas Knudsen wrote: me

Re: [flexcoders] Cairngorm vs PureMVC

2007-10-22 Thread Bjorn Schultheiss
is a pain that I've had to deal with. I totally agree with the points brought up in the presentation. I have not really seen the benefit yet of Dependency Injection and using Prana, but thats probably because of ignorance as i didn't really delve into it. regards, Bjorn On 23/

Re: [flexcoders] Re: Cairngorm vs PureMVC

2007-10-23 Thread Bjorn Schultheiss
Thats what ive got. Ideally what i'm saying is i would have a single delegate for each command that makes a dao call. Bjorn On 23/10/2007, at 10:50 PM, ben.clinkinbeard wrote: Why not just have a DAODelegate with methods like getUserDAO(), getProductDAO(), etc? Ben --- In flexc

[flexcoders] Flex Library Project Manifest Options

2007-10-23 Thread Bjorn Schultheiss
I'm trying to build my swc from a Flex Library Project and having difficulty added a component manifest. In project properties -> compiler options, i added a url and manifest file, and i get a unknown namespace error. Is this a bug?

Re: [flexcoders] Trigger a function in the main applicatoin mxml from a popup window.

2007-10-28 Thread Bjorn Schultheiss
Listen to the closeEvent from the popup and call the function from the handler. Bjorn On 29/10/2007, at 12:10 PM, kalpkat9 wrote: Hi, This might be a really petty question to ask, but I will greatly appreciate if someone can answer. How can I trigger a function in my main application

Re: [flexcoders] Tween Motion along a path

2007-10-28 Thread Bjorn Schultheiss
I wasn't at Max, but have you seen this, http://labs.zeh.com.br/blog/? p=95 ? Bjorn On 29/10/2007, at 1:34 AM, snowjunkie73 wrote: At Adobe Max 2007 I went to a session on creating custom components in Flex. The example component used in the session was a custom carousel component

Re: [flexcoders] Re: Trigger a function in the main applicatoin mxml from a popup window.

2007-10-28 Thread Bjorn Schultheiss
Try from in the mainApp scope. http://livedocs.adobe.com/labs/flex3/html/help.html? content=controls_22.html http://www.adobe.com/2006/mxml";> On 29/10/2007, at 1:56 PM, kalpkat9 wrote: Thanks for taking your time to respond, B

Re: [flexcoders] Re: Trigger a function in the main applicatoin mxml from a popup window.

2007-10-28 Thread Bjorn Schultheiss
Normally i would use an MVC architecture and my currentState would be bound to a property on the model. Bjorn On 29/10/2007, at 2:25 PM, kalpkat9 wrote: ok, I guess this will suffice if the popup was just an alert. but the popup window i am working on is a component by itself with dat

Re: [flexcoders] PureMVC experts -- need assistance on mx.remoting.remoteObject calls

2007-11-06 Thread Bjorn Schultheiss
Check out the Cafe Townsend example On 04/11/2007, at 3:10 AM, tomeuchre wrote: I have a Flex app that interacts perfectly with my java app, when using the mx:remoteOject definition and the getters and setters are in mxml components. However, I want to migrate to pureMVC and use ActionScrip

Re: [flexcoders] Best browser for debugging on Mac OSX?

2008-11-25 Thread Bjorn Schultheiss
Camino is supposed to be pretty fast. Its a little bit more difficult to set up your proxies but it is possible. I was using Camino but I currently use Firefox. On Wed, Nov 26, 2008 at 10:45 AM, Guy Morton <[EMAIL PROTECTED]> wrote: > Anyone got a recommendation? > > I've been using Firefox,

Re: [flexcoders] Best browser for debugging on Mac OSX?

2008-11-25 Thread Bjorn Schultheiss
e > memory hog. > > I'm going to try Opera for a while. > > > On 26/11/2008, at 11:11 AM, Bjorn Schultheiss wrote: > > Camino is supposed to be pretty fast. > > Its a little bit more difficult to set up your proxies but it is possible. > > I was using Camin

[flexcoders] Re: Getting ByteArray.uncompress() to work in Flash - looking for an example tex

2009-03-01 Thread Bjorn Schultheiss
ASCompress supports GZIP http://code.google.com/p/ascompress/ --- In flexcoders@yahoogroups.com, David Adams wrote: > > On Sun, Mar 1, 2009 at 9:06 PM, Cato Paus wrote: > > go here > > http://onrails.org/articles/2007/11/27/flash-utils-bytearray-compressing-4-1mb- to-20k > > Thanks for the link

[flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Bjorn Schultheiss
Application.creationComplete should be fine. on your Loaders try Event.INIT I'm passing flashVars from shell to modules fine, don't see why there would be any hurdles with sub-applications. --- In flexcoders@yahoogroups.com, Richard Rodseth wrote: > > I just did a quick trace test, and the mes

[flexcoders] Re: Flex 3.3 SDK and AdvancedDataGrid

2009-03-03 Thread Bjorn Schultheiss
>From the release notes A new version of the data visualization libraries needs to be downloaded and installed into the SDK 3.3 installation to leverage features such as charts and the Advanced DataGrid. The library can be downloaded from the main Flex download page: http://www.adobe.com/produc

[flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Bjorn Schultheiss
. Bjorn --- In flexcoders@yahoogroups.com, "Tracy Spratt" wrote: > > Those traces tell me it should be working, that the embedded app is ready > when the host app attempts to communicate with it. > > > > Tracy > > > > _ > >

[flexcoders] Re: try, catch, finally ...

2009-03-04 Thread Bjorn Schultheiss
In my experience try/catch blocks have been most useful in dealing with sdk component life-cycle errors. It is useful to throw custom errors for debugging purposes but rarely do i need to handle them in a production environment and run another process. Bjorn --- In flexcoders

[flexcoders] Re: Scale To Fit

2009-03-05 Thread Bjorn Schultheiss
I've got a measuring class to do it. Scale to fit, fill, stretch and center. it return a matrix of the values. --- In flexcoders@yahoogroups.com, "pliechty" wrote: > > Does Flex have a scale to fit mechanism? I would like to scale a component > to fit in the visible screen space. >

[flexcoders] Re: AMF and sending/receiving pictures

2009-03-06 Thread Bjorn Schultheiss
Yes, AMF3 supports the ByteArray class. Images can be written into a ByteArray and then sent over Amf. Bjorn --- In flexcoders@yahoogroups.com, Weyert de Boer wrote: > > Does anyone know if there are any solutions to allow sending pictures > from the AMF server-side to the Flash/Fl

[flexcoders] Re: Modules, Cairngorm and Garbage Collection

2009-03-24 Thread Bjorn Schultheiss
Here's my ignorant statement for the week. Having a module that is built using Cairngorm unload cleanly is not worth the effort required to make it work. --- In flexcoders@yahoogroups.com, claudiu ursica wrote: > > I'm loading module via a command, so that it can be loaded form various > pl

[flexcoders] Re: Flex Builder Compiler Performance Benchmarking

2009-03-25 Thread Bjorn Schultheiss
How long has it been since the compile time has been taking that long? --- In flexcoders@yahoogroups.com, Matt Chotin wrote: > > We clearly need to see your application and understand your system > configuration. This is obviously something going very wrong, I can't imagine > your compilation

[flexcoders] Re: Modules, Cairngorm and Garbage Collection

2009-03-25 Thread Bjorn Schultheiss
refreshed. That app was cairngorm and used modules. it also helps to remove the CairngormEventDispatcher singleton. Basically we never unloaded. We just made sure the data was fresh. Even with the profiler it is near impossible to keep track of all your references, even without Cairngorm. Bjorn

[flexcoders] Re: Ribbon in FLEX

2009-03-30 Thread Bjorn Schultheiss
Good point, Its difficult in an application with so many functions though. Take CS4, the tools panel in Photoshop seems to work for trained designers, but when it got introduced into Flash CS4 with the collapsed panels, its difficult to know which icon to click when they're not all familiar. P

[flexcoders] Re: I want to use Flex Builder 3 to develop Flash Games

2009-03-30 Thread Bjorn Schultheiss
your compiling time even quicker. The factories are basically used to instantiate everything your main game will require. Bjorn --- In flexcoders@yahoogroups.com, Axonn wrote: > > > Hi Doobie! > > You said: > >You might want to organize things differently. Assuming that Game

[flexcoders] Re: Ribbon in FLEX

2009-04-01 Thread Bjorn Schultheiss
Agreed.. Welcome flexcoders-scott-barnes http://groups.yahoo.com/group/flexcoders-scott-barnes I didn't really feel like it fit under the tech category so i placed it under "online relationships". Enjoy We now have a place for all of our Scott Barnes loves Adobe conversations. --- In flexc

[flexcoders] Re: New Adobe forums coming!

2009-04-02 Thread Bjorn Schultheiss
Will the forums replace flexcoders? --- In flexcoders@yahoogroups.com, Matt Chotin wrote: > > Hi all, > > If you've been using the Adobe forums via the web interface recently you > probably saw notices that we're introducing a huge upgrade to the forum > system. We're combining the user-to-use

[flexcoders] Re: New Adobe forums coming!

2009-04-08 Thread Bjorn Schultheiss
the threading not even working in gmail. a subject prefix would be nice aswell [adobeflexforum] or something, like [flexcoders] --- In flexcoders@yahoogroups.com, "Amy" wrote: > > --- In flexcoders@yahoogroups.com, Paul Hastings wrote: > > > > > As for threading, do you know which header is mi

[flexcoders] Re: New Adobe forums coming!

2009-04-08 Thread Bjorn Schultheiss
Who pays you to spend 10-20 hours a week? How do you afford this luxury? --- In flexcoders@yahoogroups.com, "Amy" wrote: > > --- In flexcoders@yahoogroups.com, Sam Lai wrote: > > > > I'm not on the forums, but they should be sending out the mailing-list > > header in each email which allows y

[flexcoders] Re: create a thumbnail dynamically from large image using flex

2009-04-16 Thread Bjorn Schultheiss
--- In flexcoders@yahoogroups.com, "stinasius" wrote: > > any help guys? > http://www.brooksandrus.com/blog/2009/03/11/bilinear-resampling-with-flash-player-and-pixel-bender/

[flexcoders] Re: Are you using the Marshall Plan?

2009-05-06 Thread Bjorn Schultheiss
? Have I been to vague? even if this is not the issue you were directly referring to? Thanks, Bjorn --- In flexcoders@yahoogroups.com, Matt Chotin wrote: > > I wouldn't say there's an exact methodology. We have some elements of agile > (like iterations, unit tests, ab

[flexcoders] Re: Flex Framework Cache Statistics

2009-05-14 Thread Bjorn Schultheiss
good question. I would also like to know --- In flexcoders@yahoogroups.com, Nayan Savla wrote: > > Hi All, > > I am just wondering if there is some data on the percentage of Flash > players which would already have a the flex framework cache. Our > application without the cache is 456Kb and when

[flexcoders] Is SDK 3.4.0 a stable release?

2009-06-04 Thread Bjorn Schultheiss
Its bundled in the 4 beta but i cant find any documentation or a changes list for it.

[flexcoders] Re: GoogleMat� Sample Application

2009-06-04 Thread Bjorn Schultheiss
Would be nice with flex 4 and catalyst : ) --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > Hi all, > > For any of you interested in learning more about the Mat� framework, > I've created a sample that's publically > available. It's a simple AIR appl

[flexcoders] Re: GoogleMat� Sample Application

2009-06-04 Thread Bjorn Schultheiss
Yeah that's pretty cool. Cant wait to give catalyst a crack. --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > Coming, but the only thing that will be different will be the view code. > :) > > -TH > > --- In flexcoders@yahoogroups.com, "B

[flexcoders] Bitmap downsampling

2009-07-01 Thread Bjorn Schultheiss
Hi, I'm having a lot of trouble with down-sampling a bitmapData. I tried the smoothing option first public function produceResizedBitmapData(image:DisplayObject, transform:Matrix):BitmapData { var temp:BitmapData = new BitmapData(image.width, image.height, true, 0x00FF); te

[flexcoders] Re: Bitmap downsampling

2009-07-01 Thread Bjorn Schultheiss
Can't believe this cost me 9 hours of brain time and the answer was in a constant all along. StageQuality.BEST Where's the documentation for this No-one is using, not even Aviary. thanks anyway Timmaay.. --- In flexcoders@yahoogroups.com, Tim Rowe wrote: > > Bjorn, &g

[flexcoders] Re: Combobox like on http://www.bombaysapphire.com

2009-08-11 Thread Bjorn Schultheiss
I'd say its custom. Really nice though. --- In flexcoders@yahoogroups.com, "yonghan79" wrote: > > Hi all,i wonder does anyone ever before create combobox like the one > here bombaysapphire.com born detail combobox > .What did the creator used?Thanks a > lot.. >

RE: [flexcoders] Cairngorm is bad?

2005-11-14 Thread Bjorn Schultheiss
"as it's great to see the technology challenged" True indeed, I think other unique frameworks would highlight more, any strengths or weaknesses in Cairngorm. So far Cairngorm holds the flex framework's heavyweight belt, time for some new contendors -Original Message- From: flexcoders

RE: [flexcoders] OT: 2D array from Remoting

2005-11-23 Thread Bjorn Schultheiss
should handle it fine. I know i used CF to place multiple query returns inside of an object and returned that back to flash no problemo. then in client function resultHandler(re) { var returnObj = re.result; var topMenuRS = returnObj.getItemAt(0); } or something like that...    From: f

[flexcoders] Connection Debugging

2006-06-19 Thread Bjorn Schultheiss
In Flash Development I was using ServiceCapture for my NetConnection Debugging.   What’s the preferred NetConnection debugger for Flex2? In particular I’m using a Coldfusion backend.   Has anyone managed to use ServiceCapture with flex2?   Regards,   Bjorn Schultheiss Senior

RE: [flexcoders] Re: How to integrate Flash and Flex well done ?

2006-06-20 Thread Bjorn Schultheiss
Hi David,   At the moment Flex2 without Blaze leaves a big hole in the system. Is there an approx expected date on when you intend to put blaze on labs?   Regards,   Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com

[flexcoders] Anyone got the link for this breezo

2006-06-27 Thread Bjorn Schultheiss
Dear Bjorn,   Thank you for registering for:   ZeroOne Community Talks Architecting ColdFusion applications - a framework overview Wednesday 28 June 2006   -  12:00 - 13:00 Breeze Webinar You will be emailed the link to join the webinar   I think I registered to late

RE: [flexcoders] Re: How to integrate Flash and Flex well done ?

2006-07-03 Thread Bjorn Schultheiss
Here’s a nice article on Flash Swf’s within Flex2/AS3 http://www.asserttrue.com/articles/2006/05/23/autocompleted-autocomplete-embed-legacy-swf-as3-0-project-example-updated-for-beta-3     Regards,   Bjorn Schultheiss Senior Flash Developer QDC Technologies From

RE: [flexcoders] Connection Debugging

2006-07-03 Thread Bjorn Schultheiss
            Endpoint.*     Service.*     Configuration     Message.*               Any help would be much appreciated   Regards,   Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@y

RE: [flexcoders] how to create a component in AS?

2006-07-04 Thread Bjorn Schultheiss
You’ll want to create a new flash.display.TextField instance. Whats cool is you could compile it in the flash 9 ide with graphical mc’s. Then reference those child elements once imported into a flex app.   Regards,   Bjorn Schultheiss Senior Flash Developer QDC Technologies

RE: [flexcoders] CF Flash Remoting project results in Jrun servlet error

2006-07-04 Thread Bjorn Schultheiss
I don’t think its building the directory. You will need to confirm that it exists in wwwroot/test/bin/   Regards,   Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of yaagcur

RE: [flexcoders] Server push from ColdFusion without FDS?

2006-07-04 Thread Bjorn Schultheiss
Nah you're dreaming :) I think he's saying that coldfusion is configured to work with FDS to achieve push. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiv

Re: [flexcoders] Re: Cairngorm2: ViewLocator - ViewHelper

2006-07-05 Thread Bjorn Schultheiss
Hey Jesse,   Any idea on why ViewHelper and ViewLocator classes are in Cairngorm 2 if they have been deemed un-beneficial? I myself felt obligated to see if there was a valid use for this based on the fact that they were included.   Regards,   Bjorn Schultheiss Senior Flash

RE: [flexcoders] Re: How to integrate Flash and Flex well done ?

2006-07-05 Thread Bjorn Schultheiss
I guess Flash 9 solves the issue of creating new flash content for flex applications.   Regards,   Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Versweyveld | VERSO Sent

<    1   2   3   4   5   6   >