[flexcoders] Re: DateChooser setting displayedMonth, displayedYear does nothing

2008-05-19 Thread rleuthold
Thank's - I could solve it easily with your explanations. And now it is totally clear to me why it couldn't work. But there was no warning in the console. Thank's again _rico --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > I didn't run the code, but by looking at

[flexcoders] Re: bug in setMonth() method?

2008-05-19 Thread Dmitri Girski
Hi Alex, Here is the bug when you set correct value and get incorrect result. https://bugs.adobe.com/jira/browse/SDK-14983 adding 24 hours does will not cause switching to the next date if it happens over the daylight saving change date [summer->winter]) Cheers, Dmitri. --- In flexcoders@yahoo

[flexcoders] Determine "IS" with a Class object rather than an instance?

2008-05-19 Thread Josh McDonald
Guys, Say I have this: function findMeAClassMagic() : Class { ... } var foo : Class = findMeAClassMagic(); Can I determine whether or not the class represented by Foo is a Bar or a subclass of Bar, without attempting to call a new foo() and hoping foo has a zero-argument constructor inside a tr

Re: [flexcoders] flex3 sdk and eclipse 3.2

2008-05-19 Thread Tom Chiverton
On Sunday 18 May 2008, Gustavo Duenas wrote: > Hi, anyone knows a way to make eclipse 3.2 to work with the flex sdk? With or without Flex Builder ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a

[flexcoders] Buggy tree control

2008-05-19 Thread Giles Roadnight
Hi All I've been having some very odd issues with my tree control in Flex 3. My control is bound to an XML dataprovider and has a custom dataDescriptor (but all these issues seem to continue without the dataDescriptor). One issues was that if I delete a node and then append a new node in it's pl

[flexcoders] Re: Bindable tag question

2008-05-19 Thread gaurav1146
Hi, Thanks, I now get that addItem method was responsible for triggering the property change event. But I am not very clear what purpose does it serve to have the dataProvider as Bindable. Based on your example I created a class Company and used an Arraycollection companyList to display companies

[flexcoders] Installing Flex-plugin without copying to SDK folder again?

2008-05-19 Thread Dan
Hi, I have a very simple question, but i can't figure out the answer. Is there way to install a Flex-plugin to a second eclipse in the same machine without Re-installing the whole SDK? Because, when i use the installer, it will ask for the desire SDK folder everytime and try to reinstall all th

Re: [flexcoders] Installing Flex-plugin without copying to SDK folder again?

2008-05-19 Thread Tom Chiverton
On Monday 19 May 2008, Dan wrote: > Hi, I have a very simple question, but i can't figure out the answer. > Is there way to install a Flex-plugin to a second eclipse in the same > machine without Re-installing the whole SDK? One the plugin is installed, you can add the SDKs from your other install

Re: [flexcoders] logic code in another file

2008-05-19 Thread Tom Chiverton
On Friday 16 May 2008, Paul Andrews wrote: > You need to use classes and put your logic there, just leave the use of the > script tags to control the UI and communicate with the logic. A swift google for the 'code behind' approach in Flex may help too: http://community.adobe.com/ion/search.html?q=

Re: [flexcoders] a simple question of BitmapData

2008-05-19 Thread EECOLOR
This will most likely fail, for 2 reasons: 1. In order to deserialze a object of a special type, you need to call 'registerClassAlias' 2. BitmapData has a constructor with required arguments If you wanted to serialize a BitmapData instance into AMF you would need to extend the class and set defau

[flexcoders] Preventing DataGrid Scroll on XMLListCollection Data Refresh

2008-05-19 Thread Thind, Aman
Hello, I have an XMLListCollection bound to a DataGrid. I have to periodically update the data in the list and call refresh on it but everytime I do that, the grid scrolls. Is there any way by which I could prevent the scrolling on refresh. Many Thanks, Aman - - - - - - - - - - - - - - - - - -

Re: [flexcoders] How to set the e.currentTarget.selectedItem data to my own VO object?

2008-05-19 Thread EECOLOR
var vo:TileListVO = TileListVO(e.currentTarget.selectedItem); Greetz Erik On 5/19/08, flexawesome <[EMAIL PROTECTED]> wrote: > > > Hi there, > > I was trying to figure out how to set my selected data to my VO object. > so I could get the data anywehere in my application ( using cairngorm > fr

Re: [flexcoders] Installing Flex-plugin without copying to SDK folder again?

2008-05-19 Thread Douglas Knudsen
Look at help > software updates > manage configuration and choose add a extension. Point to the 'eclipse' directory where you installed the plugin. You really need two eclipse versions? You do know you can have multiple workspaces, right? DK On Mon, May 19, 2008 at 3:33 AM, Dan <[EMAIL PROTECTE

Re: [flexcoders] Apache 1.3.26 vs 2.0 with Flex 2.0 app

2008-05-19 Thread Tom Chiverton
On Friday 16 May 2008, RS wrote: > I have a flex application that runs fine on Apache 2.0 (with IE). It > just displays a blank page with Apache 1.3.26. Has anyone experienced > this problem? Almost certainly the HTML wrapper or 1.3 Apache instance is not sending the right swf file, maybe a pe

Re: [flexcoders] Re: bug in setMonth() method?

2008-05-19 Thread Douglas Knudsen
try myDate = new Date(2008, 3, 6,0,0,0,0); //use new Date(2008, 2, 8,0,0,0,0) for US myDate.date += 1; instead, eh? I suspect mutating myDate.time is looked at as low level manipulation for special cases. Just a guess. DK On Mon, May 19, 2008 at 1:55 AM, Dmitri Girski <[EMAIL PROTECTED]> wrote:

[flexcoders] HBox - Padding left the scroll bar does not work as expected

2008-05-19 Thread cesarerocchi
Hi, I have the following code: http://www.adobe.com/2006/mxml"; layout="absolute" > The paddingLeft is expected to create a "gap" of 20px between the border of the application and the hBox. And in some sense it does. The image

[flexcoders] ComboTree

2008-05-19 Thread adrozdenko
Hi everyone how can I put a tree in a comboBox?

[flexcoders] Re: SQL Lite syntax issue, need something cleared up regarding SELECT

2008-05-19 Thread bredwards358
--- In flexcoders@yahoogroups.com, Marcus Engene <[EMAIL PROTECTED]> wrote: > > And then google for sql injection. Already taken care of beforehand, I find to be a bit of an annoyance when the solution to so many problems turn out to be incredibly simple, apparently too simply for me to readily fi

[flexcoders] My application crash

2008-05-19 Thread tuncayxxx
Hi, I hope some of you guys can help me. I made my first company Flex application integrated into a webapplication using Java Dataservice to communicate to backend. On Windows machine it works properly. When deploying into a Linux machine it crashes almost all time when the application either is

[flexcoders] more data into alert, or panel acting as an alert

2008-05-19 Thread David Pariente
Hello everyone, I wanna show alerts in my web app for several things ("please wait", recording, updating, etc...). I like Alert, but in my case I wish I could close it with a call from AS3, as well as being able to put any kind of information inside, like animations, graphics, etc... I've bee

[flexcoders] How do I switch data providers?

2008-05-19 Thread ucabb4u
Can someone help me out please? I have a ComboBox with a list of subjects. I want the user's selection to change the name of the dataProvider. I found a reference in Adobe's docs that says it can be done but I can't figure out how. Can you also volunteer any information where I can find a c

[flexcoders] Air - Send Client Certificate to Web Service

2008-05-19 Thread alfrifa
I'm deploying a project that need to comunicate to secure webservice over https. The server only accept connections with x509 client certificates and it is the CA. There is a way to authenticate an AIR application using client certificates? I have already downloaded hurlants library, but I don'

[flexcoders] FMS3 sys reqs

2008-05-19 Thread Nik Derewianka
Hi, Sorry for the slightly tangential post but Adobe support wants to charge me $12,595 AUD to tell me whether FMS3 will run on a certain linux kernel without issues. I have a few choice words in response that I don't need to repeat here. If there is a better forum for this question the

[flexcoders] Parse RSS XML in HTML format???

2008-05-19 Thread Craig
I am using the RSSParser to read XML data into Flex, but can't get past an item which is formatted in HTML, it is the portion of the feed... it it between Script tags like this... My Parser reads it in but I don't know what to call it or do with it. Here is xml PARSING code:

Re: [flexcoders] more data into alert, or panel acting as an alert

2008-05-19 Thread Tom Chiverton
On Monday 19 May 2008, David Pariente wrote: > as well as being able to put any kind of information inside, like > animations, graphics, etc... TitleWindow ? http://livedocs.adobe.com/flex/3/langref/mx/containers/TitleWindow.html -- Tom Chiverton

[flexcoders] Using custom item renderer with List

2008-05-19 Thread the_braniak
Hi all, In my application I am pooling data every 3 seconds. The data goes into a model which updates a view. I am using a list with a custom Item renderer. In the custom itemRenderer I am overriding the data getter/setter. Everything works fine (the bindings and all) except one fact: the the Dat

Re: [flexcoders] Re: Bindable tag question

2008-05-19 Thread Josh McDonald
If you have: var myList : ArrayCollection = new ArrayCollection(); And it's not bindable, but points to objects that are, then a component that has it as a dataProvider will update when you add an item, or remove an item, or change an item. But, since the "myList" variable itself is not bindable,

[flexcoders] Rezizer for text input

2008-05-19 Thread adrozdenko
Hi guys anyone knows how i can create a resizer for textInput?

[flexcoders] Passing application/pdf response to enclosing browser

2008-05-19 Thread p_repetti
Hello how do I pass data dowloaded by Flex to the enclosing browser ? I mean: I have a Flex 3 app that downloads a PDF file from the server. I issue a GET HTTP request to the server, by a URLLoader/URLRequest combination, and the server replies with an application/pdf HTTP response. All fine. B

RE: [flexcoders] Using custom item renderer with List

2008-05-19 Thread Alex Harui
If you do'nt speicfy a rowHeight, the List will measure the first item to see how big it is before creating renderers for it and the rest. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of the_braniak Sent: Monday, May 19, 2008 5:48 AM To: fl

RE: [flexcoders] How do I switch data providers?

2008-05-19 Thread Alex Harui
You mean something like this? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ucabb4u Sent: Monday, May 19, 2008 2:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How do I switch data providers? Can someone help me out plea

RE: [flexcoders] ComboTree

2008-05-19 Thread Alex Harui
search the archives and/or web. It has been done. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of adrozdenko Sent: Monday, May 19, 2008 5:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboTree Hi everyone how can I put a t

RE: [flexcoders] HBox - Padding left the scroll bar does not work as expected

2008-05-19 Thread Alex Harui
You've set padding between the HBox and its content. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cesarerocchi Sent: Monday, May 19, 2008 4:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] HBox - Padding left the scroll bar doe

RE: [flexcoders] Preventing DataGrid Scroll on XMLListCollection Data Refresh

2008-05-19 Thread Alex Harui
Don't call refresh. That makes it think there's a sort going on. If you use XMLListCollection APIs to update the data it should not scroll From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Thind, Aman Sent: Monday, May 19, 2008 3:51 AM To:

RE: [flexcoders] Buggy tree control

2008-05-19 Thread Alex Harui
search the tree bugs on bugs.adobe.com/jira and see if your issue is already open. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: Monday, May 19, 2008 1:45 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Buggy

RE: [flexcoders] Determine "IS" with a Class object rather than an instance?

2008-05-19 Thread Alex Harui
Try getQualifiedClassName/getQualifiedSuperClassName From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Monday, May 19, 2008 12:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Determine "IS" with a Class object r

Re: [flexcoders] logic code in another file

2008-05-19 Thread Leonardo
Need to say, tanks all you guys, those links helped a lot, especially the code behind approach. Since i never used other kind of presentation layer, this way to solve the tings is new to me. 2008/5/19 Tom Chiverton <[EMAIL PROTECTED]>: > On Friday 16 May 2008, Paul Andrews wrote: > > You need to

RE: [flexcoders] Re: bug in setMonth() method?

2008-05-19 Thread Alex Harui
That didn't seem like a bug. If you look at the number of milliseconds, it is hopefully correct and the issue is all about representation. Get some others to vote and we'll take another look. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf O

[flexcoders] Help! question on deploying flex and blazeDS on WebLogic

2008-05-19 Thread Body Works Studio
Hi all, I am with a software dev company, and we have a search app with a UI built in flex. Currently our app works on web Logic. As part of our app's upgrade to flex 3 we are switching from fds to blaze DS. Because of legal reasons since Blaze is open source we need to split out the blaze war and

Re: [flexcoders] ComboTree

2008-05-19 Thread Andriy Drozdenko
http://cyberdust.wordpress.com/2007/02/23/introducing-selecttree-the-drop-down-tree-control/ i found this one but its not working it has this SubjectGateway i get an error coz i'm using Flex 3 - Original Message From: Alex Harui <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent:

[flexcoders] XML Validation Question

2008-05-19 Thread andrewwestberg
Is there an easy way to validate XML against an XSD in Flex? -Andrew

[flexcoders] Re: bug in setMonth() method?

2008-05-19 Thread Dmitri Girski
Hi Douglas, Yay! Your suggestion fixed the problem! mydate.date +=1; mydate = new Date(mydate); Thank you! Cheers, Dmitri. --- In flexcoders@yahoogroups.com, "Douglas Knudsen" <[EMAIL PROTECTED]> wrote: > > try > myDate = new Date(2008, 3, 6,0,0,0,0); //use new Date(2008, 2, 8,0,0,0,0) > fo

[flexcoders] Write Data to Tab Navigater

2008-05-19 Thread timgerr
Hello, I have a question for ya, I have this tab navigator and I have a few text input boxes in each one. I create a json call and I want to populate the text input boxes with the requested data. http://www.adobe.com/2006/mxml"; width="400" height="500">

[flexcoders] Re: bug in setMonth() method?

2008-05-19 Thread Dmitri Girski
Hi Alex, The number of milliseconds in GMT will be correct, but local time will be wrong. Douglas suggested in a couple of posts above the solution which works mydate.date +=1; mydate = new Date(mydate); This thing goes correctly over the daylight savings. So I presume the functionality which ch

[flexcoders] Re: Bindable tag question

2008-05-19 Thread Amy
--- In flexcoders@yahoogroups.com, "gaurav1146" <[EMAIL PROTECTED]> wrote: > > Hi, > Thanks, I now get that addItem method was responsible for triggering > the property change event. But I am not very clear what purpose does > it serve to have the dataProvider as Bindable. Based on your example

[flexcoders] Debugging Flex3->AMFPHP

2008-05-19 Thread mr_delphi_developer
I'm trying to get my head wrapped around how to use AMFPHP with Flex3 using Michale Rameriz's tutorial here: http://www.howtoforge.com/amfphp_adobe_flex2_sdk I've got a lot of the gotchas worked out but I get nothing back from the DB, the statusbar just says "Transferring data from localhost" whe

[flexcoders] Flex play powerpoint presentation?

2008-05-19 Thread markflex2007
Hi, Please let me know if Flex or Flash can call(or play) ppt files directly. Thanks Mark

[flexcoders] Authorware to Flex?

2008-05-19 Thread markflex2007
Hi, We plan to redo a authorware application with Flex. I can not find a reference about this by google. Do you have some information about this? and if it is possible for doing this. Thanks Mark

[flexcoders] CS3 to flex tutorials

2008-05-19 Thread Kenneth Sutherland
Anyone recommend some good tutorials for creating a flash component that I can export into flex and change its values from flex. I've followed the following example on http://lordbron.wordpress.com/2007/05/01/flex-component-kit-step-by-step / which was pretty helpful. I've managed to create a c

RE: [flexcoders] Write Data to Tab Navigater

2008-05-19 Thread Battershall, Jeff
myTabNav.creationPolicy = "all"; -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of timgerr Sent: Monday, May 19, 2008 12:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Write Data to Tab Navigater Hello, I have a question for ya, I have

[flexcoders] Re: Using custom item renderer with List

2008-05-19 Thread Amy
--- In flexcoders@yahoogroups.com, "the_braniak" <[EMAIL PROTECTED]> wrote: > > Hi all, > > In my application I am pooling data every 3 seconds. The data goes > into a model which updates a view. I am using a list with a custom > Item renderer. In the custom itemRenderer I am overriding the data

[flexcoders] Localization with subdirectories is possible?

2008-05-19 Thread Leonardo Moreno
Hi coders I'm starting with localization with Flex. I hava the normal structure "src/locale/en_US/" for the bundles. I'd like to have this content structured with subdirectories but when I try to declare the bundle in the mxml it doesn't find nothing. Do I have to put all the resource bundles

[flexcoders] Re: Write Data to Tab Navigater

2008-05-19 Thread timgerr
Thanks, That worked well. --- In flexcoders@yahoogroups.com, "Battershall, Jeff" <[EMAIL PROTECTED]> wrote: > > myTabNav.creationPolicy = "all"; >

[flexcoders] Access Child Document Flex Components

2008-05-19 Thread timgerr
Hello all, Thanks for all the help That I have recieved, I am learning alot. Main Application that has many Flex Components. I want to call a HTTPService from the main app page, I am not sure how to do this. I have tried GetUserDataRequest.send() but to no avail. I know that there is a way

[flexcoders] resourceManager and actionScript updates

2008-05-19 Thread Thierry V.
Hello list, I have a project with the resourceManager to have internationalisation on the application. All works fine when I do my stuff into mxml files, but if I add some actionScript code into AS code-behind classes, the update seems work only if the component has not been viewed. Example :

[flexcoders] Re: How to set the e.currentTarget.selectedItem data to my own VO object?

2008-05-19 Thread flexawesome
humm same error msg. I can set data like this... var vo:TileListVO = new TileListVO(); vo.id = e.currentTarget.selectedItem.id vo.name = e.currentTarget.selectedItem.name but I would like to set it at once. any suggestion? thanks --- In flexcoders@yahoogroups.com, EECOLOR <[EMAIL PROTECTED

[flexcoders] Re: How to set the e.currentTarget.selectedItem data to my own VO object?

2008-05-19 Thread flexawesome
humm same error msg. I can set data like this... var vo:TileListVO = new TileListVO(); vo.id = e.currentTarget.selectedItem.id vo.name = e.currentTarget.selectedItem.name but I would like to set it at once. any suggestion? thanks --- In flexcoders@yahoogroups.com, EECOLOR <[EMAIL PROTECTED

RE: [flexcoders] Re: bug in setMonth() method?

2008-05-19 Thread Gordon Smith
It isn't up to Adobe to define how the Date class works. The Player team's intention is to follow the Ecma-262 spec for this class. I haven't checked what the spec has to say about this, but if the Player isn't in compliance, that's a bug. Gordon Smith Adobe Flex SDK Team _

RE: [flexcoders] Access Child Document Flex Components

2008-05-19 Thread Tracy Spratt
You can access the public members of a component instantiated with an mxml tag by using the "id" property, which the compiler turns into an instance variable containing a reference to the component: myComponentId.GetUserDataRequest.send(); Also you might want to look into using AsyncToken t

RE: [flexcoders] Re: Write Data to Tab Navigater

2008-05-19 Thread Tracy Spratt
But creationPolicy="all" is bad practice, and you will be very sorry some day if you use it habitually. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of timgerr Sent: Monday, May 19, 2008 12:53 PM To: flexcoders@yahoogroups.com Sub

[flexcoders] Re: Bindable tag question

2008-05-19 Thread gaurav1146
Hi, Thanks a lot, Josh. That example cleared my doubt. Also, I believe in the case where my dataProvider does not contain elements with Bindable properties, I just need to call dataProvider.refresh() to update the datagrid. Thanks once again. Regards, Gaurav --- In flexcoders@yahoogroups.com, "J

RE: [flexcoders] Localization with subdirectories is possible?

2008-05-19 Thread Gordon Smith
I can't remember whether Flex 3 supports this, but if it does, I think the bundle name would be "security.main". Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Leonardo Moreno Sent: Monday, May 19

[flexcoders] Re: Access Child Document Flex Components

2008-05-19 Thread Tim Hoff
Hi Tim, You're now getting to the point were serious consideration, towards using an MVC micro-architecture, should be given. You can do many things, in an application, by accessing parent and child components directly. However, there is a point in every application (similar to the point of dim

[flexcoders] Re: Bindable tag question

2008-05-19 Thread Gallagher, Tim (NE)
What would be a better practice?? Timgerr

RE: [flexcoders] resourceManager and actionScript updates

2008-05-19 Thread Gordon Smith
You're setting mybutton.label only once, when init() executes at creationComplete time. Since you're not using databinding, the label isn't going to automatically change when you change the localeChain. You need to override the resourcesChanged() method and reset the label. Since you like to us

[flexcoders] Re:Authorware to Flex?

2008-05-19 Thread Merrill, Jason
Yes, it's possible, but what do you want to do specifically? It would help if you described what specific things you want to do, other than "convert a course". Jason Merrill Bank of America Global Technology & Operations L&LD eTools & Multimedia Join the Bank of America Flash Platform Deve

[flexcoders] Re: mx.utils.URLUtil.replacePort() does not work?

2008-05-19 Thread valdhor
It appears that URLUtil.replacePort requires the trailing "/". Try this: var newUri:String = URLUtil.replacePort("http://localhost:/";, ); I don't know if this is a bug or a undocumented feature. It kinda makes sense if you think about it - The URI is incorrectly bounded without that trai

Re: [flexcoders] Localization with subdirectories is possible?

2008-05-19 Thread Leonardo Moreno
No, that option didn't work either. Anybody has any clues on this? Regards Gordon Smith wrote: > > I can't remember whether Flex 3 supports this, but if it does, I think > the bundle name would be "security.main". > > > > Gordon Smith > > Adobe Flex SDK Team > > > > -

[flexcoders] DataGrid visibility problem

2008-05-19 Thread Cameron Childress
I have a datagrid in an AIR application that works fine on my dev machine (Vista), but that is blank when run on another machine (XP). Essentially, the grid visually appear on the screen as if it were an empty grid with no headers. Once I click on a header, the words appear in the header and stay

[flexcoders] Keeping selectedItem in diffrent viewstates

2008-05-19 Thread pioplacz
Hi, I have a question regarding viewstate. I have three different view states, in those three states i have TileList in the first, DataGrid in the second and HorizontalList in the third. All those use the same arrayCollection. What I'm trying to achieve is: when user selects an item in the

[flexcoders] Re: Debugging Flex3->AMFPHP

2008-05-19 Thread actionscript_czar
A very good tool for helping you debug any AMF source is Service Capture. It is an inexpensive tool that has saved me hours of time by being able to read AMF, SOAP, JSON-RPC and HTML packets. I use it with AMFPHP here at the office. Here's the website. http://kevinlangdon.com/serviceCapture/

[flexcoders] Stress Testing a BlazeDS Application

2008-05-19 Thread Geoffrey
Is there a FREE way to stress test a real-time messaging BlazeDS application? I tried using JMeter, but I can't capture all of the http request data to set up the test because you need to use a proxy for that, and BlazeDS falls back to a polling channel if a proxy is used. I looked in flexunit, b

Re: [flexcoders] CS3 to flex tutorials

2008-05-19 Thread Joseph Balderson
I'm actually writing a tutorial series on Community MX about that very topic . In the coming weeks there will be articles about creating Flash components and porting them to Flex, so stay tuned. For now you could try some of the articles up on

[flexcoders] Re: Debugging Flex3->AMFPHP

2008-05-19 Thread mr_delphi_developer
I have HTTPLook which is an HTTP Capture application. --- In flexcoders@yahoogroups.com, "actionscript_czar" <[EMAIL PROTECTED]> wrote: > > A very good tool for helping you debug any AMF source is Service > Capture. It is an inexpensive tool that has saved me hours of time > by being able to r

Re: [flexcoders] Re: Debugging Flex3->AMFPHP

2008-05-19 Thread dnk
I second this one 100%. dk On 19-May-08, at 11:51 AM, actionscript_czar wrote: A very good tool for helping you debug any AMF source is Service Capture. It is an inexpensive tool that has saved me hours of time by being able to read AMF, SOAP, JSON-RPC and HTML packets. I use it with AMFPHP

[flexcoders] Re: Keeping selectedItem in diffrent viewstates

2008-05-19 Thread Tim Hoff
Hi, There are a few ways that you can keep your different list controls in sync; concerning the selectedItem or selectedIndex. Probably the easiest way is to create a variable for the selectedIndex, updated on the change event of the three controls, and bound to the selectedIndex property of the

Re: [flexcoders] resourceManager and actionScript updates

2008-05-19 Thread Thierry V.
Thanks Gordon for your answer. I found the same way, overriding the resourcesChanged method. For this simple example, I can use dataBinding directly into mxml, but for my real application, it's useful to do some stuff with actionScript, especially for labels who changes on user interaction (ie

[flexcoders] Re: Access Child Document Flex Components

2008-05-19 Thread timgerr
Tracy I dont think a flex component can have an id, what might I be ding wrong? Thanks, Timger --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > You can access the public members of a component instantiated with an > mxml tag by using the "id" property, which the co

[flexcoders] Re: Access Child Document Flex Components

2008-05-19 Thread timgerr
I will look into this, Thanks. --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL PROTECTED]> wrote: > > > Hi Tim, > > You're now getting to the point were serious consideration, towards > using an MVC micro-architecture, should be given. You can do many > things, in an application, by acces

[flexcoders] Re: My application crash

2008-05-19 Thread valdhor
I got this error for a while when I was testing between AMFPHP and WebORB. I can't recall off hand what the solution was...It may just have been to "Clean" the project. --- In flexcoders@yahoogroups.com, "tuncayxxx" <[EMAIL PROTECTED]> wrote: > > Hi, > > I hope some of you guys can help me. > >

[flexcoders] Grr, HTTPService doesn't work when it should

2008-05-19 Thread Clinton D. Judy
This may be a simple problem, but Flex shuts down hard when I try this code: http://www.adobe.com/2006/mxml"; layout="vertical" horizontalAlign="center" verticalAlign="top" width="100%" height="100%" creationComplete="checkJobs.send()"> ht

[flexcoders] Re:Authorware to Flex?

2008-05-19 Thread Amy
--- In flexcoders@yahoogroups.com, "Merrill, Jason" <[EMAIL PROTECTED]> wrote: > > Yes, it's possible, but what do you want to do specifically? It would help if you described what specific things you want to do, other than "convert a course". In addition to what Jason said, I'll be doing a pre

RE: [flexcoders] Grr, HTTPService doesn't work when it should

2008-05-19 Thread Jeff Vroom
I think at least you need to change: checkJobs.lastResult.jobs.job to: checkJobs.lastResult.jobs the DataGrid is expecting a list of jobs, not just a single job. Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: Tree - Drag Drop - prevent drop into folder

2008-05-19 Thread iilsley
Thanks for the response .. anywhere in an open folder .. I'm trying to prevent being able to 'drop' a folder in another folder . ( so a single level tree ).. > top item1 > middle item2 I want to prevent middle being dropped into top . I thought it would be as simple as if ( dragsou

[flexcoders] Re: Debugging Flex3->AMFPHP

2008-05-19 Thread valdhor
My recommendation is Charles (http://www.charlesproxy.com/). BTW. If you are using Firefox, there is a bug in FF that shows "Transferring data from " in the status bar all the time (Unless you switch to another tab and back again). I just ignore this message. On another note, posting some cod

RE: [flexcoders] Grr, HTTPService doesn't work when it should

2008-05-19 Thread Clinton D. Judy
I tried this, it didn't work. I thought you still referred to the first element in an array in Flex, not its parent class. Are you sure my HTTPService is fine? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Vroom Sent: Monday, May 19, 2008 3:59 PM To: flexcoders@ya

RE: [flexcoders] Grr, HTTPService doesn't work when it should

2008-05-19 Thread Clinton D. Judy
I tried Charles, and discovered I was sending this to Rails: <> This doesn't seem right, and sure enough, Rails is throwing errors when it receives that. So it's gotta be my HTTPService, but I don't know where to begin fixing it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTE

[flexcoders] Re: Grr, HTTPService doesn't work when it should

2008-05-19 Thread valdhor
You have set the contentType property of your request to "application/xml" and the sent an empty string as your request. Flex (Probably) sees that and sends <> as the XML request. You probably want to remove the contentType property of your request and let flex use a contentType of "application/x-w

RE: [flexcoders] Re: Access Child Document Flex Components

2008-05-19 Thread Tracy Spratt
Hmm? Lets be clear on our language then. A "Flex Component" has two states of being, the class, as implemented either in mxml or AS, and the "instance", which is what you get when you do: Or: new CustomComponent(); It is easy to put an id on a Flex component instantiated in the first manner

Re: [flexcoders] Determine "IS" with a Class object rather than an instance?

2008-05-19 Thread Josh McDonald
Won't they just return "Class" and "Object" respectively? I'm working without an instance - just a Class Object returned from some reflection via describeType() and getDefinitionByName(). -J On Tue, May 20, 2008 at 12:27 AM, Alex Harui <[EMAIL PROTECTED]> wrote: >Try getQualifiedClassName/ge

RE: [flexcoders] Re: Grr, HTTPService doesn't work when it should

2008-05-19 Thread Tracy Spratt
You said, "Flex shuts down hard", but then you said you DG is empty, so persumabley is is displaying. So Flex is not shutting down? Yes, on valdhors suggestion to leave contentType at the default. Also, you have not set the resultFormat="e4x" which means you are working with a tree of dyna

[flexcoders] Re: Access Child Document Flex Components

2008-05-19 Thread Tim Hoff
:-) --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Hmm? Lets be clear on our language then. A "Flex Component" has two > states of being, the class, as implemented either in mxml or AS, and the > "instance", which is what you get when you do: > > > > Or: new

[flexcoders] Re: Access Child Document Flex Components

2008-05-19 Thread timgerr
OK I understand, I am using , I didnt know that I could then do this myComp.myMember Thanks for the help, I will try it out. Timgerr --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Hmm? Lets be clear on our language then. A "Flex Component" has two > states of

RE: [flexcoders] Grr, HTTPService doesn't work when it should

2008-05-19 Thread Beau Scott
A little more information on the fault than “shuts down hard” would be helpful. In any case, some webservers won’t let you POST to an XML document, try changing the HTTPService method to “GET”. Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Clinton D. Judy

[flexcoders] Flex2 - using same swf in a browser over 20 times crashes it...

2008-05-19 Thread vijay95052
I have a need to show a chart in an html table (one chart in a cell in every row of the table - it has over 40 rows) I am loading mychart.swf into the html and it all works fine. The problem is that when the number of charts are > 20 the browser crashes (both IE and FF) - out of memory. Since

Re: [flexcoders] talk from one swf to another

2008-05-19 Thread Luke Vanderfluit
Hi. Justin Fujita wrote: > It sounds like you're looking for Adobe's Data Management feature > (FDS/LCDS) which was not included in BlazeDS. The functionality of Data > Management's client-side data synchronization can however be simulated > using a messaging framework. Maybe. But it can be d

Re: [flexcoders] talk from one swf to another

2008-05-19 Thread Justin Fujita
This is what I was refering to when I said: "The functionality of Data Management's client-side data synchronization can however be simulated using a messaging framework." Similar to the collaboration dashboard seen in the BlazeDS examples. Best, Justin On Mon, May 19, 2008 at 5:01 PM, Luke V

RE: [flexcoders] Flex2 - using same swf in a browser over 20 times crashes it...

2008-05-19 Thread Tracy Spratt
That sounds very inefficient. Even using RSLs. Could you not use a single Flex App and put your charts in a TileList, with optimized item renderers? This way, flex can recycle the chart renderers as you scroll. You should get better performance and better memory management. I do not know

[flexcoders] Re: Flex2 - using same swf in a browser over 20 times crashes it...

2008-05-19 Thread ben.clinkinbeard
I would be surprised if loading 20+ SWFs with nothing in them didn't crash the browser. Can you not just replace the HTML table with a single SWF with a DataGrid? Ben --- In flexcoders@yahoogroups.com, "vijay95052" <[EMAIL PROTECTED]> wrote: > > I have a need to show a chart in an html table (on

[flexcoders] Re: Securely Interfacing Between Flex and Databases

2008-05-19 Thread kenny14390
Well the concern is that no matter how you choose to encrypt/decrypt information, a Flash movie can always be decompiled and your decryption method is caught with its pants down, allowing users to find out how to view sensitive material that they're not supposed to be looking at. So how are we supp

  1   2   >