[flexcoders] Remote AVM1 swfs not able to execute code?

2007-03-13 Thread Bjorn Schultheiss
Hi, I have a flex app that loads in avm1 swf assets and displays them as thumbnails. In these thumbnails we also wish to be able to control their timeline, ie, stop and start. The current setup is this. "domainA" Flex 2 RIA "domainB" Flash 8 player "domainB" Flash 8< assets we load in the

Re: [flexcoders] XML to AS3 object

2007-03-13 Thread shaun
Hi Ian, Ian Shafer wrote: > Hello, > > I'm getting XML from an HTTPService call (and/or a WebService call, I > don't think this matters). I want to take this XML and put it into my > AS3 objects (ValueObjects using Cairngorm terminology). > > I'm currently using Darron Schall's ObjectTranslato

[flexcoders] Re: Build Date?

2007-03-13 Thread stevekpeak8
Paul, Thanks for your reply. Yes, I thought of using an Ant task, but I'm trying to use it as a custom Builder within FLEX, and I can't seem to figure out the correct way to do the launch configure. My ANT script is correct, but when I try to add it in the custom Builders dialog I get an err

[flexcoders] Mac Flashplayer bug discovered (behaves differently than the PC)

2007-03-13 Thread {reduxdj}
Hi There, I was working on a project and didn't even take the time to check it out in the yet mac until I needed to a little work on it on my macbook and I discovered a bug in the mac flashplayer. I made a (yass) yet another slide show... and this time I used Alex Uhlman's API for AS3.0. I

[flexcoders] ID3 Tags

2007-03-13 Thread xmrcivicboix
Does anyone here know how to get ONE version of the ID3 tag? Let's say the song has a ID3v1 and ID3v2, just pick one programatically? Thanks -- View this message in context: http://www.nabble.com/ID3-Tags-tf3400153.html#a9468398 Sent from the FlexCoders mailing list archive at Nabble.com.

[flexcoders] XML to AS3 object

2007-03-13 Thread Ian Shafer
Hello, I'm getting XML from an HTTPService call (and/or a WebService call, I don't think this matters). I want to take this XML and put it into my AS3 objects (ValueObjects using Cairngorm terminology). I'm currently using Darron Schall's ObjectTranslator, which is great but doesn't work for r

[flexcoders] Re: Tree, drag+drop, and XML

2007-03-13 Thread Douglas Knudsen
here is example code of what I am seeing. Why doesn't a leaf carry the data in the drag event? http://www.adobe.com/2006/mxml"; layout="vertical">

RE: [flexcoders] Dynamic Instance of Class & Data Typing

2007-03-13 Thread Gordon Smith
Did you have a compilation error or a runtime error? It shouldn't have compiled as written; it would be service[this.method](params) not serivce.[this.method](params) If you got a runtime error, what did it say? - Gordon From: flexcoders@yahoogro

Re: [flexcoders] Combobox will not display (only) one item

2007-03-13 Thread Hilary Bridel
Hi, Try changing: myAC = event.result.states.state; to myAC = event.result.states; Hilary -- On 13 Mar 2007 19:36:50 -0700, pdenys <[EMAIL PROTECTED]> wrote: I have a simple example where my ComboBox has a dataProvider that is an ArrayCollection. This ArrayCollection is assigned to the r

RE: [flexcoders] keyboard event

2007-03-13 Thread Karl Johnson
The tab order is setup by default, but you can change it if you want by manually setting the tabIndex on the controls. Also, you can make the enter trigger a "form submit" or whatever action you want by simply setting enter="doStuff()" on the textInput(s). Karl Cynergy From: flexcoders@yah

Re: [flexcoders] keyboard event

2007-03-13 Thread Kevin
the TextInput class has a built-in 'enter' event which fires when enter is pressed in a TextInput field. an example: Tabbing in forms works by default, but if you need something special, then you can use the tab methods and properties of the controls as well. http://livedocs.adobe.com/f

RE: [flexcoders] Build Date?

2007-03-13 Thread Dimitrios Gianninas
If you use ant, generate a file with the build date and time inside of it (right after you compile) and have a remote call at app startup to retrieve and show in the UI. Thats what we do. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on

Re: [flexcoders] Re: Security error accessing url

2007-03-13 Thread André Rodrigues Pena
I understand your point Paul.. it makes sense On 13 Mar 2007 19:38:40 -0700, Paul DeCoursey <[EMAIL PROTECTED]> wrote: Proxy is your solution. counterfeiting a corssdomain file is inadvisable difficult and probably impossible to do on a large scale deployment. The only ways I can think do it

[flexcoders] Re: Security error accessing url

2007-03-13 Thread Paul DeCoursey
Proxy is your solution. counterfeiting a corssdomain file is inadvisable difficult and probably impossible to do on a large scale deployment. The only ways I can think do it would require great effort and would need other software to be installed on the client machine to pull it off. Plus that ki

Re: [flexcoders] VideoDisplay volume problem

2007-03-13 Thread Julian Sander
Hi David, the problem is based on the conditional in the VideoDisplay function set volume... I had to track this down and found a temporary workaround.. package com.iahh.teaser.ui { import mx.controls.VideoDisplay; public class IAHHVideoDisplay extends VideoDisplay

[flexcoders] Combobox will not display (only) one item

2007-03-13 Thread pdenys
I have a simple example where my ComboBox has a dataProvider that is an ArrayCollection. This ArrayCollection is assigned to the results of an HTTPService that retrieves an xml file of US States. The XML file is just sitting on a local web server. Why is it that when there is only 1 entry (Stat

[flexcoders] Flex app on PDA - MS Pocket PC / Windows Mobile

2007-03-13 Thread amri_ls
Hi! Does anyone know whether applications built using Flex Builder can run on PDA with MS Pocket PC or Windows Mobile without modification / scale down? Our project is building a dashboard application that runs both on PC and PDA. Does Flash player installed (shipped) in PDA or we need to ins

[flexcoders] y-axis graph title

2007-03-13 Thread offus99
..this is how I am setting the title of my Y-axis but the label "price" shows up facing in the opposite direction. How do I rotate its position and make it face the graph?

[flexcoders] keyboard event

2007-03-13 Thread offus99
Just like in HTML hitting Enter submits a form and hitting tab sets focus to the next form item, how do I achieve something similar in Flex?

[flexcoders] Re: Build Date?

2007-03-13 Thread Paul DeCoursey
Do you mean the date the swf was compiled? Not sure if there is an easier way, but here is a high level of what we do. We do all our builds with ANT, and we use some custom ANT tasks that creates an .as file with build info. Then our main application mxml includes that and we can display that bui

Re: [flexcoders] Dynamic Instance of Class & Data Typing

2007-03-13 Thread Kevin
hmm... is there a reason that this would not work on a method that is added dynamically (in the RemoteObjectClass)? Specifically, here is what I am trying to accomplish. private var service:RemoteObject; public var method:String; this.service = ServiceLocator.getInstance().getRemoteObject

Re: [flexcoders] Need help with validation in a DataGrid

2007-03-13 Thread Lex
Nobody knows? :( Should be straightforward to all the Flexmasters out there! :) - Original Message - From: Lex To: flexcoders@yahoogroups.com Sent: Tuesday, March 13, 2007 7:09 PM Subject: [flexcoders] Need help with validation in a DataGrid I'm having a hard time putti

RE: [flexcoders] Re: HTTPService-driven Tree

2007-03-13 Thread Tracy Spratt
One reason I like working at night is I can do a victory dance when I need to. And no, you are not doing the whole thing wrong! With HTTPService, in addition to the "result" event, you have the 'fault" event. That will get called when the HTTPService call fails. Set up a handler function for

[flexcoders] Layout Change, Flexible

2007-03-13 Thread lostinrecursion
Hi all, I have two components in a view. One called Dashboard ( a custom Canvas component which can be hidden/shown by a pull bar) - and the other called WorkArea, which is the main work area, also an extension of Canvas, Simply, when the Dashboard is moved out of view, I want the WorkArea compon

Re: [flexcoders] Re: Security error accessing url

2007-03-13 Thread André Rodrigues Pena
If people are against the proxy application.. what's the better solution? (since I can't see how can I counterfeit a crossdomain file in a external and not-accessible server) On 3/12/07, Troy Gilbert <[EMAIL PROTECTED]> wrote: Ahh, yes, but if all of your clients go through your proxy server

[flexcoders] Re: Runtime Error Painting Screen for Embedded App

2007-03-13 Thread tyriker
Something further I've found that may at least indicate where the error is: If I just include 1 copy of the reporting app in my 'parent' app. It runs fine everytime (other than the other 3 quadrants are blank). If I embed just two copies of the app, the runtime error occurs maybe 50% of the time.

RE: [flexcoders] Dynamic Instance of Class & Data Typing

2007-03-13 Thread Gordon Smith
A Flex Application is a SWF file that has only the ActionScript classes that the MXML compiler thinks your application needs. For example, iyour app just uses , , and , the SWF isn't going to have the DataGrid or CreditCardValidator class linked into it. If all you do is call instantiateClass("My

[flexcoders] Re: HTTPService-driven Tree

2007-03-13 Thread Doug Lowder
That trick will also work with Flex, but a better approach is to send the proper HTTP cache-control headers from your server. Search the archives for "cache-control" and you may find a PHP example. --- In flexcoders@yahoogroups.com, "shawn.gibson" <[EMAIL PROTECTED]> wrote: > > I meant 9-slice

RE: [flexcoders] Dynamic Instance of Class & Data Typing

2007-03-13 Thread Gordon Smith
newInstance[someMethodName](someParam) For example, myCanvas["addChild"](new Button()) - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: Tuesday, March 13, 2007 5:06 PM To: flexcoders@yahoogroups.com Subject: Re: [fle

[flexcoders] Re: HTTPService-driven Tree

2007-03-13 Thread shawn.gibson
I meant 9-slice...sorry. I just realized the caching is really gonna be a problem. I used to, with PHP code I'd borrow, be able to trick such things by adding a random numeric value to the end of the URL, hopefully something similar works with Flex/CF. Shawn

Re: [flexcoders] Dynamic Instance of Class & Data Typing

2007-03-13 Thread Kevin
by the same token how would I call a method dynamically. newClass[someMethodName](someParam); I tried the above with no luck. thanks, Kevin On Mar 13, 2007, at 7:19 PM, Gordon Smith wrote: Yes, assuming that myFavoriteClass is actually linked into your app. You can use the getDefinitionB

[flexcoders] Re: HTTPService-driven Tree

2007-03-13 Thread shawn.gibson
Thanks you! That means a lot. I know it's ugly right now, but I want runtime CSS hopefully with Flash and 9-Grid PS skins...right now's not the time to be complicating the code with that 'fluff stuff', I think. I want the data to work, I want it to to be error checked with users told that somet

[flexcoders] Re: HTTPService-driven Tree

2007-03-13 Thread shawn.gibson
This is funny. I just finished practically dancing around the room like a schoolgirl cuz I got this to work: public function treeChanged(event:Event):void { selectedNodeTree=Tree(event.target).selectedItem as XML; [EMAIL PROTECTED]; srv.s

[flexcoders] Re: HTTPService-driven Tree

2007-03-13 Thread Doug Lowder
--- In flexcoders@yahoogroups.com, "shawn.gibson" <[EMAIL PROTECTED]> wrote: > (Snip...) > > Here's what that file looks like: > http://shawngibson.com/faceitphoto.ca/shawn/model/galleriesData.xml > > (view source, I don't know why it throws errors, it works fine) > > ... Encode the "&" (a sp

RE: [flexcoders] Re: HTTPService-driven Tree

2007-03-13 Thread Tracy Spratt
Again you are close, and having the tile list get its data from httpservice complicates things only slightly. First, Do not bind to lastResult. Ever. It is just too hard to debug, and it is confusing, and it won't work for what you need to do. Instead, use a result handler function. See my pr

Re: [flexcoders] Dynamic Instance of Class & Data Typing

2007-03-13 Thread Kevin
what do you mean 'linked into your app'? the rest I understood. thanks! - Kevin On Mar 13, 2007, at 7:19 PM, Gordon Smith wrote: Yes, assuming that myFavoriteClass is actually linked into your app. You can use the getDefinitionByName() to look up a class by name, and the 'new' operat

RE: [flexcoders] Re: Need a hand with a scope problem

2007-03-13 Thread Gordon Smith
I think you want to do click="outerDocument.deleteRow(data.tld)" The MXML compiler autogenerates an 'outerDocument' property on each internal . - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of xzhao006 Sent: Tuesday, March

RE: [flexcoders] Dynamic Instance of Class & Data Typing

2007-03-13 Thread Gordon Smith
Yes, assuming that myFavoriteClass is actually linked into your app. You can use the getDefinitionByName() to look up a class by name, and the 'new' operator to create an instance of it. I think the code would be import flash.utils.getDefinitionByName; function instantiateClass(className:String

[flexcoders] Need help with validation in a DataGrid

2007-03-13 Thread Lex
I'm having a hard time putting a CurrencyValidator inside of a DataGrid. The breakpoints would indicate that the data binds properly, but I get an unfortunately XML mess with big scrollbars in the datagrid instead of what I'd expect. Here's the GenericDollarFormatItemRenderer.mxml that intuiti

RE: [flexcoders] Re: Passing an object reference as a property

2007-03-13 Thread Gordon Smith
function A(varname:String, value:int):void { this[varname] = value; } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of greenfishinwater Sent: Tuesday, March 13, 2007 8:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Passin

RE: [flexcoders] Passing an object reference as a property

2007-03-13 Thread Gordon Smith
I'm also confused by your mention of "an instance of an object property". You have objects, which are instances of classes, and each instance has properties, but there is no such thing as an instance of a property. Do you want to be able to set a property on an instance where the property name is

[flexcoders] Re: HTTPService-driven Tree

2007-03-13 Thread shawn.gibson
This is actually, uh, slightly, more complex that I thought. The SHORT answer is, I get what you are saying I need to do: initialize the first gallery to be loaded into the thumbnail/HL thing, and use a tree change event method to pass to that providing the proper gURL file in galleriesData.xm

Re: [flexcoders] DataGrid! mx:Validator in a mx:DataGrid, and Annoying "Enter" key behavior?

2007-03-13 Thread Lex
I did find this, that's good: http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=celleditor_073_17.html Still pending on the enter key business. A. - Original Message - From: Lex To: flexcoders@yahoogroups.com Sent: T

[flexcoders] DataGrid! mx:Validator in a mx:DataGrid, and Annoying "Enter" key behavior?

2007-03-13 Thread Lex
Hi. I'm looking to validate some input! How precisely do I go about connecting a Validator, perhaps a CurrencyValidator, to a datagridcolumn? The example at http://livedocs.adobe.com/flex/201/langref/index.html is not cluing me in.. >_< Also, when I click in a DataGrid square, the ce

Re: [flexcoders] Full Screen Projector File for Flex 2 Swf

2007-03-13 Thread Chris Allen
There's also ScreenWeaverHX. http://screenweaver.com it's open source and has been working well for us. On 3/13/07, We Made That design <[EMAIL PROTECTED]> wrote: I just finished building an .exe that launched full screen in flex 2. From within flex add fscommands into your initialize functio

[flexcoders] Re: Drag and Drop Example Needed

2007-03-13 Thread tosadavemgr
I have looked through most of the past posts on this site (especially since Flex 2 was released). Many of the search results on Flexsearch.org are from this board. I tried to list some specific things that I'm trying to learn, such as using Drop and Drag to an item that isn't DnD enabled by default

Re: [flexcoders] Synchronous HTTPService possible? Need to verify edit inside of Edit Event..

2007-03-13 Thread Lex
Binding around variables when a simple 'wait for completion' call would have done, is just an annoyance. I know that a multitude of events can serve to solve this. IMO however, the lack of thread control does make the transition from compiled languages annoying. These little nitpicks just teet

[flexcoders] Dynamic Instance of Class & Data Typing

2007-03-13 Thread Kevin
Is there a way to create new instances of a class dynamically at runtime: var someClass = "myFavoriteClass"; function instantiateClass(someClass){ var event: [someClass] = new [someClass] (); } Thanks, Kevin

RE: [flexcoders] Synchronous HTTPService possible? Need to verify edit inside of Edit Event..

2007-03-13 Thread Tracy Spratt
It is most definitely not an "oversight"! Folks have been fussing about it since the beta, but it was a conscious decision, based, I'm sure on potential network failure scenarios. None of the RPC protocols permit synchronous calls. In a similar vein, be aware that there is NO code blocking in

[flexcoders] Build Date?

2007-03-13 Thread Steve Kellogg
Hello, Is there any 'best practices' method to deriving the BUILD DATE of a Flex application? Thanks in Advance. Steve

Re: [flexcoders] Synchronous HTTPService possible? Need to verify edit inside of Edit Event..

2007-03-13 Thread Lex
Hi Shaun, Thanks for the note, I had found a workaround. It's too bad nonetheless, this seems a pretty serious oversight on Adobe's behalf. Every other framework I've ever worked with, include simple browser XHOR can be made to permit sync requests.. Onto the next stumbling block! Cheers.

[flexcoders] Horizontal Datagrid Scrollposition blown after column shift (drag'n drop)

2007-03-13 Thread iko_knyphausen
I have a datagrid with columns having minWidth values. horizontaScrollPolicy is set to auto. A horizontal scrollbar appears once the grid's width is smaller than the combinded minimum widths of all columns - so far so good. Trouble comes into paradise when you scroll to the right, grab a column a

Re: [flexcoders] Pass ModelLocator reference to Command?

2007-03-13 Thread Kevin
the solution below works: On Mar 13, 2007, at 4:48 PM, Kevin wrote: someone else was saying that I might be able to pass "model.userState.currentUser" as one property "source" and then the field as "fld". I would then try to call this in the Command: source[fld] = someData; I haven't tri

Re: [flexcoders] Synchronous HTTPService possible? Need to verify edit inside of Edit Event..

2007-03-13 Thread shaun
Hi, Alex wrote: > Quick question, > > >I'm trying to devise a table-edit view of a set of database tables, > and am successfully pulling records using e4x etc. > >At the cell-edition stage, I'm capturing an "itemEditEnd" event on my > DataGrid, and that's going well also. > >My que

[flexcoders] Re: Help!

2007-03-13 Thread nathanpdaniel
I was using just the Flex Builder 2.0 mxmlc compiler that you get with the SDK (pre-update though). I didn't notice anything until I tried moving the project to our server - I haven't worked on it in a while. This was the only project that its ever done it on (I also got FB2 shortly thereaf

Re: [flexcoders] Pass ModelLocator reference to Command?

2007-03-13 Thread Kevin
what is the "field" is nested in another object such as: model.userState.currentUser.username I can pass the field "username" but how to I indicate that the field is in model.userState.currentUser? someone else was saying that I might be able to pass "model.userState.currentUser" as one pr

[flexcoders] FlexBuilder and Subclipse

2007-03-13 Thread Brian Holmes
Hard drive crashed this morning. Just reinstalled FlexBuilder and now I can't get Subclipse to install. Says I need Subclipse (1.2.0) requires plug-in "org.eclipse.core.resources (3.2.0)", or later version. The org.eclipse updater says it's all up to date. And doesn't need anything else

[flexcoders] Tree, drag+drop, and XML

2007-03-13 Thread Douglas Knudsen
I have a Tree, and a dream it seems. The Tree's dataProvider is XML based. The Tree looks lovely and bares leaves. I set dragEnabled = true. On another object in my app I am capturing the dragEnter event with this mehtod privatefunction doDragEnter(event : DragEvent) : void {

[flexcoders] Re: DataGrid last column is not showing the full data.

2007-03-13 Thread joan_lynn
Sanjay, We fixed a bunch of bugs around DataGrid columns and scrolling in the Flex 2.01 update. Are you using this update and still seeing this issue or are you on Flex 2.0? If you are using Flex 2.0.1, then, you may be seeing a bug that we still haven't fixed. If that is the case, please file the

[flexcoders] Re: Server vs Client Object

2007-03-13 Thread Shaun
[Transient]! Great! Hadn't run across that one yet. Thanks, Peter. If only properties that are present on the server are set on the client and others are left default, and I can set [Transient] on my client properties, then I think my problems are solved. Thanks again, shaun --- In flexco

[flexcoders] Re: Server vs Client Object

2007-03-13 Thread Shaun
I haven't been able to successfully get the objects to show up in flex typed correctly yet (they're always just 'Object'). I'm trying to track down the issue and wondering if what I'm trying is even possible. Shaun --- In flexcoders@yahoogroups.com, "Paul DeCoursey" <[EMAIL PROTECTED]> wrot

RE: [flexcoders] Re: Server vs Client Object

2007-03-13 Thread Peter Farland
First note that the client class must have the ability to be constructed without any arguments, and then a setter will be called for each property returned for that instance from the server. Any other properties will remain in their default state on construction. Some ideas... You can make your c

[flexcoders] Re: Server vs Client Object

2007-03-13 Thread Paul DeCoursey
did you try it with Objects? It sounds reasonable to me. I don't see why it would not work. I'm doing SOAP so I can't really try it out myself. Paul --- In flexcoders@yahoogroups.com, "Shaun" <[EMAIL PROTECTED]> wrote: > > I assume that means there isn't a way to do this with objects? I > wo

[flexcoders] Re: Server vs Client Object

2007-03-13 Thread Shaun
I assume that means there isn't a way to do this with objects? I would rather avoid XML, as objects would be considerably faster and smaller to work with. Shaun --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > If you use the XML object, you can add attributes to

[flexcoders] Re: Server vs Client Object

2007-03-13 Thread Shaun
I assume that means there isn't a way to do this with objects? I would rather avoid XML, as objects would be considerably faster and smaller to work with. Shaun --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > If you use the XML object, you can add attributes to

Re: [flexcoders] Full Screen Projector File for Flex 2 Swf

2007-03-13 Thread We Made That design
I just finished building an .exe that launched full screen in flex 2. From within flex add fscommands into your initialize function. fscommand("fullscreen" , "true"). Now compile your swf. Once you have your swf. you launch the swf on its own and there will be a menu at the top. Click file > Cr

RE: [flexcoders] Server vs Client Object

2007-03-13 Thread Tracy Spratt
If you use the XML object, you can add attributes to it at will. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shaun Sent: Tuesday, March 13, 2007 12:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Server vs Client Ob

[flexcoders] Re: embed MXML inside canvas?

2007-03-13 Thread ripe101
Thanks, I'll check it out. I assume this is the same store that is covered in the Adobe TFS book (flexgrocer?) JK --- In flexcoders@yahoogroups.com, Teddy Setiawan <[EMAIL PROTECTED]> wrote: > > > If you download Flexstore sample from Adobe , I believe thats what you're > looking for.Date:

RE: [flexcoders] Re: Passing an object reference as a property

2007-03-13 Thread Tracy Spratt
I think if .property is a string or other "primitive", you cannot pass a reference to it but will always get a copy of the data. Instead, why not pass a reference to the entire object, and access .property within the consuming coomponent? class SomeCustomComponent{ public var source:O

Re: [flexcoders] Passing an object reference as a property

2007-03-13 Thread Troy Gilbert
It does work the same way as previous versions of ActionScript. If you're working with ActionScript, then stuff works just like you suggest. In MXML, though, attributes are strings or binding statements, not simple assignments. Troy. On 13 Mar 2007 10:47:44 -0700, Igor Costa <[EMAIL PROTECTED]>

[flexcoders] Re: itemClick event is calling on headerRelease in Datagrid

2007-03-13 Thread ben.clinkinbeard
The header is treated as another cell. Just check for rowIndex > 0 in your handler if you want to ignore header clicks. HTH, Ben --- In flexcoders@yahoogroups.com, "sanjaypmg" <[EMAIL PROTECTED]> wrote: > > Hi All, > > I have called a method on itemClick event of a dataGrid. and I have > rende

Re: [flexcoders] Cairngorm app with HTTPService

2007-03-13 Thread shaun
Hi, achegedus wrote: > I'm having a hard time learning Cairngorm, but I'm determined to > figure it out!! My current problem is with my HTTPService. In my > Delegate, I'm calling the service like this: > > public class ContactListDelegate > { > private var responder : IResponder; > private

Re: [flexcoders] Full Screen Projector File for Flex 2 Swf

2007-03-13 Thread Luis Eduardo
another ideia is to use internet explorer in kiosk mode (iexplore -k yourfilehere.swf) or perhaps write a very simple app in delphi that have an embedded browser and starts fullscreen. (or that start your exe file too) or yet make a shortcut link and change de properties to show maximiz

[flexcoders] timeout issues in FDS

2007-03-13 Thread passive_thoughts
I'm having serious issues surrounding timeouts in FDS. I tried setting the timeout for the rtmp channel to 60 and then the individual destinations to 60 as well, but I find my app loses the connection long before then. The silly thing is that when I lower this value to 10, at least the client

RE: [flexcoders] embed MXML inside canvas?

2007-03-13 Thread Tracy Spratt
You build a Flex app using "components". The components can be implemented in an Actionscript file or an mxml file, or they can be stand-alone compiled .swfs, or can be in a library (.SWC). Neither the manner of implementation of a component, or its physical location necessarily relate to the

Re: [flexcoders] Drag and Drop Example Needed

2007-03-13 Thread Igor Costa
Dave. Try a little search at www.flexsearch.org or http://www.flexsearch.org/index.shtml?cx=017079146949617508304%3Ama9avcq0-ng&q=Drag+and+Drop+Example&sa=Search&cof=FORID%3A9#1135 Will help to find lots of them. Regards Igor Costa www.igorcosta.org On 3/12/07, tosadavemgr <[EMAIL PROTECTED

[flexcoders] itemClick event is calling on headerRelease in Datagrid

2007-03-13 Thread sanjaypmg
Hi All, I have called a method on itemClick event of a dataGrid. and I have rendered the header of the same Grid. but when I click on the rendered header, It calls the same method which I used to call on itemClick event. Why? Please do let me know and help to resolve this issue Thanks in A

[flexcoders] DataGrid last column is not showing the full data.

2007-03-13 Thread sanjaypmg
Hi All, In my application, there are 22 columns in my dataGrid. I have fixed dataGrid width to 800 and put on the horizontalScrollPolicy. When the data is populated in Grid and i move scroll at the end i.e. 22nd column but 22nd column doesnt show the full data in column. If I click on header o

Re: [flexcoders] Help!

2007-03-13 Thread Igor Costa
Nathan Can't reproduce your error, two simple questions. Where are you using the SDK? what tool? The Eclipse you can use ANT to automactly do theses things. Regards Igor Costa www.igorcosta.org On 13 Mar 2007 08:08:43 -0700, nathanpdaniel <[EMAIL PROTECTED]> wrote: All righty - using F

RE: [flexcoders] Using HTTPService programmatically?

2007-03-13 Thread Tracy Spratt
Yes, if you are going to programmatically instantiate the HTTPService, then you need to build the request object and invoke the send() in as as well. The request xml snippet you show is for defining the request object in declaritive mxml. Either way, when you sent the request object to the

Re: [flexcoders] PopUpManager quick help

2007-03-13 Thread Igor Costa
Aaron I see 2 problems into your code, 1. You are trying to center a children popUp 2. You can't reference to centerPopUp using the reference this, you have to point the right id of your Canvas to center as a popUp. You will see the error #1009 as a reference to a null object. ;) Igor Costa ww

[flexcoders] Thanks for all the responses - this last thread solves the issue. n/t

2007-03-13 Thread Alex
Cheers. Alex

Re: [flexcoders] custom charting component question

2007-03-13 Thread Brendan Meutzner
Ely, Thanks for explaining the proper method... it works a lot better now! I've updated the code on the example's source now as well. Brendan On 13 Mar 2007 05:42:27 -0700, Ely Greenfield <[EMAIL PROTECTED]> wrote: Hmm... - add a mouse down handler to the series. - on mouse down, add m

Re: [flexcoders] Uneven behave of the application..

2007-03-13 Thread Igor Costa
What problem are you having to it? Describe them. Maybe someone here could help you. Igor Costa www.igorcosta.org On 13 Mar 2007 10:35:43 -0700, sanjaypmg <[EMAIL PROTECTED]> wrote: Hi, I have developed an application in Flex 2.0 and Java using FDS. This application is behaving in uneven

Re: [flexcoders] Need a hand with a scope problem

2007-03-13 Thread Igor Costa
Alex you're right, it's a Scope problem Flex has 2 scope reserved words, parentDocument and parentApplication. So, to fix your problem and point out to start Working you could do this one. Best Igor Costa www.igorcosta.org On 3/13/07, Alexandre Lemaire <[EMAIL PROTECTED]> wrote:

[flexcoders] Server vs Client Object

2007-03-13 Thread Shaun
I think this question probably has an obvious answer, but I want to make sure I am using something resembling best practices, so I decided I better ask: If I have a server object that has a set of persistent properties, but on the client I want to add some temporary properties and/or logic, what i

Re: [flexcoders] Building a String with characters "

2007-03-13 Thread Igor Costa
Hi there Keith The problem in the concatenation is this you're trying to pass an special character into a compiler time. So, to figure out you could try this one. http://www.adobe.com/2006/mxml"; layout="absolute"> Regards Igor Costa www.igorcosta.org On 3/13/07, khos2007 <[EMAIL PROTE

RE: [flexcoders] Pass ModelLocator reference to Command?

2007-03-13 Thread Dimitrios Gianninas
with the event that is broadcast to execute the command, pass the field in the ML that is being updated, that should do it if I understand correctly. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

Re: [flexcoders] Passing an object reference as a property

2007-03-13 Thread Igor Costa
Maybe you could put curly braces instead of only "". Then passing throw outprints like this Regards. Igor Costa www.igorcosta.org On 12 Mar 2007 20:28:39 -0700, Kevin <[EMAIL PROTECTED]> wrote: I would like to pass an object path through a property of another class, but can't figure out

Re: [flexcoders] small problem with Bar Chart showing days

2007-03-13 Thread Igor Costa
Mark I don't think this could be a problem in render, could you please paste part of your code to be see what are you trying to do ? Maybe could help us to figure out more your problem. Best Igor Costa www.igorcosta.org On 3/7/07, Mark <[EMAIL PROTECTED]> wrote: I'm using a bar chart to

Re: [flexcoders] Bug with MouseEvent

2007-03-13 Thread Igor Costa
Bug? What excatly problem are you having out there into your project? Could you be more specify and paste a code of what are you trying to do ? Thanks Regards Igor Costa On 13 Mar 2007 09:37:49 -0700, Paul DeCoursey <[EMAIL PROTECTED]> wrote: I reported this a while ago and most people jus

RE: [flexcoders] Need a hand with a scope problem

2007-03-13 Thread Dimitrios Gianninas
Or dont put the button at all... Allow the user to select one or many rows and have one delete button at the bottom of the DataGrid. The way you are doing it is a la HTML, think different :) Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoder

[flexcoders] Uneven behave of the application..

2007-03-13 Thread sanjaypmg
Hi, I have developed an application in Flex 2.0 and Java using FDS. This application is behaving in uneven manners. I have deployed it on a server and accessing it from many client machines. Its working perfectly fine on some PCs but shows some error on varios PCs even on the server it shows t

[flexcoders] Re: small problem with Bar Chart showing days

2007-03-13 Thread Mark
I tried setting the data Units to hours and it still doesn't render the bar. The reason is because it could be showing up to 1.5 years. --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Wednesday 07 Mar 2007, Mark wrote: > > though is the product(s) that roll

Re: [flexcoders] Re: Passing an object reference as a property

2007-03-13 Thread Kevin
thanks for all the suggestions. I guess the reason I am a little stumped is because there is no easy answer to this. In the old Flash days I use to pass references to movie clip locations as variables all the time using the 'this' keyword and assigning it to some global variable, but it d

Re: [flexcoders] Re: Passing an object reference as a property

2007-03-13 Thread Troy Gilbert
The real issue here is that when using MXML you can only pass in values or bindings. You can't really pass in objects. And that's because MXML is declarative, i.e. it just "is" so to speak. Its value-oriented, and in ActionScript there is no "value" reference (a pointer or address) like there are

[flexcoders] Re: Building a String with characters "

2007-03-13 Thread khos2007
Thank worked. The Compiler is satisfied :) Thanks, -- Keith H -- --- In flexcoders@yahoogroups.com, "greenfishinwater" <[EMAIL PROTECTED]> wrote: > > I think the compiler is getting confused, when it sees "]]>", it is > taking it for the end of the CDATA section. > > Try this: > > ndv = "

[flexcoders] Re: PopUpManager quick help

2007-03-13 Thread chaim.platonov
Let's see: PopUpManager.createPopUp( cn, AddSubscriptionModal, true ) do follow: * create AddSubscriptionModal. The constructor call PopUpManager.centerPopUp( this ); This center the window to its parent. Parent is not defined at present time - error * add created window to canvas the C

Re: [flexcoders] Re: Web Service Error Handling Problem

2007-03-13 Thread Troy Gilbert
Yeah, URLLoader is definitely a tease that way... almost perfect, but not really. It does seem like a browser issue, but I find it really, really, really hard to believe that a browser plugin couldn't use the browser to retrieve a URL and not get a full HTTP response, particularly in a standards-

Re: [flexcoders] Re: Can't get Subclipse to work in Flex Builder

2007-03-13 Thread Troy Gilbert
Did you import the project into Flex from SVN, or did you check it out to disk (using TortoiseSVN or command-line SVN) and then open it from the file system in Flex? I've only ever imported projects from SVN straight into Flex... perhaps that's required for it to "connect" to the project properly?

  1   2   >