[flexcoders] lazy evaluation - invalidating item/property on the client side

2006-08-01 Thread Dmitry Miller
I am using lazy evaluation and I was wondering if there is a way to mark some managed item properties as invalid. Meaning that even though the some lazily evaluated item property has been already retrieved I would like to mark this property as invalid on the Client so that when referencing this pro

[flexcoders] Re: FDS - how do I manage a single item?

2006-08-01 Thread Dmitry Miller
I have finally got it to work. Thank a lot, Jeff. --- In flexcoders@yahoogroups.com, "Jeff Vroom" <[EMAIL PROTECTED]> wrote: > > There are a few examples in the flexcab sample > (samples/dataservice/flexcab). Here's a snippet from one of these: > > > > var

Re: [flexcoders] Re: creating a variant PopUpButton - errors on getStyle("popUpIcon")

2006-08-01 Thread Jeremy Lu
yap, a pretty dirty hack, but you could always declare all the styles needed in your component. On 8/2/06, Pan Troglodytes <[EMAIL PROTECTED]> wrote: Thanks Jeremy, it's a decent hack.  Of course, you have to put an unused popupbutton in your app to make it w

[flexcoders] quick clarification pls on tree control and adding nodes

2006-08-01 Thread Barry Beattie
(I'm still getting my head around Flex so please forgive me asking but) I've been backwards and forwards trying to work out how to add functionality to a Tree control...stuck on Flex 1.5 examples that won't work in 2.0. i just want to confirm something. The key to adding/editing/deleting

[flexcoders] Chart multiple vertical axis

2006-08-01 Thread dkhvost
Hi, Has anyone tried to develop a component that extends the CartesianChart and has the ablity to show multiple vertical axis. The idea is to display for example multiple dataseries with different units. I am thinking of undertaking this task and understand that it involves multiple datatransforms

[flexcoders] Re: Cairngorm: Managing Application State

2006-08-01 Thread Renaun Erickson
The states as used in Cairngorm will not correlate with the in Flex 2. The serve different purposes. Well let me step back and say, this is how I feel about it. Flex 2 states are good for view/control states where Cairngorm workflow states are just that work/process flow. Thats not to say yo

Re: [flexcoders] Re: creating a variant PopUpButton - errors on getStyle("popUpIcon")

2006-08-01 Thread Pan Troglodytes
Thanks Jeremy, it's a decent hack.  Of course, you have to put an unused popupbutton in your app to make it work.  Still wishing I could make my popupbutton like the other naturally.On 7/31/06, Jeremy Lu <[EMAIL PROTECTED]> wrote: Try this: StyleManager.setStyleDeclaration("PopUpButtonExt"

[flexcoders] Cairngorm: Managing Application State

2006-08-01 Thread christophers1228
Hello, I've been using cairngorm for about a year now (flex 1.5) and I just started some projects using flex 2. (I have to admit I've been using and still trying to understand at the same time :) ) I was just wondering, how do the new view states in flex2 fit in with managing the state in the model

[flexcoders] webservice or http service log

2006-08-01 Thread sinacapho
Dear all, Can someone tell me that where i can find the log (httpservice and webservice return xml log) that similar to flex 1.5 ? thx capho -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexco

[flexcoders] Re: Cairngorm user interaction best practices

2006-08-01 Thread Renaun Erickson
I believe either will work. Book are tied to the datagrid through selectedItem or selectedIndex. More than not if you are going to want a reference to the selected item of a collection outside of the encapsulated View/ViewHelper you would add another attribute to the model and set the selected ob

Re: [flexcoders] Flash Player 9 Push?

2006-08-01 Thread Brendan Meutzner
The way I understand it, there is a point at which it will start "suggesting" upgrading to previous version users when they load any swf content, not just v9... am I mistaken?Brendan On 8/1/06, Nick Collins <[EMAIL PROTECTED]> wrote: It already is in the Expres

[flexcoders] Re: Is there a way to put a close X on the tabnavigator

2006-08-01 Thread flxcoder
Thanks Jeremy, Really nice. It works, but, for my level, complicated. I will have to really understand the code to see what you are doing here. --- In flexcoders@yahoogroups.com, "Jeremy Lu" <[EMAIL PROTECTED]> wrote: > > I've made one (it's a draggable tabbar with close button on each tab

RE: [flexcoders] Re: Just MXML and AS3

2006-08-01 Thread Andrew Trice
It’s an off the shelf solution, with a customized theme.  You can embed a swf in pretty much any blog solution that allows you to post HTML content.  Just upload the swf files to a server where have permissions, then embed them in the blog’s HTML content using the tag.  I use the w.blo

[flexcoders] Cairngorm user interaction best practices

2006-08-01 Thread Mike Britton
I have a problem that's slowly eating away my soul. I've returned a value object and populated a DataGrid. Now, suppose I want to access the value when the user clicks on the grid. In terms of best practices and assuming a public member of the value object is an ArrayCollection called books, sho

[flexcoders] [Flex 2/Flex Builder 2] Unsupported file type problem

2006-08-01 Thread astgtciv
At some point, one of my Flex Projects (MyApp) got the following problem in the Problems list: "Unsupported file type: C:\pathToMyApp\bin\MyApp.swf" That is indeed where the main swf of that project resides, but I can open it just fine... I thought this was somehow an artifact of running mxmlc

RE: [flexcoders] Retrieving remote username with FDS

2006-08-01 Thread Jeff Vroom
You can use RTMP with RPC and also can enable polling for an RPC channel.  I believe we only start polling when someone subscribes over that channel anyway so amf and amf-polling are really the same thing if you are only doing RPC.      When you are using an HTTP session, the FlexCont

[flexcoders] Re: Just MXML and AS3

2006-08-01 Thread fuad_kamal
Cool. BTW, Adrew Trice/Keun Lee - if you're reading this - what's the Cynergy blog based on? Is it an off-the-shelf solution or an in-house ap? I like the fact that you embed the swf's in the page in addition to the source code. -fuad --- In flexcoders@yahoogroups.com, "Ted Patrick" <[EMAIL PR

[flexcoders] Reading object properties from an array

2006-08-01 Thread mudwump_vx
I am trying to read an object's properties from an array. My application has five panels on the main screen and it needs to have a floating button on the application that will move from panel to panel. I want the button to move by reading an array. The array looks something like this: pub

[flexcoders] Re: [New Component]Draggable TabBar with close button on each tab (source included)

2006-08-01 Thread Tim Hoff
Very cool Jeremy! Thanks. -TH --- In flexcoders@yahoogroups.com, "Jeremy Lu" <[EMAIL PROTECTED]> wrote: > > hi flexcoders, > > Just revised this component and open sourced it, please take a look here :-) > > *sample

[flexcoders] [New Component]Draggable TabBar with close button on each tab (source included)

2006-08-01 Thread Jeremy Lu
hi flexcoders, Just revised this component and open sourced it, please take a look here :-) *sample *source *blog entry Jeremy. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/f

RE: [flexcoders] Tree loading MXML in another panel

2006-08-01 Thread Tracy Spratt
Typically you will do this on the change event of the tree.  Presumbably, each node will have the information required to determine what you want the right-hand area to display.  The right hand detail area should be a ViewStack, with mxml components.  On the change event of the tree, us

RE: [flexcoders] PopUp from within a class

2006-08-01 Thread Tracy Spratt
Use callLater() to start the loop. That will give the ui a chance to update before the heavy processing begins.  If you have heavy processing going on, like in a loop, the UI will not redraw until the loop is done.  To change this you need to break the loop up into smaller bits and use

[flexcoders] Re: [Flex 2/Flex Builder 2] Viewing Source for certain files fails

2006-08-01 Thread Renaun Erickson
I do know not all the classes are in the source. You can find the source files (at least with a standard install of the standalone Flex Builder 2 on windows) here: C:\Program Files\Adobe\Flex Builder 2\Flex SDK 2\frameworks\source I did find mx.containers.utilityClasses.CanvasLayout.as so I am n

Re: [flexcoders] Re: Is there a way to put a close X on the tabnavigator

2006-08-01 Thread Jeremy Lu
I've made one (it's a draggable tabbar with close button on each tab), sources included *sample http://ria.richtechmedia.com/upload/TabBarFinal/tabBar.swf *source http://ria.richtechmedia.com/upload/TabBarFinal/ Code heavily commented (in Chinese), if you have any question, please feel free

[flexcoders] Tree loading MXML in another panel

2006-08-01 Thread quasimotoca
Hi: I have a tree control on the left side of a Horizontal divider. Basically the tree example in the components explorer. When I click on a tree item I want to load MXML files in the right-hand panel. For example I have a "Search" tree node item and when it's clicked I want to open a search

RE: [flexcoders] Set resubscribeAttempts on DataService?

2006-08-01 Thread Jeff Vroom
Hi Dirk,   The fill call should definitely be raising a fault event in this case.  We don’t have a way to set resubscribeAttempts…  Our thinking is that you can call “dataService.disconnect()” if you want to stop the data service from trying to subscribe.   The next attempt to execute

RE: [flexcoders] Retrieving remote username with FDS

2006-08-01 Thread Dimitrios Gianninas
Actually based on your email, does this mean if you are using RTMP channel for FDMS, does this mean u can use it with RPC service as well? Cause I don't think this is mentioned in any docs/examples.   Dimitrios Gianninas RIA Developer Optimal Payments Inc.   From: flexcoders@yahoogroups

Re: [flexcoders] PopUp from within a class

2006-08-01 Thread Doug Arthur
That's perfect, thanks.   One other issue I have is when popuping up the window before a large loop, the window doesn't actually render until the loop is done. Is there a reason for that or a workaround? I'm working on the same thing as in another thread about a 'Please Wait...' type of thing, b

RE: [flexcoders] Retrieving remote username with FDS

2006-08-01 Thread Dimitrios Gianninas
thanks Jeff for that extra piece of info.   Right now my RPC stuff is using amf channel, where the FDMS stuff is using amf-polling. So it won't cause any problems to use amf-polling with regular RPC calls? Cause I would think you normally wouldn't have any real reason too.   I am not doing

[flexcoders] A doozie of a grid problem.

2006-08-01 Thread Jeremy Rottman
Ok so I have a doozie of a datagrid problem. In my application, I use a datagrid to display all agents/vendors/clients attached to a file, this works great. Now my problem is this, I need to add a numeric stepper to my grid. This stepper is to be used to display/modify agents commission percent. O

[flexcoders] [Flex 2/Flex Builder 2] Viewing Source for certain files fails

2006-08-01 Thread astgtciv
I love the source view feature in Flex Builder 2 (click on a class name, hit F3, and you are looking at the source). This is probably because I got used to it during my Eclipse/Java days... ;) It seems, however, that at least for some classes this feature does not work. E.g., it works perfectly

RE: [flexcoders] Re: Problems making SOAP calls via WSDL file

2006-08-01 Thread Tracy Spratt
But that’s cheating!  If you use a server-side proxy, all the crossdomain problems go away!   Tracy   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of bill_sahlas Sent: Tuesday, August 01, 2006 6:40 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: DataService addItem vs. adding to a fill()'d collection

2006-08-01 Thread Jeff Vroom
When you close the flex window (until Apollo at least) the client state is all gonzo so no need to do anything there.  The server state for that client goes away for that user when their FlexSession expires.  If you are using an RTMP connection, this happens immediately when you close t

[flexcoders] Re: Problems making SOAP calls via WSDL file

2006-08-01 Thread bill_sahlas
There is a way to circumvent the need for an entry in a crossdomain.xml file on the WS host (google.com in this case). You need to setup a destination in the fds-proxy.xml file and then use the "destination" attribute of the mx:WebService tag.

RE: [flexcoders] Re: FDS - how do I manage a single item?

2006-08-01 Thread Jeff Vroom
There are a few examples in the flexcab sample (samples/dataservice/flexcab).  Here’s a snippet from one of these:           var itemRef:ItemReference =         ServiceLocator.getInstance().cabService.getItem({name: newCab.

[flexcoders] Re: Game Depth Management

2006-08-01 Thread john_ukmn
An important thing is I do not want to have to resort an entire displaylist everytime one sprite moves... obviously for performance issues. Hmmm... --- In flexcoders@yahoogroups.com, "Ralf Bokelberg" <[EMAIL PROTECTED]> wrote: > > I think, you have to create your own depth property and keep the

[flexcoders] Re: Game Depth Management

2006-08-01 Thread john_ukmn
I think I am getting a little closer: public function sortDepths():void{ var a:Array = new Array(); for(var i:int; i wrote: > > I think, you have to create your own depth property and keep the displaylist > sorted by this property. > So, instead of swapping the depth, you need to f

RE: [flexcoders] Retrieving remote username with FDS

2006-08-01 Thread Jeff Vroom
That same approach should work with FDMS.   Have you used the setCredentials method on the DataService?    If the DataService and RPC service are using the same channel, they should also have the same FlexSession on the server side so only one service would technically need to authentic

RE: [flexcoders] Game Depth Management

2006-08-01 Thread Nihit Saxena
I am working on something similar (3D Charts) for Flex 3.0. A prototype for the same can be seen here   http://www.geocities.com/nihits/columnC.html http://mannu.livejournal.com/357113.html   The depths are kept in a sorted list based on distance from viewer (and not based on Z coord

Re: [flexcoders] Re: Cairngorm separation of action script and mxml

2006-08-01 Thread Paul BH
hehe well, this is where different people will give you different answers...I used to have an adapters package in the view package, but then i began to see these as being also of use outside the viewfor example if I wanted/ needed to adapt an instance to send to the server, or just to have to mo

Re: [flexcoders] Flash Player 9 Push?

2006-08-01 Thread Nick Collins
It already is in the Express install. You just need to adjust your detection script to detect for 9On 8/1/06, Brendan Meutzner < [EMAIL PROTECTED]> wrote: Hey,Any ideas from Adobe on when version 9 of the player will start getting pushed out to older version use

[flexcoders] FlexBuilder - is there a way to enable code hints for FDS stuff?

2006-08-01 Thread Dmitry Miller
I am using Eclipse plugin. I have started as a Flex SDK project originally. Now I am using FDS and compile everything on the server. I can't get code hints for FDS stuff (such as DataService, ItemReference, etc) to work. All the code hints for standard SDK stuff work great. Any ideas? -- Flex

[flexcoders] alternative regex delimeters

2006-08-01 Thread fuad_kamal
Just complaining... As a perl hacker in the AS3 world, I make heavy use of RegEx... It would be nice if Adobe would supply alternative delimeters for strings other than single & double quotes (for example when your string contains double and single quotes, and its too much trouble to escape every

[flexcoders] Re: FDS - how do I manage a single item?

2006-08-01 Thread Dmitry Miller
Jeff, hi I am trying to retrieve item by its id. And I tried your suggestion yesterday. var ir:ItemReference = ds.getItem({id:userId}); Now, given the item reference (ir) how do I "connect" ir to the actual variable (me)? When I tried me = User(ir.result); Flex started compaining. Could you, p

[flexcoders] Re: DataService addItem vs. adding to a fill()'d collection

2006-08-01 Thread thunderstumpgesatwork
Jeff, thanks for that reply. That was perfect. One question then... what if a client is closed without releasing the managed objects? Does the managed state get released if the connection is severed (like the user closing the window)? Are there any precautions necessary for cleaning up in this ca

[flexcoders] Re: FDS - how do I manage a single item?

2006-08-01 Thread jeffjvroom
Either with dataService.getItem, if the item exists and you have its id or dataService.createItem if the item does not exist and you want to create a new one. If you need to actually execute a query to retrieve the item (e.g. you are trying to retrieve a User by the lastName), you have to use

[flexcoders] Adding AS3 support to 3rd party editors - legal question

2006-08-01 Thread ben.clinkinbeard
Dear Adobe, I was recently having a discussion about adding AS3 support (code completion, type checking, etc) to a 3rd party editor and a legal/copyright/license question came up that I am hoping to get a definitive answer to. The question is basically whether or not its ok to create files require

RE: [flexcoders] DataService addItem vs. adding to a fill()'d collection

2006-08-01 Thread Jeff Vroom
I think you are talking about “DataService.createItem”, not “DataService.addItem”.   Both approaches will create the item (assuming the item you are adding is not already managed on that client).   The difference is that createItem adds a separate reference to that managed item whereas

Re: [Junk E-Mail - LOW] Re: [flexcoders] More embedded font fun...

2006-08-01 Thread juan sanchez
setting fontAntiAliasType to normal seems to work.On Aug 1, 2006, at 1:39 PM, Daniel Freiman wrote:I haven't actually dealt with this problem in flex 2, but from other experiences in Flash 8 with fonts I'd say look at the fontAntiAliasType and associated (fontGridFitType, fontSharpness) styles.On

[flexcoders] Re: Cairngorm separation of action script and mxml

2006-08-01 Thread flxcoder
Thanks - that works. Now for package management, I have these scripts in the view folder, is this where you would recommend to keep such files are create a new scripts folder where such static functions can be stored? Thanks. --- In flexcoders@yahoogroups.com, "Paul BH" <[EMAIL PROTECTED]> wro

RE: [flexcoders] Is datagrid not bindable to the dataprovider

2006-08-01 Thread Tracy Spratt
I haven’t run your app yet but my immediate guess is that delete does not emit the events necessary for the control to update.   I think you will have better luck if you use an XMLListCollection with its remove methods.  I haven’t done enough of this to be able to spit out an example,

RE: [flexcoders] Flex Newbie

2006-08-01 Thread loathe
Thanks.   I wish that there was as much documentation for flash forms and action script as there is on this site.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ryan harlin Sent: Tuesday, August 01, 2006 4:32 PM To: flexcoders@yahoogroups.com Sub

[flexcoders] Set Focus When Loaded

2006-08-01 Thread Daniel Freiman
I have noticed that when a Flex app starts up in my browser (i've tested firefox and IE), the browser retains focus.  Is there anyway to automatically set focus to app when it loads?  I've tried to call focus() in _javascript_, but that doesn't seem to be doing it. Thanks,Dan __._,_.___ --

[flexcoders] Re: fill() with multiple ArrayCollections

2006-08-01 Thread jeffjvroom
The deleteItem method implies you want to delete the method from all collections it lives in so I would not use that at all to remove the item from a group. Usually, there is a property on the item itself which indicates which group it is in. You might just set that property to null and commi

[flexcoders] Re: Is datagrid not bindable to the dataprovider

2006-08-01 Thread Doug Lowder
You need to bind your datagrid to something that implements the IList interface. Check out XMLListCollection in the docs; you can create this object from your XMLList object, bind the grid to that, and then remove the items with the removeAll() method of the grid's dataprovider. --- In flexcod

Re: [Junk E-Mail - LOW] Re: [flexcoders] More embedded font fun...

2006-08-01 Thread Daniel Freiman
I haven't actually dealt with this problem in flex 2, but from other experiences in Flash 8 with fonts I'd say look at the fontAntiAliasType and associated (fontGridFitType, fontSharpness) styles. On 8/1/06, juan sanchez <[EMAIL PROTECTED]> wrote: are you talking about the fuzziness of t

RE: [flexcoders] Re: Caringorm - Visual Flowchart Poster!

2006-08-01 Thread Evan Gifford
I'm not so happy with this description: "Business Delegate enlists the application-tier service, sending itself as a responder." (BTW, there is a typo in your diagram: "its self"!) Actually it's not the Business Delegate that acts as a responder. The Command class implements the

RE: [flexcoders] Re: Just MXML and AS3

2006-08-01 Thread Ted Patrick
Fuad,   The form only supports one file today. J   I am working on a solution to this but I want to make sure things remain simple.   Ted J   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of fuad_kamal Sent: Tuesday, August 01, 2006 12:17

Re: [flexcoders] Flex Newbie

2006-08-01 Thread ryan harlin
On adobe's page (adobe.com/devnet/flex) there is a whole section about ColdFusion and it includes some simple tutorials including a Hello World style app that connects to some CFCs. Good luck. --- loathe <[EMAIL PROTECTED]> wrote: > Ok, so it's finally time for me to jump into the RIA > arena.

[flexcoders] Retrieving remote username with FDS

2006-08-01 Thread Dimitrios Gianninas
Hi,   When using RPC services, on the server-side I can FlexContext.getFlexSession().getUserPrincipal() to retrieve the name of the user authenticated by the system... in the get and sync methods of FDS, this method call returns null... what else can I use?   Dimitrios Gianninas RIA Devel

[flexcoders] Re: Problems making SOAP calls via WSDL file

2006-08-01 Thread Charles
Oh, so what you're saying is that even though I am running locally, since the SOAP call invokes a remote operation not hosted on my machine, it should fail anyways? So I can't make a successful API call with Flex, at least not until I get my IP put on a crossdomain on the Google server? Is that r

[flexcoders] Re: Problems making SOAP calls via WSDL file

2006-08-01 Thread Charles
No I don't currently have one. Is there any in particular that you would suggest? Charles --- In flexcoders@yahoogroups.com, "Dave Wolf" <[EMAIL PROTECTED]> wrote: > > Do you have any kind of proxy tool, like the SOAPMonitor or Tcptunnel > where you can see the response coming back? > > -- >

[flexcoders] Is datagrid not bindable to the dataprovider

2006-08-01 Thread flxcoder
I am trying to manage my datagrid using the dataprovider, so if I delete the nodes in the data provider (an XmlList) I expect the rows in the datagrid to be removed too. Is this a wrong assumption. Please see below? ===start=== http://www.adobe.com/2006/mxml";>

[flexcoders] Flex Newbie

2006-08-01 Thread loathe
Ok, so it’s finally time for me to jump into the RIA arena.   I’ve done some flash and AS stuff in the past, but I am primarily a CF developer and DB admin.  So anyway, the first thing I’m trying to do is just build a very simple login form that calls a CFC to do authentication, then

RE: [flexcoders] Re: Caringorm - Visual Flowchart Poster!

2006-08-01 Thread Evan Gifford
Ok,  no problem :^)   Here is the Visio document: http://www.undustrial.com/flexdocs/cairngorm2_rpc.vsd   Please do submit changes back to me so that we can have one working copy of this file.   Thanks! -Evan   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoog

[flexcoders] FDS - how do I manage a single item?

2006-08-01 Thread Dmitry Miller
I have a managed class. [Managed] class User { } and in the main application .mxml file I have a reference of this type that I want to manage by a data service i.e. [Bindable] public var me:User; Now, how do I get to populate variable "me" and get it maneged by userSvc?

[flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Tim Hoff
Scope refers to the parent/child relationships of components in an application. For instance a DataGrid may be the parent of an itemRenderer component. However, to access the properties of the DataGrid from inside the itemRenderer, you can't just refer directly to the DataGrid properties like

Re: [flexcoders] Cairngorm separation of action script and mxml

2006-08-01 Thread Paul BH
what you might want to look at is creating an adapter class to format your data, so it would be something like:myList:XMLList = myAdapter.adaptXML(xml)then in myAdapterpublic static function adaptXML(inXML:XML):XMLList{   //do ugly stuff}On 8/1/06, flxcoder <[EMAIL PROTECTED]> wrote:

Re: [flexcoders] Game Depth Management

2006-08-01 Thread Ralf Bokelberg
I think, you have to create your own depth property and keep the displaylist sorted by this property. So, instead of swapping the depth, you need to find the place in the displaylist, where a object with a certain depth has to be inserted. Cheers,Ralf. On 8/1/06, John Chipps-Harding <[EMAIL PRO

[flexcoders] Re: "only one root tag is allowed" error when migrating from Beta3 to final?

2006-08-01 Thread djbrown_rotonews
as a followup, simply adding tags around the model attribute declarations did the trick. 2400 --- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > > End of the URL just got cut off in the orig

[flexcoders] Cairngorm separation of action script and mxml

2006-08-01 Thread flxcoder
Hi, I have a component that gets called in the view:component say. Now this component has some functions that do operations to format the data in the format that is required to display on screen. These functions are quite large and ugly. I want to move them to a separate scripts.as file, so they

RE: [flexcoders] retrieving user with FDS

2006-08-01 Thread Dimitrios Gianninas
I'm using RTMP channel... so I get that has something to do with it.   Dimitrios Gianninas RIA Developer Optimal Payments Inc.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios GianninasSent: Tuesday, August 01, 2006 3:07 PMTo: flexcoders@yahoogroups.c

[flexcoders] Game Depth Management

2006-08-01 Thread John Chipps-Harding
Hi:I have just started using Flex Builder 2 and am finding authoring Actionscript 3.0 projects a dream.I am having issues getting my head round the new way of managing depths. Specifically in an isometric game I am porting to AS3. Here is a snippet of code that shifts a sprite to a specific dept

RE: [flexcoders] Re: Is there a way to put a close X on the tabnavigator

2006-08-01 Thread Andrew Trice
Just a FYI to the Flex community…   Here at Cynergy, we’re working on a component library of commonly used controls that we are going to offer to the development community for free.  Its starting out small, and we hope it will grow over time.  A polished version of Keun’s ExtendedTabN

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Rick Root
Tim Hoff wrote: > > Make sure that you consider the scope of you primary UI component. > Depending on where you are calling the code from, you may have to > reference it like parentDocument.mainPanel or > Application.application.mainPanel (this one requires - import > mx.core.Application). I don'

[flexcoders] Re: Just MXML and AS3

2006-08-01 Thread fuad_kamal
Hey, the blog is cool, but what if you wanted to share an example with more than one file? e.g. mxml file that relies on a custom AS3 class? your form only allow posting of one file. thanks --- In flexcoders@yahoogroups.com, "Ted Patrick" <[EMAIL PROTECTED]> wrote: > > I wanted to let everyone

Re: [flexcoders] Re: Is there a way to put a close X on the tabnavigator

2006-08-01 Thread Jeff Tapper
You can subclass mx.controls.tabBarClasses.Tab, and add override the createChildren method to create the close button, override the updateDisplayList to position the button. Then, you need to subclass mx.controls.TabBar to make use of your new Tab class instead of the existing one. Then, you

[flexcoders] retrieving user with FDS

2006-08-01 Thread Dimitrios Gianninas
Hi,   When using RPC services, on the server-side I can FlexContext.getFlexSession().getUserPrincipal() to retrieve the name of the user authenticated by the system... in the get and sync methods of FDS, this method call returns null... what else can I use?   Dimitrios Gianninas RIA Deve

[flexcoders] DataService addItem vs. adding to a fill()'d collection

2006-08-01 Thread thunderstumpgesatwork
Hi all, I'm wondering what is the difference between adding an item to a managed collection (one gotten from a fill() call) and actually using the DataService.addItem() function. In the CRM sample, it seems they do it both ways. The code to add a company uses DataService.addItem(), and the code t

[flexcoders] Re: Is there a way to put a close X on the tabnavigator

2006-08-01 Thread fuad_kamal
It's been done, here's a working example from Keun Lee of Cynergy: http://cynergysystems.com/blogs/page/keunlee?entry=tab_navigator_component_w_an --- In flexcoders@yahoogroups.com, "flxcoder" <[EMAIL PROTECTED]> wrote: > > > > > I have a way of removing the tab from the tabnavigator using > > ta

[flexcoders] Re: problem using httpservice to fetch xml

2006-08-01 Thread flexnadobe
Here ya go -- This code should work for ya. http://www.adobe.com/2006/mxml"; backgroundAlpha="0" creationComplete="srv.send()"> import mx.rpc.events.ResultEvent; import mx.controls.Alert; import mx.collections.ArrayCollection; import mx.utils.ObjectUtil; [Bindable] public var employees:Ar

RE: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Dimitrios Gianninas
Yup I've used that same method as well in a few places, users can be very impatient, even waiting 2 secs for them is too long, so they click again.   In my latest app I use the modal pop up, with Flex 2 and the auto-blur of the background, this fits in nicely. In older apps I would simply

RE: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Franck de Bruijn
Asynchronous event driven architecture are a nice thing, however In a GUI you sometimes just *have* to wait before things come back, otherwise your system becomes instable.   For example, let’s say I’m doing an expensive search (takes a couple of seconds). The result needs to be place

[flexcoders] Re: Is there a way to put a close X on the tabnavigator

2006-08-01 Thread flxcoder
> > I have a way of removing the tab from the tabnavigator using > tabs.removeTabAt(x), but I am looking for a way to add an X on top of > the tab, something similar to the way editors in eclipse do. > > any clues? > any ideas? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/fle

[flexcoders] RPC Binding vs Explicit in Cairngorm

2006-08-01 Thread Darren Houle
In Cairngorm a Command creates a Delegate which fires off (e.g.) a WebService operation. The way that's done in most Cairngorm examples is like this: service = ServiceLocator.getInstance().getService('someWebService'); token = service.someWSMethod(someData); This AS way of triggering the WebSe

[flexcoders] Re: problem using httpservice to fetch xml

2006-08-01 Thread pateyog
--- In flexcoders@yahoogroups.com, "Geoffrey Williams" <[EMAIL PROTECTED]> wrote: > > srv.lastResult.list.employee is already an ArrayCollection. > > Try: employees = ArrayCollection (srv.lastResult.list.employee); > > --- In flexcoders@yahoogroups.com, "pateyog" wrote: > > > > I am facing a pr

RE: [flexcoders] [Flex 2] Compiling all classes into an application, whether referenced or not

2006-08-01 Thread Roger Gonzalez
Your second thought is the technique that we recommend.  Since you want to build all the classes, that's a library.  You then want to include everything, so use include-libraries.   In general, our philosophy for mxmlc/compc was to make a bunch of small "atomic" behaviors that could be comb

[flexcoders] [Flex 2] Compiling all classes into an application, whether referenced or not

2006-08-01 Thread astgtciv
[Flex 2]. Hi, is it possible somehow to instruct mxmlc to compile _all_ the classes in a project into the resulting SWF, whether those classes be referenced from the Document class/Application or not? I know I can use "-includes" to include the classes one-by-one, and if "-includes" supported w

[flexcoders] Re: php and flex

2006-08-01 Thread arnold_charming
Hi! I see you are doing quite a lot with PHP and Flex 2. I was wondering if you can help me out on some things, not just you anyone can help :) I'm using below code to access remoting on PHP gateway.call("Projekt.izpisProjekt", new Responder(onResult, onFault)); When an error occurs' I just see

[flexcoders] Re: Problems making SOAP calls via WSDL file

2006-08-01 Thread Dave Wolf
We had issues in the past with doc/literal if the return object was or contained a ComplexType. My guess is though, that the response isnt XML at all, but maybe HTML. Say some kind of error page, or FORM based login or That's why I am curious to see the raw response. -- Dave Wolf Cynergy

[flexcoders] Re: "only one root tag is allowed" error when migrating from Beta3 to final?

2006-08-01 Thread Doug Lowder
End of the URL just got cut off in the original post. http://weblogs.macromedia.com/flexteam/archives/2006/06/flex_2_changes.cfm --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote:>> Randy, that link appears to be invalid. It sure would be useful.> > > > Tracy> > > > > N

RE: [flexcoders] Re: "only one root tag is allowed" error when migrating from Beta3 to final?

2006-08-01 Thread Tracy Spratt
Randy, that link appears to be invalid.  It sure would be useful.   Tracy   Not Found The requested URL /flexteam/archives/2006/06/flex_2_changes. was not found on this server. Apache/2.0.53 (Unix) DAV/2 JRun/4.0 Server at weblogs.macromedia.com Port 80     From:

Re: [Junk E-Mail - LOW] Re: [flexcoders] More embedded font fun...

2006-08-01 Thread juan sanchez
are you talking about the fuzziness of the pixel font? i had the same thing happen to me using a pixel font from fontsforflash.com. it looked fine in beta 3, but when the final release came out the fonts went fuzzy/bolder. i think i fixed it by specifying the fontWeight and fontStyle as "normal".

RE: [Junk E-Mail - LOW] RE: [Junk E-Mail - LOW] Re: [flexcoders] rotation on ?

2006-08-01 Thread Shannon Hicks
Oops... Now y'all can view the source. Shan -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shannon Hicks Sent: Tuesday, August 01, 2006 12:21 PM To: flexcoders@yahoogroups.com Subject: [Junk E-Mail - LOW] RE: [Junk E-Mail - LOW] Re: [flexcoders

RE: [flexcoders] problem using httpservice to fetch xml

2006-08-01 Thread Matt Horn
try adding import mx.utils.ArrayUtil; and calling toArray(): hth, matt horn flex docs > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of pateyog > Sent: Tuesday, August 01, 2006 11:44 AM > To: flexcoders@yahoogroups.com > Subje

RE: [flexcoders] Re: Problems making SOAP calls via WSDL file

2006-08-01 Thread Franck de Bruijn
I checked the WSDL with SOAPUI and the WSDL looks fine.   I do see however that the WSDL is of the type doc/literal. I have had some serious issues with that connecting with Flex to such a web service back-end. I have not verified if the final release of Flex 2 has resolved all these

RE: [Junk E-Mail - LOW] Re: [flexcoders] rotation on ?

2006-08-01 Thread Shannon Hicks
Ok... I rotated the text, but now if I do anything to the cell (change the background color), the text disappears. Example: http://flex.work.iotashan.com/iotashan/fishCompatability.html Anyone noticing the animal theme to my apps? :) Shan -- No virus found in this outgoing message. Checked b

[flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Tim Hoff
Hi Rick, Make sure that you consider the scope of you primary UI component. Depending on where you are calling the code from, you may have to reference it like parentDocument.mainPanel or Application.application.mainPanel (this one requires - import mx.core.Application). -TH --- In flexcode

[flexcoders] Just MXML and AS3

2006-08-01 Thread Ted Patrick
I wanted to let everyone know about a simple publishing option for MXML and AS3 examples. I put together a new blog where I am syndicating MXML and AS3 examples and components. Authors get named credit in every post title and it is a simple way to share code/knowledge.   Just MXML and A

[flexcoders] Flash Player 9 Push?

2006-08-01 Thread Brendan Meutzner
Hey,Any ideas from Adobe on when version 9 of the player will start getting pushed out to older version users?Brendan __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoog

  1   2   >