Re: [flexcoders] unable to bind to property warnings binding to read-only properties

2008-05-21 Thread Josh McDonald
And you're not getting foo is not an IEventDispatcher? What's your DateRange class extend? It may already be an EventDispatcher. I left my testbed code at work, so I can't verify it for myself :) Most intriguing though. -J On Wed, May 21, 2008 at 3:54 PM, Richard Rodseth [EMAIL PROTECTED]

Re: [flexcoders] Problem editing custom object in DataGrid (itemEditEnd method, cannot get data)

2008-05-21 Thread bjorn -
There it was :-) .. thanks a lot Alex. Just in case anyone has the similar problems, my itemEditEnd listener looks like this now: /** * Called when the user has edited an answer */ private function onAnswerEditEnd(ev:DataGridEvent):void { var answerGrid:DataGrid =

[flexcoders] Re: flex3 sdk and eclipse 3.2

2008-05-21 Thread Mykola
Here is a sample Ant build file for a Flex application at http://mdzyuba.blogspot.com/2008/05/building-flex-project-with-ant.html with info on how to build and run the sample. Mykola --- In flexcoders@yahoogroups.com, Gustavo Duenas [EMAIL PROTECTED] wrote: Any idea about how can I use

Re: [flexcoders] Re: Securely Interfacing Between Flex and Databases

2008-05-21 Thread Tom Chiverton
On Tuesday 20 May 2008, David Pariente wrote: So u mean i can easily see the data of my bank transfers just using an SSL proxy, like WebScarab Yes, exactly. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP.

[flexcoders] Flexlib SuperTabBar, ButtonScrollingCanvas, and dataProvider

2008-05-21 Thread grizalum
I am attempting to create a Flex component based on a combination of Flexlib's SuperTabBar and ButtonScrollingCanvas components. The intended result is to be a component that looks and behaves similar to the tab bar, described in SuperTabNavigator_Sample.mxml as the example using just the

[flexcoders] 5,000 record dataset needs love

2008-05-21 Thread Tom Longson
Dear Super Smart Flex Developer Mailing List, We are currently having major issues processing a dataset that is essential for our skunkworks web site. The dataset is stored as JSON, consists of 5000 records, and has numerous strings. It is 1.4mb uncompressed / 85kb compressed. Processing the

Re: [flexcoders] Re: Image

2008-05-21 Thread Laith Juwaidah
But it should show on top of them :( On Wed, May 21, 2008 at 12:08 AM, Tim Hoff [EMAIL PROTECTED] wrote: So, make sure that the Image is on the lowest layer (added to a Canvas first); so that all of the other controls are on top of it. -TH --- In flexcoders@yahoogroups.com

[flexcoders] SWF buffering/loading complete event

2008-05-21 Thread Joy
Hi Guys, can anyone please help me, I want to make a call to a third party app, once an SWF (whether from an MXML/AS3 application)gets loaded completely on a browser. To be more clear: 1. Suppose an AS3 file calls another SWF (heavy) or FLV inside it. So I want to know, when the inside SWFs has

[flexcoders] Re: Handling html formatted tables in Flex

2008-05-21 Thread Craig
Jeff, Since you put it that way, I shall get to string parsing. I really do appreciate your input. Craig --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote: Too difficult Having a feed that has UI embedded in it, is 'less than optimum'. Ideally the data you'd

[flexcoders] Coldfusion 8, BlazeDS, Flex Builder 3

2008-05-21 Thread aliaspooryorik
Hi, I apologise if this is a simple question but it's got me stumped. I have a development server on my local network running CF8. I've installed BlazeDS (so that is shares the same JRun as CF). I've set up a destination in C:\CF8\wwwroot\WEB-INF\flex\message-config.xml. My web root (IIS) is on a

[flexcoders] A *Real* Testrunner for Adobe Flex/Air?

2008-05-21 Thread Justin Bozonier
Hi guys, I'm looking for a test runner that will run independently of the Flex/Air app to be tested. Does one already exist? FlexUnit requires that the FlexUnit UI be in my Flex project and that's no bueno. Another option I just thought of is to create a separate project for all of my unit

[flexcoders] Flex 3, Coldfusion wizard and internal build errors

2008-05-21 Thread neonblue
Long time CF coder; new to flex. I'm trying to get my first application working. I've got Flex3 and CF8 installed on a Win2k3 server (VMWare) using IIS. Coldfusion is verified and working. I got the RDS connection up and running and I can see all the data connections. In flex, I did the

Re: [flexcoders] 5,000 record dataset needs love

2008-05-21 Thread Tom Chiverton
On Wednesday 21 May 2008, Tom Longson wrote: 5. insert your solution here Use AMF remoting with your chosen backend. It's smaller and faster, and you get Objects in your Flex code by magic. -- Tom Chiverton This email is sent for and on

Re: [flexcoders] Flex 3, Coldfusion wizard and internal build errors

2008-05-21 Thread Tom Chiverton
On Wednesday 21 May 2008, neonblue wrote: java.io.IOException: The specified network name is no longer available at java.io.FileOutputStream.writeBytes(Native Method) at java.io.FileOutputStream.write(Unknown Source) Are you (trying to) use a remote network drive to develop on ?

Re: [flexcoders] SWF buffering/loading complete event

2008-05-21 Thread Manish Jethani
On 5/21/08, Joy [EMAIL PROTECTED] wrote: Guys, can anyone please help me, I want to make a call to a third party app, once an SWF (whether from an MXML/AS3 application)gets loaded completely on a browser. You can listen for the 'complete' event on the contentLoaderInfo property of the

Re: [flexcoders] 5,000 record dataset needs love

2008-05-21 Thread EECOLOR
This is a nice application where you can explore the different options http://www.jamesward.org/census/ At the top left you can read the guide me to see the different options. Greetz Erik On 5/21/08, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 21 May 2008, Tom Longson wrote: 5.

Re: [flexcoders] Image

2008-05-21 Thread Manish Jethani
On 5/20/08, Laith Juwaidah [EMAIL PROTECTED] wrote: I'm having a problem, I want to put an image on the application (which is a container for some windows and components), and I want it to just show the picture without it blocking the way for the user to interact with the other components

[flexcoders] scriptTimeLimit (max-execution-time) overridden by child SWFs

2008-05-21 Thread Manish Jethani
I've logged a bug here: https://bugs.adobe.com/jira/browse/FP-243 In short, if you have an application composed of many SWFs, the 'scriptTimeLimit' setting on the main SWF has no effect -- it is overridden by the 'scriptTimeLimit' of any child SWFs. We're loading lots of child SWFs in our

[flexcoders] Weird URLloader problem

2008-05-21 Thread proveren
I am loading an xml file into my flex app using URLloader and it works. I copy the applet in a subdirectory of where my swf was compiled and it still works. However, if I move the swf in the parent directory or in another non-subdirectory of where I compiled the swf, it doesn't work. What should

[flexcoders] Handling between 20.000 and 100.000 records

2008-05-21 Thread EECOLOR
Hello, I am in dilemma. A client wants to create selections from existing data. Normally I would do that within Flex itself. The datagrid can hold an insane amount of records with ease. Filtering however might not be very responsive. I think the following options are available: - Display all

Re: [flexcoders] Weird URLloader problem

2008-05-21 Thread Manish Jethani
On 5/21/08, proveren [EMAIL PROTECTED] wrote: However, if I move the swf in the parent directory or in another non-subdirectory of where I compiled the swf, it doesn't work. What do you mean by doesn't work? Is it giving you a security error? If you deploy the app on your server and place

[flexcoders] Irregular Polygon Area

2008-05-21 Thread rleuthold
Hi, Does somebody know of a class which calculates the area of an irregular polygon ? Thank's _rico

[flexcoders] Autherizing a computer using an AIR application

2008-05-21 Thread vipinck
Hi there, Does anyone knows a way to authorize a computer when an AIR application runs for the first time. For examples, I could do this with a Zinc application, where I can get the MAC address of the machine and send to a server for authorizing the machine. Can we read a system specific value or

[flexcoders] Re: SWF buffering/loading complete event

2008-05-21 Thread Joy
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/21/08, Joy [EMAIL PROTECTED] wrote: Guys, can anyone please help me, I want to make a call to a third party app, once an SWF (whether from an MXML/AS3 application)gets loaded completely on a browser.

Re: [flexcoders] Image

2008-05-21 Thread Laith Juwaidah
I'm just adding it as a child. I tried your way and now it doesn't even show the menu when it is right clicked. I'm starting to consider using them as background images, can I resize them and move them easily? can I put more than one image on top of each other? On Wed, May 21, 2008 at 1:19 PM,

Re: [flexcoders] Image

2008-05-21 Thread Laith Juwaidah
Wait! that won't work, they won't be on top then. On Wed, May 21, 2008 at 2:38 PM, Laith Juwaidah [EMAIL PROTECTED] wrote: I'm just adding it as a child. I tried your way and now it doesn't even show the menu when it is right clicked. I'm starting to consider using them as background

[flexcoders] Re: A *Real* Testrunner for Adobe Flex/Air?

2008-05-21 Thread Fearedpixel
Create a new project for the test runner, and add your applications source directory to its build path. --- In flexcoders@yahoogroups.com, Justin Bozonier [EMAIL PROTECTED] wrote: Hi guys, I'm looking for a test runner that will run independently of the Flex/Air app to be tested. Does one

Re: [flexcoders] Irregular Polygon Area

2008-05-21 Thread Jon Bradley
On May 21, 2008, at 7:10 AM, rleuthold wrote: Does somebody know of a class which calculates the area of an irregular polygon ? If it's not a self-intersecting polygon: 1/2 * ((x1+x2)(y1-y2)+(x2+x3)(y2-y3)+...+(xn+x1)(yn-y1)) The generalized method is basically: 1/2 * ( Sum from 0 to

[flexcoders] Re: suppress zeros in dataGrid

2008-05-21 Thread markgoldin_2000
Yes, I got it working, very nice, thanks. --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: It should be column.dataField Like I said, it was from memory :) -J On Wed, May 21, 2008 at 12:56 PM, markgoldin_2000 [EMAIL PROTECTED] wrote: column.fieldName

[flexcoders] Drilldown ideas

2008-05-21 Thread markgoldin_2000
If a user wants to drilldown into a dataGrid's cell what could have been the best approach? Popup windows? Other ideas? If popup it is, can I completely get rid of a blur affect when popup window is shown? Thanks for help.

[flexcoders] Flexbuilder locks up when saving CSS

2008-05-21 Thread jack_freud
I'm working on a project and have been having a thing happen where when I save a change to the CSS file I'm using, FB says it's rebuilding but never even gives a percentage, shows Not Responding in the title bar, and comes back many minutes later or not at all. Anyone have this experience, or

[flexcoders] Re: dataTipRenderer available for DataGrid?

2008-05-21 Thread djbrown_rotonews
I see where there's a ToolTipCreate event available, and I've used that in the past for custom tool tips over TextAreas etc.. I see the same event exposed for the DataGrid itself, but it doesn't appear to exist for the individual columns. How would I handle the situation where I wanted to

[flexcoders] Re: A *Real* Testrunner for Adobe Flex/Air?

2008-05-21 Thread actionscript_czar
I haven't gotten a chance to test it but you could take a look into dpUInt.  It is a unit and integration test suite created by the team at digital primates. The project page is at: http://code.google.com/p/dpuint/ --- In flexcoders@yahoogroups.com, Justin Bozonier [EMAIL PROTECTED] wrote: Hi

Re: [flexcoders] unable to bind to property warnings binding to read-only properties

2008-05-21 Thread Richard Rodseth
Nope. No warning. DateRange doesn't extend anything. I don't know which framework class generates the warning, but I did see the following comment in ChangeWatcher.getEvents() // If host is not IEventDispatcher, no events will be dispatched, // regardless of metadata.

RE: [flexcoders] Re: Handling html formatted tables in Flex

2008-05-21 Thread Battershall, Jeff
Claus, On the drive home I was arriving at the same conclusiion you did -if it was XHTML it's a piece of cake. Hopefully that's the case in this situation. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claus Wahlers Sent: Tuesday, May

RE: [flexcoders] Re: Securely Interfacing Between Flex and Databases

2008-05-21 Thread Battershall, Jeff
Yes, but we're talking on YOUR network where you have WebScarab or other such tool installed. It's not as though ALL your bank's transactions, regardless of intended recipient, are now visible to you. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] How to use WebServices in Flex 3?

2008-05-21 Thread flexawesome
Hi there, I am playing the WebServices in Flex3, on the top menu bar clicks data= import Web Sevice(WSDL), it creates coupe of as files for me, I have no idea how can I use them, do you know any good tutorials to teach user how to use WebServices? Thank you so much

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

2008-05-21 Thread Andriy Panas
FYI, iilsley, back in November 2006, Adobe Flex SDK Engineer Deepa Subramaniam had made a promise on Flexcoders mailing list that the access to Tree's property _dropData declared as 'mx_internal' in Flex 2.0.1 SDK will be upgraded to public in Flex 3 SDK release:

RE: [flexcoders] Re: Handling html formatted tables in Flex

2008-05-21 Thread Battershall, Jeff
Craig, See the note from Claus if you haven't already - he makes the important point that if the data is in XHTML you'll be able to conver the data into a format that could drive your datagrid very easily without string parsing. Is that the case? Jeff -Original Message- From:

[flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread Robert Csiki
FlexBuilder3 generates ActionScript code for you for both service and data model. The service class has a header with comments on how to utilize it. Good luck! I've found this generated code as being pretty buggy for complex web services, but if you're using simple ones, you might be luckier than

[flexcoders] How to avoid Image refresh?

2008-05-21 Thread Robert Csiki
I have a datagrid with objects. The item renderer contains an Image object that grabs the content via URL from a remote server. Whenever I scroll up and down, there are server calls to get the image content again. It slows down the application. How can I control the Image object to avoid this

[flexcoders] When are asynchronous events processed?

2008-05-21 Thread Paul Whitelock
When a response is received from a web service (for example), when is the listener code executed? The beginning of the next frame? I'm assuming that currently executing code is not suspended so that an asynchronous event can be handled, but I was curious as to exactly when asynchronous events are

[flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread flexawesome
Thanks for sharing the information. What about creating webservice by using own as code or mx:WebService. code in mxml file? any tutorials? Cheers --- In flexcoders@yahoogroups.com, Robert Csiki [EMAIL PROTECTED] wrote: FlexBuilder3 generates ActionScript code for you for both service

Re: [flexcoders] When are asynchronous events processed?

2008-05-21 Thread Manish Jethani
On Wed, May 21, 2008 at 7:48 PM, Paul Whitelock [EMAIL PROTECTED] wrote: When a response is received from a web service (for example), when is the listener code executed? The beginning of the next frame? I'm assuming that currently executing code is not suspended so that an asynchronous event

[flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread Robert Csiki
Sure, the FlexBuilder3's Help site contains plenty of information. It's also available online: http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_3.ht\ ml http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_3.h\ tml Robert --- In flexcoders@yahoogroups.com,

[flexcoders] Disable button if field is empty

2008-05-21 Thread mr_delphi_developer
I have this input field and button. mx:TextInput id=team_pin maxChars=4 displayAsPassword=true editable=true enabled=true width=55 / mx:Button label=Get Roster click=empRO.loadAll.send(); enabled=false id=GetRosterBtn/ I don't want the button enabled until the team_pin has 4 characters.

[flexcoders] Re: Drilldown ideas

2008-05-21 Thread mr_delphi_developer
--- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: If a user wants to drilldown into a dataGrid's cell what could have been the best approach? Popup windows? Other ideas? If popup it is, can I completely get rid of a blur affect when popup window is shown? Thanks

Re: [flexcoders] How to avoid Image refresh?

2008-05-21 Thread Manish Jethani
On Wed, May 21, 2008 at 7:46 PM, Robert Csiki [EMAIL PROTECTED] wrote: I have a datagrid with objects. The item renderer contains an Image object that grabs the content via URL from a remote server. Whenever I scroll up and down, there are server calls to get the image content again. It slows

Re: [flexcoders] Disable button if field is empty

2008-05-21 Thread Manish Jethani
On Wed, May 21, 2008 at 8:06 PM, mr_delphi_developer [EMAIL PROTECTED] wrote: I have this input field and button. mx:TextInput id=team_pin maxChars=4 displayAsPassword=true editable=true enabled=true width=55 / mx:Button label=Get Roster click=empRO.loadAll.send(); enabled=false

Re: [flexcoders] Resizable TextArea

2008-05-21 Thread Gordon Franke
i use this but the height is not 100% correct ;( mx:TextArea id=elementEdit width=100% change=elementEdit.height = elementEdit.textHeight/ Am Donnerstag, den 10.04.2008, 18:42 +0530 schrieb govind ram: I want to expand TextArea components height when the text in the TextArea is more than the

Re: [flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread Douglas Knudsen
buggy really? So far I've only used it once with a fairly complex set of .NET WS apis and it worked fine. With a quick tweak to a base file, you can tie it into a Cairngorm delgate class and bamm. DK On Wed, May 21, 2008 at 10:10 AM, Robert Csiki [EMAIL PROTECTED] wrote: FlexBuilder3

[flexcoders] Odd syntax error

2008-05-21 Thread Clinton D. Judy
I have this: mx:request xmlns= job created-at/created-at display-order/display-order ecms{ecmsTI.text}/ecms job-id/job-id name{nameTI.text}/name

[flexcoders] Re: unable to bind to property warnings binding to read-only properties

2008-05-21 Thread Doug Lowder
Yes, sorry for the confusion. That should have been: creationComplete=event.currentTarget.someProperty=foo.bar --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: We don't recommend putting curly braces around the values of event attributes like creationComplete... that

Re: [flexcoders] Image

2008-05-21 Thread Manish Jethani
On Wed, May 21, 2008 at 4:08 PM, Laith Juwaidah [EMAIL PROTECTED] wrote: I'm just adding it as a child. I tried your way and now it doesn't even show the menu when it is right clicked. You need to set mouseEnabled to false on the internal Loader object. The Image component uses a Loader

RES: [flexcoders] Resizable TextArea

2008-05-21 Thread Luciano Manerich Junior
Hi, cant you just bind to that property? mx:TextArea id=elementEdit width=100% height={elementEdit.textHeight}/ De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de Gordon Franke Enviada em: quinta-feira, 10 de abril de 2008 11:01 Para:

[flexcoders] Re: image factory threaded application

2008-05-21 Thread netdeep
Actually I am using BlazeDS with messaging. The problem is getting multiple images to snapshot. In practice when I send multiple charts to the client one after the other, only the last one gets drawn and the other messages seem to get overwritten before ever completing the snapshot

[flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread Robert Csiki
Well I prefer not to mess with the generated code, for the maintenance sake. Robert --- In flexcoders@yahoogroups.com, Douglas Knudsen [EMAIL PROTECTED] wrote: buggy really? So far I've only used it once with a fairly complex set of .NET WS apis and it worked fine. With a quick tweak to a

[flexcoders] Dynamic ruler

2008-05-21 Thread mihksoft
Can soomebody help me with an idea for a dynamic ruler like in the application from this link. http://www.goldwave.com/mqrelease.php 10x

[flexcoders] Re: Disable button if field is empty

2008-05-21 Thread mr_delphi_developer
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On Wed, May 21, 2008 at 8:06 PM, mr_delphi_developer [EMAIL PROTECTED] wrote: I have this input field and button. mx:TextInput id=team_pin maxChars=4 displayAsPassword=true editable=true enabled=true width=55 /

Re: [flexcoders] Image

2008-05-21 Thread Laith Juwaidah
I just did img.mouseEnabled = false; How do I access its internal Loader object? On Wed, May 21, 2008 at 6:54 PM, Manish Jethani [EMAIL PROTECTED] wrote: On Wed, May 21, 2008 at 4:08 PM, Laith Juwaidah [EMAIL PROTECTED]ljuwaidah%40gmail.com wrote: I'm just adding it as a child. I

[flexcoders] Re: Drilldown ideas

2008-05-21 Thread Doug Lowder
You can get rid of the popup window's blur effect by setting the modalTransparencyBlur style inherited from Panel. I think you'd set it to 0. HTH, Doug --- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: If a user wants to drilldown into a dataGrid's cell what could

[flexcoders] ScriptTimeOut Issue

2008-05-21 Thread Subeesh
Hi All, I am opening an html popup with a TextEditor using javascript from my flex application . When the user fill in the textarea and click the submit button in the Texteditor, javascript closes that window and returns the value back to the flex .( using FABridge ) . The issue is that if

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

2008-05-21 Thread Tom Chiverton
On Friday 16 May 2008, Muzak wrote: For now, they're mainly interested in /developers/ using FP10 for compatibility /testing/. grumble They should have made a debug version then... +1 You can grab a debug version of Flash Player 10 from here, apperently: Windows:

[flexcoders] Re: Handling html formatted tables in Flex

2008-05-21 Thread Subeesh
Hi , I came across a similar situation . I have used regular expressions to parse the html table string and disaplyed it using flex Grid component. Grid component is similar to HTML table . You can even extract attributes like span padding etc and apply that in Flex Grid. Take a look at this

[flexcoders] Re: Securely Interfacing Between Flex and Databases

2008-05-21 Thread Doug Lowder
Kenny, are you saying you want to implement security *within* your Flex app? I think you'd have serious security holes with that (your decompilation concern, for one). Typically security would be handled at the client-server level, by hosting your SWF on a server that has been configured to

[flexcoders] Re: Weird URLloader problem

2008-05-21 Thread proveren
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/21/08, proveren [EMAIL PROTECTED] wrote: However, if I move the swf in the parent directory or in another non-subdirectory of where I compiled the swf, it doesn't work. What do you mean by doesn't work? Is

[flexcoders] Re: How to avoid Image refresh?

2008-05-21 Thread Robert Csiki
Thanks for your reply. The browser does cache my images, but still server calls are made (by the Image object) whenever the object refresh is required (i.e. when Flex repaints the component). That's what I want to control, and the question was is Image able to do that or I have to write my own

[flexcoders] Re: How to avoid Image refresh?

2008-05-21 Thread Brian Raymes
You can always try Ely's SuperImage: http://www.quietlyscheming.com/blog/2007/01/23/some-thoughts-on-doubt-on-flex-as-the-best-option-orhow-i-made-my-flex-images-stop-dancing/ --- In flexcoders@yahoogroups.com, Robert Csiki [EMAIL PROTECTED] wrote: I have a datagrid with objects. The item

[flexcoders] Re: When are asynchronous events processed?

2008-05-21 Thread Paul Whitelock
Thanks for the explanation. I found the following in Colin Moock's book and assume that asynchronous events are handled during step 2: 1.Execute Frame 1's frame script. 2.Wait until the next scheduled frame-render time. While waiting, if any events are triggered, execute all registered event

[flexcoders] Dynamic HTTPService Request

2008-05-21 Thread kenny14390
If I have a variable number of things to POST to a PHP page using HTTPService, I need to use mx:request to get those things over. Is there a way to do this dynamically? Here's the static way: mx:HTTPService ..mx:request var1value/var1 var2value/var2 varNvalue/varN ../mx:request

[flexcoders] Flex application - Keyboard handling

2008-05-21 Thread Chandru
I have a flex application that loads and displays a flash swf. This flex component is then embedded in a web page using SWFObject 2.0. The requirement I have is to prevent the up/down/left/right arrow from being handled by the browser i.e. if the flash content results in a vertical scrollbar being

[flexcoders] popupbutton direction

2008-05-21 Thread sudha_bsb
Hi I have a popup Button which displays a popup window when clicked. The popup window comes always below the popup button. I want the popup window to come above the pop up button. How can we achieve this. I don't want the arrow to be shown in the popup button and trigger the show and hide of

[flexcoders] RemoteObject connections over HTTPS fails..

2008-05-21 Thread sk_acura
HI All, We have a BalzeDS based web app deployed on tomcat working fine when we use HTTP. How ever when we try to expose our web app over extranet the swf files that tries to connect to the Remote Object gets timed out.. Here are the channels that are configured in the services-config.xml

[flexcoders] Re: DateField disabledRanges

2008-05-21 Thread David C. Moody
Yes it did, but then FlexBuilder gave errors about it won't be able to notice changes to yesterday. So I tried {yesterday} that took away the error, but both times it disabled today and before. Not yesterday and before. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote:

[flexcoders] Re: Dynamic HTTPService Request

2008-05-21 Thread twcrone70
Try doing your HTTPService request in ActionScript instead. e.g. var params:Object = new Object(); params.parameter1 = value; params.parameter2 = value2; var myService:HTTPService = new HTTPService( /myuri ); var at:AsycToken = myService.send( params ); at.addResponder( new Responder(

[flexcoders] Re: Help me understand the datagrid

2008-05-21 Thread bredwards358
Forgive the lateness of my response, but thanks all, I solved my problem, I didn't need to do item editing inside the datagrid at all, I simply needed to just be able to edit an item. I simply made a state of the window which contains a form populated with the necessary information. But what I

[flexcoders] clustered BarChart how to make one of them 100%

2008-05-21 Thread alex
I have a clustered BarChart , I want one of the bars in each group to have the maximum height of chart and the rest of bars are relative to it. Is it possible in the current implementation of BarChart ? Thank you .

[flexcoders] Re: DateField disabledRanges

2008-05-21 Thread David C. Moody
After some testing I figured it out. I just put it in my init() function, which is called on creationComplete of the module as such: yesterday.setTime(today.getTime() - (1*millisecondsPerDay)); ckProcDate.disabledRanges = [{rangeEnd: yesterday }]; And that works. --- In

[flexcoders] Flash-AIR-PHP drag and drop Hybrid

2008-05-21 Thread Greg Hess
Hi Folks, The application I am working on has a requirement to support drag and drop, from client to server. Currently, we can only support this by using a signed Java Applet that provides the drop box that allows the EU to drop files from the local file system. As a result the files are

Re: [flexcoders] Image

2008-05-21 Thread Manish Jethani
On Wed, May 21, 2008 at 9:02 PM, Laith Juwaidah [EMAIL PROTECTED] wrote: I just did img.mouseEnabled = false; How do I access its internal Loader object? There's no API for accessing the Loader object. So you have to go through the mx_internal 'contentHolder' property, I believe.

Re: [flexcoders] Image

2008-05-21 Thread Laith Juwaidah
I haven't messed with mx_internal, can you please give me an example or something? Thanks On Wed, May 21, 2008 at 11:18 PM, Manish Jethani [EMAIL PROTECTED] wrote: On Wed, May 21, 2008 at 9:02 PM, Laith Juwaidah [EMAIL PROTECTED]ljuwaidah%40gmail.com wrote: I just did img.mouseEnabled =

RE: [flexcoders] 5,000 record dataset needs love

2008-05-21 Thread Tracy Spratt
Are you certain the bottleneck is the processing as opposed to the rendering? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Longson Sent: Tuesday, May 20, 2008 10:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

Re: [flexcoders] Image

2008-05-21 Thread Manish Jethani
On Thu, May 22, 2008 at 12:50 AM, Laith Juwaidah [EMAIL PROTECTED] wrote: I haven't messed with mx_internal, can you please give me an example or something? import flash.display.Loader; import mx.controls.Image; import mx.core.mx_internal; var image:Image = theImageObject; var loader:Loader =

Re: [flexcoders] Re: When are asynchronous events processed?

2008-05-21 Thread Manish Jethani
On Wed, May 21, 2008 at 11:02 PM, Paul Whitelock [EMAIL PROTECTED] wrote: 2.Wait until the next scheduled frame-render time. While waiting, if any events are triggered, execute all registered event listeners. Yes, so in your while waiting time, if you make a network call -- say you download an

Re: [flexcoders] Re: How to avoid Image refresh?

2008-05-21 Thread Manish Jethani
On Wed, May 21, 2008 at 10:56 PM, Robert Csiki [EMAIL PROTECTED] wrote: Thanks for your reply. The browser does cache my images, but still server calls are made (by the Image object) whenever the object refresh is required (i.e. when Flex repaints the component). That's what I want to control,

RE: [flexcoders] Flash-AIR-PHP drag and drop Hybrid

2008-05-21 Thread Battershall, Jeff
AIR gives you a lot of tools to accomplish this, but I don't see how the Flash app would fit into the equation. With the FIleSystemTree control you can browse and select files and drag them to another component which initiates the file upload process - all within AIR. If you want to show upload

Re: [flexcoders] Re: Weird URLloader problem

2008-05-21 Thread Manish Jethani
On Wed, May 21, 2008 at 10:03 PM, proveren [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/21/08, proveren [EMAIL PROTECTED] wrote: However, if I move the swf in the parent directory or in another non-subdirectory of where I

RE: [flexcoders] Re: How to use WebServices in Flex 3?

2008-05-21 Thread Tracy Spratt
To be clear, in Flex you will be 'consuming a web service, not creating one. Consuming a simple webservice in flex is pretty easy, the examples in the docs are pretty clear and there are other examples around (I have on on www.cflex.net http://www.cflex.net/ ). One benefit of the generated

RE: [flexcoders] 5,000 record dataset needs love

2008-05-21 Thread Battershall, Jeff
Is there a reason why the entire dataset is needed all at once? Some sort of pagination scheme would help. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, May 21, 2008 3:40 PM To: flexcoders@yahoogroups.com

[flexcoders] SWF Cache

2008-05-21 Thread Don Kerr
How can I prevent my Flex app swf from being cached? When I release a new version, I want to ensure the user is using the latest swf. Thanks, Don

[flexcoders] Re: Odd syntax error

2008-05-21 Thread Kevin
It looks like it doesn't like the dashes in your parameters. Everyone seems to be moving away from dashes to underscores and camelcase (e.g. - 'display_order' and 'displayOrder'). If you have to have dashes, then you'll most likely need to go to a full AS3 request object (no mxml): var urlVar :

[flexcoders] Re: Weird URLloader problem

2008-05-21 Thread Kevin Fauth
If you're just loading the SWF from the hard drive (double-clicking it), then you need to tell the Flash Player that you'll allow the flash file to run and access the net or external files. Go to: http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html And do

[flexcoders] How do I use URLLoader?

2008-05-21 Thread wild.katana
I have this code: var myXML:XML = new XML(); var XML_URL:String = http://gdata.youtube.com/feeds/api/videos?vq=football+-soccerorderby=publishedstart-index=11max-results=10;; var myXMLURL:URLRequest = new URLRequest(XML_URL); var myLoader:URLLoader = new URLLoader(myXMLURL);

Re: [flexcoders] 5,000 record dataset needs love

2008-05-21 Thread Doug McCune
Figure out where the real bottleneck is. I just did a demo app that loads over 35,000 records from an uncompressed CSV file (over 2 meg). It's all doable, you just have to figure out which part is slow. You basically have these possibilities in terms of what's taking the most time: 1. Loading

Re: [flexcoders] How do I use URLLoader?

2008-05-21 Thread Charlie Griefer
http://livedocs.adobe.com/flex/3/langref/flash/net/URLLoader.html import flash.net.*; I'm pretty new to Flex as well, but having the docs bookmarked has come in very handy on a number of ocassions so far :) http://livedocs.adobe.com/flex/3/langref/index.html On Wed, May 21, 2008 at 1:37 PM,

RE: [flexcoders] How do I use URLLoader?

2008-05-21 Thread Tracy Spratt
myLoader needs to be an instance variable instead of a local one. Maybe the sencond will go away when the xmlLoaded function can compile. Consider HTTPService instead, it is a bit simpler to use. Tracy From: flexcoders@yahoogroups.com

[flexcoders] Re: How do I use URLLoader?

2008-05-21 Thread wild.katana
Hmm, I tried that but it didn't work... I previously tried these as well but they didn't do it, nor did the import flash.net.* ... hmmm import flash.net.URLLoader; import flash.net.URLRequest;

[flexcoders] Flex automation - AutoQuick sample application

2008-05-21 Thread twcrone70
Trying to get the AutoQuick automation sample application running on my own and for some reason the automationManager is always null. Line 355 in the AQAdapter. Anyone know why this might not be getting initialized properly? Feel like I followed the instructions pretty well...

[flexcoders] LabelFunction

2008-05-21 Thread markgoldin_2000
Would it be possible to use that function to change cell's font color based on a numeric value in the cell? Thanks

RE: [flexcoders] Re: Is it possible to invoke a AMF call just before browser close?

2008-05-21 Thread Seth Hodgson
Also, watch out for the fact that BlazeDS automatically resets the session when it is invalidated, so if you do session.invalidate() within a remoteobject method on the server the current session will be invalidated but a new, empty session is automatically regenerated (i.e.

  1   2   >