Re: [flexcoders] Flex Builder 3 - Design Mode unvailable

2007-11-21 Thread Thomas Ruehl
. A temporary solution would be to configure all resources to use the same revidion of the SDK. I already filed a bug for this. If you want, you can vote for it here: https://bugs.adobe.com/jira/browse/FB-9915 Cheers, Thomas Mark Ingram wrote: Hi, the design mode is unavailable in FB3 Beta 2. The Flex

[flexcoders] CuePointManager

2007-11-16 Thread Thomas Viktil
, or is there something wrong with the CuePointManager class? Best regards, Thomas Viktil Onkel Estrup AS

Re: [flexcoders] Replace color in animation?

2007-11-15 Thread Ian Thomas
Bjorn, If all of the areas you want to change (e.g. the red areas of the image) are exported as a single sub-movie-clip of the overall movie-clip, you can use the flash.geom.ColorTransform class to change the colour of everything in that subclip. That works for us. Hope that's helpful,

Re: [flexcoders] Croping area

2007-10-24 Thread Ian Thomas
Hi Anzer, Have two copies of your image; one set to 0.5 alpha and one in front of that set to 1.0 alpha. Use a rectangular mask on the image in front (DisplayObject.mask) That should do it. Ian On 10/24/07, Anzer [EMAIL PROTECTED] wrote: Hi, I am working in an image

Re: [flexcoders] Re: Croping area

2007-10-24 Thread Ian Thomas
Hi Anzer, I'd do something like: - on CLICK on the frontmost image, install a MOUSE_MOVE listener to start listening to MOUSE_MOVE events - on MOUSE_MOVE, adjust the x and y of your mask clip (not the image itself) appropriately. - on RELEASE on the frontmost image, uninstall the MOUSE_MOVE

Re: [flexcoders] Re: Croping area

2007-10-24 Thread Ian Thomas
You're quite right, Jon - I'd completely forgotten that reverse order could cut out from a shape. Ian On 10/24/07, Jon Bradley [EMAIL PROTECTED] wrote: Creating multiple versions of an image is a bit much on the overhead. Plus, you don't have the capability of doing a white wash, or dark

Re: [flexcoders] Take two: dynamic asset creation

2007-10-23 Thread Ian Thomas
Hi Alex, I've submitted this as a feature request on the Flex tracker. As an aside, the simplest solution is (I think) a very straightforward change to the Flex API. If the expected data fields were extended so that as well as 'icon' you passed in 'iconArguments' and those arguments, if

Re: [flexcoders] Take two: dynamic asset creation

2007-10-23 Thread Ian Thomas
Fine - that'll work just as well. Ian On 10/23/07, Alex Harui [EMAIL PROTECTED] wrote: That's fine. We wouldn't do what you suggested though, we'd use IClassFactory in more places

[flexcoders] Dynamic class creation?

2007-10-22 Thread Ian Thomas
Hi all, Got a bit of a tricky problem here that I'm banging my head against... If you assume I have some function that returns a Class object - for example: getAssetClass(id:String):Class This returns a Class object which, at some future time, will be called with new SomeClass() to

Re: [flexcoders] Dynamic class creation?

2007-10-22 Thread Ian Thomas
Hi Christophe, Unfortunately not, but thanks. To explain, I'll copy a response email that I just posted to Flash_tiger: - I know of getDefinitionByName, but that won't work for me as I'm not returning back different class definitions - I'm returning the _same_ class definition each

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Ian Thomas
- *From:* Ian Thomas [EMAIL PROTECTED] *To:* flexcoders@yahoogroups.com *Sent:* Monday, October 22, 2007 10:43 PM *Subject:* [flexcoders] Take two: dynamic asset creation Here's an easier way to explain the problem I posted about earler. If I create some BitmapAssets manually rathern than using

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Ian Thomas
Thomas *Sent:* Monday, October 22, 2007 8:47 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Take two: dynamic asset creation Thanks Arul, The more I delve in to this and experiment with it the more I'm beginning to think it's not possible. Ben Stucki has an interesting

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Ian Thomas
Thanks Arul - I've wrestled with it for about 6 hours now and am going to take a break for the night. A bunch of different avenues seem to be closed off: - You can't subclass Class - You can't replace the constructor() function of a class - You can't set any static data on the Class instance that

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

2007-10-22 Thread Thomas Spellman
I got this error when I upgraded my flash player to a newer version via the adobe flash site. I then had to get one of the newest debug flash plugins from the adobe download site. Now it works fine. T From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Sent:

Re: [flexcoders] Dynamic class creation?

2007-10-22 Thread Ian Thomas
Dan, Thanks for that; I don't think so (I'd already looked at it). As far as I can see it's only useful for things expecting a ClassFactory, not a Class. Cheers, Ian On 10/22/07, Daniel Freiman [EMAIL PROTECTED] wrote: Fill ClassFactory work?

Re: [flexcoders] Take two: dynamic asset creation

2007-10-22 Thread Ian Thomas
Thanks Alex. Bitmaps are only an example, here - any kind of derived Asset class suffers from the same issues. I can understand your comments about CSS skinning etc.; and that the Flex framework is designed for embedding. The particular situation I am working in requires - specifically - that

Re: [flexcoders] Dynamic class creation?

2007-10-22 Thread Ian Thomas
Alex - again, thanks. Please see the other thread for a much fuller explanation. Cheers, Ian On 10/22/07, Alex Harui [EMAIL PROTECTED] wrote: I repeat: the recommended practice is to use a custom itemRenderer.

[flexcoders] nested viewstack does not initialize in time

2007-10-21 Thread Thomas Spellman
I have a simple navigation interface with a navbar on the left, and a content section on the right. The navbar is composed of several main sections (canvases), each of which has several sub sections (a linkbar bound to a viewstack). The content area has a main viewstack with a canvas for each

RE: [flexcoders] nested viewstack does not initialize in time

2007-10-21 Thread Thomas Spellman
: [flexcoders] nested viewstack does not initialize in time creationPolicy=all I'll let someone else reply telling you why that's a bad idea. On 10/20/07, Thomas Spellman [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: I have a simple navigation interface with a navbar on the left, and a content

[flexcoders] Convert one Object to another -possible?

2007-05-07 Thread Thomas Viktil
a tutorial on Adobe's website which does the same thing, but with SabreAMF. The code looks pretty much the same except that the tutorial uses PHP5, and I'm on PHP4 (because of my webhost). But that tutorial didn't make me any smarter... Best regards, Thomas Viktil

[flexcoders] Caret position

2007-04-08 Thread Ian Thomas
Hi folks, Is there any way to set the caret position (or the selection) in a TextField object? All three of the relevant properties - caretIndex, selectionBeginIndex, selectionEndIndex - are read-only. Any ideas? Thanks, Ian

Re: [flexcoders] Caret position

2007-04-08 Thread Ian Thomas
Daniel, *sigh* Thanks very much. Now I feel really stupid. :-) But also very grateful, as for a while I thought that Adobe had missed out that functionality, for some strange reason. :-) Cheers, Ian On 08 Apr 2007 08:41:02 -0700, Daniel Freiman [EMAIL PROTECTED] wrote: Try

[flexcoders] Populating mx:List from xml file

2007-03-28 Thread Thomas Newcomen
I have an xml file with nodes like this: templates label=Short Subject Report data=ShortSubjectReport / I have this as the dataprovider of the mx:List: dataProvider={report_listXML.templates} The list appears to be populating, as I can see the coloring as I hover over the items of the list,

Re: [flexcoders] Re: Posting XML with httpservice

2007-03-26 Thread Thomas Newcomen
the httpservice.send() function, try httpservice.send (xmlDocument) - and remove the mx:request tag from the MXML :D --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Thomas Newcomen [EMAIL PROTECTED] wrote: If I have contenttype of my httpservice set to application/xml and I have

[flexcoders] Posting XML with httpservice

2007-03-24 Thread Thomas Newcomen
If I have contenttype of my httpservice set to application/xml and I have a variable that contains an xml document (?xml ?blah.../blah) How do I just post that the service? this doesn't seem to work: mx:request {xmlDocument} /mx:request Any ideas? 'preciate it. Crit

[flexcoders] Trimming a request sent using mx:httpservice /

2007-03-23 Thread Thomas Newcomen
I have an application that is to post XML to a url and return a resultset as XML. When using a html form to post the xml, it has to be in a formfield named xml. When I attempt to debug the service call, it /looks/ as if the xml being sent contains nothing extra, but I keep getting the response

[flexcoders] Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-03-21 Thread Thomas Huijzer
Hi All, With AMFPHP 1.9 I am trying to return an Object containing some vars and an ArrayCollection. Inside this ArrayCollection there are other Objects. But I can't get this to work in Flex. For example: Flex class package com.app.classes { import

Re: [flexcoders] an as3 zip library

2007-03-05 Thread Ian Thomas
Brilliant - thanks David. Ian On 3/5/07, David Chang [EMAIL PROTECTED] wrote: Hello, I had put together a small library for handling zip files and thought I'd share it. Anyways if you're interested, you can find more info at http://nochump.com/blog/?p=15 David

[flexcoders] Non-Required attributes in a class..

2007-02-25 Thread Thomas Newcomen
I am attempting to build a class file for use in flex and I have it as Products.as There are several attributes that can be passed in, but are not required. How do I write the class file for arguments that are not required. I currently have 50 arguments, but do not need to use all of them.. Do

Re: [flexcoders] Flex/Flash on The iPhone ?

2007-01-10 Thread Ian Thomas
Pretty sure. Watch the 'image zoom' movie - putting two fingers on the screen and moving them apart zooms the image... Ian On 1/10/07, Merrill, Jason [EMAIL PROTECTED] wrote: The same way Safari does. (but are you sure there are multiple simutaneous mouse events in the iPhone?) Jason

Re: [flexcoders] [Flex2, Cairngorm 2.1] Trouble with ServiceLocator

2006-12-29 Thread Thomas Rühl
Mike, thanks for your response, but this isn't the problem... As of Cairngorm 2.1, the getService() method is deprecated. It has been replaced with getRemoteObject(). Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer

[flexcoders] [Flex2, Cairngorm 2.1] Trouble with ServiceLocator

2006-12-28 Thread Thomas Rühl -akitogo-
::SystemManager/create() at mx.managers::SystemManager/::initializeTopLevelWindow() at mx.managers::SystemManager/::frameEndHandler() Any help please...? Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188

Re: [flexcoders] Re: SEO Compatibility

2006-12-28 Thread Ian Thomas
On 12/28/06, Kevin Newman [EMAIL PROTECTED] wrote: What you have described is basic deep linking, but does not solve the problem I have been attempting to articulate. Regardless of what goes on on the server, if you enter some path info after the .com part of the url, the server thinks it is

Re: [flexcoders] Re: SEO Compatibility

2006-12-16 Thread Ian Thomas
On 12/17/06, Claus Wahlers [EMAIL PROTECTED] wrote: PLUS.. ;) I'd be interested in how Ajax applications handle SEO, as they likely face the same, or similar problems. Ok, Ajax apps probably don't face as much problems as Flex apps as the displayed data is HTML and contains links that

RE: [flexcoders] Drag and drop

2006-11-30 Thread Thomas W. Gonzalez
The button is not being deleted, but being moved from your source component's display list to the destination components display list. The DragManager has a reference to the DragSource, not a COPY of it. In order to do what you are implying you would need to create a NEW button at the

[flexcoders] Is it possible to add pictures to a TileList which is not embedded?

2006-11-16 Thread Thomas Hagen Johansen
myPic:Image = new Image(); myImage.source = ./myPic.jpg; ... mx:TileList mx:dataProvider mx:Array mx:Object label=Blah icon={myPic} / /mx:Array /mx:dataProvider /mx:TileList Anyone knows why this does not work? Thank you very much in advance! - Thomas Hagen

[flexcoders] Re: Is it possible to add pictures to a TileList which is not embedded?

2006-11-16 Thread Thomas Hagen Johansen
I made a stupid typo in the original post. Sorry for that. Here is source which can compile and run. Hope someone can explain what I am doing wrong. - Thomas Hagen ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; applicationComplete=appComplete

Re: [flexcoders] Tamarin, Adobe open source the Flash player ?

2006-11-07 Thread Ian Thomas
Hi Tom, Just came across the same thing myself - that's a stunning contribution, if I'm reading it right. It basically looks like Adobe are providing the source of the AVM2 bytecode interpreter/runtime engine to Mozilla so that Mozilla can use it as the execution engine for their

RE: [flexcoders] local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez
Yes, I understand that we want both apps coming from the same domain in production (or at least both from remote network locations) But there is a major use case here that cant be fulfilled: How do you DEBUG? Is there a way to setup Flex Builder to debug via remote files? We

RE: [flexcoders] Re: local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez
configuration that you want to modify 3. un-check the use default launch URLs checkbox, and then enter the URL you want. --- In [EMAIL PROTECTED]ups.com, Thomas W. Gonzalez [EMAIL PROTECTED].. wrote: Yes, I understand that we want both apps coming from the same domain in production (or at least

RE: [flexcoders] Re: local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez
the LoaderContext.securityDomain property Your process sounds right, alternatively you could have the stable modules also available locally though, right? From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of Thomas W. Gonzalez Sent: Friday, November 03, 2006 10:53 AM

RE: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something

2006-11-02 Thread Thomas W. Gonzalez
I believe certain display objects have a property called something like doubleClickEnabled that you need to set to receive/fire those events. - Tom From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Evans Sent: Thursday, November

RE: [flexcoders] Disabling mouse/keyboard interaction while BusyCursor is set

2006-11-02 Thread Thomas W. Gonzalez
You might try popping up a model status panel or something, this would disable the other elements AND give a better visual indication that the user should not be interacting with the App. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

Re: [flexcoders] Re: Value Object inside Value Object?

2006-10-23 Thread Thomas Rühl -akitogo-
you're welcome :D Dan wrote: Oh, thanks. It is really that simple. Dan --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Thomas R?t;[EMAIL PROTECTED] wrote: Hi, yeah, sure... why not...? In your first VO: public var aString : String; public

Re: [flexcoders] Value Object inside Value Object?

2006-10-19 Thread Thomas Rühl
= 'foo 2'; // assign the second VO to the first one... localVO.anotherVO = localAnotherVO; // localVO is now set with a string and another VO. Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314

Re: [flexcoders] Button Click

2006-10-19 Thread Thomas Rühl
Ah, I don't think so. But you can always call whatever function you call on the button's click event, as well in your creationComplete function. Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188

[flexcoders] Re: Access Cairngorm Value Objects in the onResult Method

2006-10-18 Thread Thomas
for handling the result, you have instant access to the data. Cheers, Thomas. --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Yeah use the async token. Execute() { Var call:AsyncToken = delegate.myMethod(myVO); Call.token = myVO; onResult(e

Re: [flexcoders] [Flex 2] Crossdomain issue

2006-10-17 Thread Thomas Rühl
instantiate-typesfalse/instantiate-types /serialization /properties /channel-definition What am I doing wrong here?? Cheers, Thomas. Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0

Re: [flexcoders] [Flex 2] Crossdomain issue

2006-10-17 Thread Thomas Rühl
, they do now, what the hell... Thanks, Peter, for your concern. Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil

[flexcoders] this is just a test...

2006-10-16 Thread Thomas Rühl
let's see, if this one appears... Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0) 179 750 75 87 E-Mail

[flexcoders] [Flex 2] Crossdomain issue

2006-10-16 Thread Thomas Rühl
/crossdomain.xml Everything else, like Coldfusion and the database, as well runs locally on my machine. Any attempts using localhost, work just fine. Any help is really appreciated! Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG

[flexcoders] RESENT: [Flex 2] Crossdomain issue

2006-10-16 Thread Thomas Rühl
Original Message Subject: [Flex 2] Crossdomain issue Date: Mon, 16 Oct 2006 13:48:53 +0200 From: Thomas Rühl [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Organisation: akitogo To: flexcoders@yahoogroups.com Hello flexcoders, I am currently failing to access my application

[flexcoders] [Flex2] DataGridItemRenderer displaying an image...

2006-10-12 Thread Thomas Rühl
Hello flexcoders, please, can anyone provide me with an example of how to implement an ItemRenderer for a DataGrid that displays an image or icon for each row...? Unfortunately, there is no example within the Docs at all and I am constantly failing all the way long... Cheers, Thomas

Re: [flexcoders] [Flex2, Cairngorm] Several Cairngorm instances in one app...?

2006-10-12 Thread Thomas Rühl
Thanks Ralf, that's a great idea, I'll do so :) This seems a more transparent solution to me than starting to use ApplicationDomains in the middle of things. I am totally excited of how the project will look like in the end... Cheerio, Thomas Thomas

[flexcoders] [Flex2, Cairngorm] Several Cairngorm instances in one app...?

2006-10-11 Thread Thomas Rühl
Cairngorm, I think I might already run into problems having more than one FrontController instance... I'd like each of the sub systems to have its own event handling and Cairngorm structure in the background, befor I split it up completely... Cheerio, Thomas

[flexcoders] [Flex2] Error adding child to a ViewStack

2006-10-10 Thread Thomas Rühl
the index is available beforehand. Another issue I have is, that the viewStack throws a TypeCastError, when I try to attach a Canvas (which is a subclass of Container).. Any ideas??? Thanks and cheers, Thomas Thomas Rühl Design, Programming Concepts

Re: [flexcoders] [Flex2] Error adding child to a ViewStack

2006-10-10 Thread Thomas Rühl
Hi Dirk, thanks, you can spare out your answer in the Flexforum then ;) Ermmm yeah, the selectedChild was a cp mistake. I tried selectedIndex and will do so again now, maybe I missed something there... Cheers, Thomas Thomas Rühl Design, Programming

Re: [flexcoders] [Flex2] Error adding child to a ViewStack

2006-10-10 Thread Thomas Rühl
..still the same - RangeError - with this: this.customerViewStack.selectedIndex = this.customerViewStack.numChildren -1; and as well with this: this.customerViewStack.selectedIndex += 1; Thomas Rühl Design, Programming Concepts akitogo OHG

Re: [flexcoders] make eclipse ignore directories

2006-10-09 Thread Thomas Rühl
under normal circumstances, this should not happen. i am using svn for versioning my projects as well and it is not pushing anything here. maybe try upgrading your subclipse to tha latest version. cheers, thomas Thomas Rühl Design, Programming

Re: [flexcoders] [Flex2] Binding an image using @Embed...

2006-10-06 Thread Thomas Rühl
thanks a lot for that :) this actually might become an issue... cheers, thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449

Re: [flexcoders] [Flex2] Binding an image using @Embed...

2006-10-05 Thread Thomas Rühl
great. at runtime, i have the path to lots and lots of images. for that, i need to load them dynamically. so what is the proper way to do it? cheers, thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314

[flexcoders] [Flex2] Binding an image using @Embed...

2006-10-04 Thread Thomas Rühl
to be shown. For some reason, I cannot manage to assign the path dynamically to the Button component using @Embed. I think, there is a way more proper to do so... Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer

Re: [flexcoders] [Flex2] Coldfusion startup error regarding RMI and FlexAssembler

2006-10-02 Thread Thomas Rühl
@Darron: since I'm currently not running JBoss, I think this isn't the issue. @João: thanks a lot , I think deleting the file finally did it. At last, CF starts up without errors and everything seems to work for now. Thanks for all your interest! Cheers, Thomas

[flexcoders] [Flex2] Coldfusion startup error regarding RMI and FlexAssembler

2006-09-27 Thread Thomas Rühl
that. I am running the latest public versions of Coldfusion (7.02, Developer) and FDS (final version, Express Edition). However, earlier I had the beta versions installed, but they were completely removed before installing the finals. Thanks for your help. Cheers, Thomas

Re: [flexcoders] Loading AVM1 content into AVM2

2006-09-17 Thread Ian Thomas
On 9/17/06, Daniel Wabyick [EMAIL PROTECTED] wrote: Yeah, I just reproduced your bug ... Seems like the reference to _root gets screwed up on subsequent calls. What's *really* interesting ... If I comment out the cleanup in your AVMLoader class, I can *crash* Eclipse ... if (_loader!=null)

[flexcoders] Loading AVM1 content into AVM2

2006-09-16 Thread Ian Thomas
Hi guys, I've hit a huge hurdle when trying to communicate between AVM1 and AVM2. I've been trying to create a component - call it AVM1Loader - which will allow simple communication between an AVM2 flex app and a contained AVM1 file. In theory, it's pretty simple: - Use Loader to load the

Re: [flexcoders] Loading AVM1 content into AVM2

2006-09-16 Thread Ian Thomas
?name=wishform Regards, -D Ian Thomas wrote: Hi guys, I've hit a huge hurdle when trying to communicate between AVM1 and AVM2. I've been trying to create a component - call it AVM1Loader - which will allow simple communication between an AVM2 flex app and a contained AVM1 file. In theory

Re: [flexcoders] Cairngormstore for flex 2

2006-09-05 Thread Thomas Rühl
Yeah, looking forward to get my hands on it ;) Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0

[flexcoders] [Flex2, FlexBuilder] bun confirmation...?

2006-08-21 Thread Thomas Rühl
, they don't appear in the list, even after closing and re-opening the dialogue. Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69

Re: [flexcoders] Cairngorm 2 - Event propagation problem

2006-08-17 Thread Thomas Rühl -akitogo-
stuff, don't know if this solves your problem, though... Cheers, Thomas hemantkamatgi wrote: Hi, I am trying to use Cairngorm 2 framework with Flex 2. This issue is that the event (login) does not seem to reach the FrontController. I am listing my application files with the significant

[flexcoders] [Flex Data Services] Managed associations / DB abstraction ?

2006-08-16 Thread Thomas Rühl
, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0) 179 750 75 87 E-Mail [EMAIL PROTECTED] Web http

Re: [flexcoders] Flex/Cairngorm Syntax

2006-08-15 Thread Thomas Rühl
Hi Graham, you're exactly right, * is a wildcard, meaning the parameter event that is passed to the function, can be of any type. By default, if not passed in, it is assumed NULL. This also is written somewhere in the docs but at the moment, I can'T remember where it was. Cheers, Thomas

Re: [flexcoders] Split Application in Sections. Prevent one loading only.

2006-08-10 Thread Thomas Rühl -akitogo-
Hi there, yes, this is possible. You'd need to create one application for each of the parts you want to be loaded during runtime. The compiler creates the additional swfs for you. Then take a look at the SWFLoader class and the events the TabNavidator dispatches. Cheers, Thomas falecomozig

Re: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-09 Thread Thomas Rühl
unspecific in terms of the programming languages. It has Actionscript support implementet though, but I didn't see the need to turn that on explicitly. Again, thanks for all your interest in the discussion. Cheers, Thomas Thomas Rühl Design, Programming

Re: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-09 Thread Thomas Rühl
Dave, I know. Thanks for the hint :) Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0) 179 750 75 87 E-Mail

Re: [flexcoders] Re: [Flex2] FlexBuilder throws Removing compiler problem markers

2006-08-08 Thread Thomas Rühl
folks are, too. We'll see, if there'll be a fix any time soon. Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449

Re: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-07 Thread Thomas Rühl -akitogo-
. Problem being, these tools are mostly Java specific (for which I think they shouldn't), since they DO want to generate code out of the model. And this is the reason I am interested in how other folks do the modeling. Cheers, Thomas Thomas Rühl Design

Re: [flexcoders] Re:What do you use for modelling a Flex2 application...?

2006-08-07 Thread Thomas Rühl
Hi Kelly, sounds great with the Flex templates ;) What software do you use for your modelling? Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445

Re: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-07 Thread Thomas Rühl
Java alongside with 'em. Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0) 179 750 75 87 E-Mail

Re: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-07 Thread Thomas Rühl
Dave, for example OmondoUML: http://www.omondo.com I have to admit that I'm a little out of date myself regarding Java, but as far as I hear from my colleagues, the above should work really cool. Cheers, Thomas Thomas Rühl Design, Programming

Re: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-07 Thread Thomas Rühl
*lol* thanks a lot, Jason :) If you're interested http://en.wikipedia.org/wiki/Unified_Modeling_Language Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69

[flexcoders] [Flex2] What do you use for modelling a Flex2 application...?

2006-08-06 Thread Thomas Rühl -akitogo-
tools for that kind of work still leads towards endless times spent on the drawing table - at least on my side. So, the question coming up my mind is, in what ways do you all design your Flex applications before/during or after implementation, if any...? Cheers, Thomas

Re: [flexcoders] Re: Flex and CF

2006-07-19 Thread Thomas Rühl -akitogo-
Mark me supporting on this one... Cheers, Thomas João Fernandes wrote: Damon, but there isn't much information if you want to use RPC + FDS. All examples are RPC or FDS only, not the mix. If you define your CF RPC destination inside FDS it won't work and there isn't any example

[flexcoders] [Flex2, FDS] Configuring RPC

2006-07-18 Thread Thomas Rühl -akitogo-
) way to configure stuff? Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0) 179 750 75 87 E-Mail

Re: [flexcoders] [Flex2, FDS] Configuring RPC

2006-07-18 Thread Thomas Rühl -akitogo-
Duplicate the compile files? The config's or mxml's? Is there a reliable documentation about these things? Everything I found seems somehow teared apart and I just don't get the big picture here... Thanks very much, Thomas Thomas Rühl Design, Programming

Re: [flexcoders] [Flex2, FDS] Configuring RPC

2006-07-18 Thread Thomas Rühl -akitogo-
{context.root}/WEB-INF/web.xml/touch-file /redeploy /system /services-config - Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69

Re: [flexcoders] [Flex2, FDS] Configuring RPC

2006-07-18 Thread Thomas Rühl -akitogo-
hero for the rest of the week now... Trying to get the rest of the FDS working now ;-) Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49

Re: [flexcoders] [Flex2] Cairngorm question

2006-07-13 Thread Thomas Rühl -akitogo-
Yeah - about that, Tom... if you took a look at the Cairngorm part of the labs site, you'd see the the only thing referenced under the Resources bit is in fact Steven's article. There are no demos for Cairngorm. Cheers, Thomas Thomas Rühl Design

Re: [flexcoders] Re: [Flex2] Cairngorm question

2006-07-13 Thread Thomas Rühl -akitogo-
Thanks, Tim! Looks like, that'll help me out here. I'm as well watching the »WebServices Cairngorm« thread, and I think this is one heck of a solution for the matters Darron draws in his article. Cheers, Thomas Thomas Rühl Design, Programming

Re: [flexcoders] Re: [Flex2] Cairngorm question

2006-07-13 Thread Thomas Rühl -akitogo-
to understand, so why not use it!? Btw, in the meantime I got the Cairngorm way working. Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax

Re: [flexcoders] [Flex2] Cairngorm question

2006-07-13 Thread Thomas Rühl -akitogo-
lol, thanks anyway. i got it to work with the help of darren's article about responder versus iresponder... cheers, thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69

Re: [flexcoders] [Flex2] Cairngorm question

2006-07-12 Thread Thomas Rühl -akitogo-
in both, calling the onFault and onResult methods... why? How can I cope with that? Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69

[flexcoders] [Flex2/FlexBuilder] How can I add commands...

2006-07-11 Thread Thomas Rühl -akitogo-
...to the little popup that comes up when i press [alt] [shift] [x]? cheers, thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69

[flexcoders] [Flex2/FlexBuilder] ahh, alright

2006-07-11 Thread Thomas Rühl -akitogo-
just found another way... sorry cheers, thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0) 179 750 75 87 E

[flexcoders] [Flex2] FlexBuilder throws Removing compiler problem markers

2006-07-07 Thread Thomas Rühl -akitogo-
Hello list, the attached error occurs randomly during saving files - mxml or as. Even on clean/freshly created projects. Restarting Eclipse doesn't help on this. Is this already known? Cheers, Thomas Thomas Rühl Design, Programming Concepts

[flexcoders] [Flex2] Changes to the Cairngorm package structure

2006-07-06 Thread Thomas Rühl -akitogo-
this is Adobe's thing here, I don't know whether that correspond their licensing in terms of usage. Maybe someone, maybe folks from Adobe, could give me some hint here. Thanks and cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer

Re: [flexcoders] [Flex2] Changes to the Cairngorm package structure

2006-07-06 Thread Thomas Rühl -akitogo-
Yeah, I know and I really thought about it very well. Fact is - to narrow it down roughly - the customer wants it that way (for an unknown reason) and for me that means, I'm the one in charge... Thank you, Jean-Luc. Cheers, Thomas Thomas Rühl Design

Re: [flexcoders] [Flex2] Changes to the Cairngorm package structure

2006-07-06 Thread Thomas Rühl -akitogo-
, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0) 179 750 75 87 E-Mail [EMAIL PROTECTED] Web http

Re: [flexcoders] [Flex2] Changes to the Cairngorm package structure

2006-07-06 Thread Thomas Rühl -akitogo-
I completely agree and in fact I'm looking forward to talking to my project manager and convincing him to kick their a**es. Well, thanks everyone :o) Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188

Re: [flexcoders] [Flex2] Changes to the Cairngorm package structure

2006-07-06 Thread Thomas Rühl -akitogo-
Yeah, I thought so, too.. The copyright notice was out of question anyways... Cheers, Thomas Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0

<    1   2   3   4   >