RE: [flexcoders] Flex 2 Loader in Flex 3

2009-05-31 Thread ajayashish
I have tried that... but after that it gives a lot more compilation errors... if possible can u try the mxmls i have attached.. Alex Harui wrote: > > It is possible we eliminated the flash.display components from the mx: > namespace in Flex3. Maybe you should just use SWFLoader there instead

Re: [flexcoders] FilterFunction creating duplicate items in the list

2009-05-31 Thread Rohit Sharma
Hi Srinivas, I tried using creating a different data provider from the roomlist and applying filter functions on that. And then assigning the filtered dataprovider to the roomlist. But still I am seeing the issue. Can you provide some code snippets for what you mean? Thanks,

RE: [flexcoders] Flex 2 Loader in Flex 3

2009-05-31 Thread Alex Harui
It is possible we eliminated the flash.display components from the mx: namespace in Flex3. Maybe you should just use SWFLoader there instead. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flex

[flexcoders] Sorting in AdvancedDataGrid happens only once, please help

2009-05-31 Thread yossi.baram
Hi guys, My AdvancedDataGrid shows a tree, I set sortableColumns="true" sortExpertMode="true", But when I click on one of the columns, they are sorted in descending way, when I click again - Nothing happens, Why Why doesnt the default sorting work in my AdvancedDataGrid? Do I need a custom s

Re: [flexcoders] Error 2044 - 2038 file io exceptions..

2009-05-31 Thread [p e r c e p t i c o n]
Yes...in addition to that..it'll only perform the upload if I have a proxy running like Charles...is this problem related to the debug version of the player? [-percy-] -Original Message- From: g...@alchemy.com.au Date: Mon, 01 Jun 2009 15:15:12 To: Subject: Re: [flexcoders] Error 2044

[flexcoders] Binding question

2009-05-31 Thread steve horvath
I am trying to bind the checkbox selected property as written below. The value of selected should be triggered whenever currentPresentation changes or whenever albumIncluded(data) returns a different value. The checkbox is in a List itemRenderer component. ItemRenderer

Re: [flexcoders] Error 2044 - 2038 file io exceptions..

2009-05-31 Thread guy
Have you put in place the necessary crossdomain.xml files? Quoting "[p e r c e p t i c o n]" : > I've looked all over the net and can't find a solution to this > problem...seriously...why did I begin getting this error when it worked > before...no i can't make any progress whatsoever...does anyon

Re: [flexcoders] FilterFunction creating duplicate items in the list

2009-05-31 Thread Srinivas Sandur Madhu Murthy
Longtime back I did face similar issue. I probably believe, you have binded the array collection with data grid or list directly & applying filter on this binded array collection. If it is true, then trying not binding them using "{}", use flags and commitProperties() method and apply filte

[flexcoders] extract data from advancedDataGrid. Please help.

2009-05-31 Thread scorptique
I know http://forums.adobe.com/thread/131416 has the answer inside but i dont understand what it means (hierarchy and cursor thingies) and how to use it. I dont know where to go after "var itemFromCursor:Object = cursor.current;". Only manage to understand until the getting selected index, and I

[flexcoders] Cairngorm 3 (extension)

2009-05-31 Thread mhagmajer
Hi, Please take a while to review my cotribution to Cairngorm that deals with GUI responsiveness issue. I have written an article to introduce the changes: http://students.mimuw.edu.pl/~mhagmajer/cairngorm3/ Waiting for feedback. Kind regards, Marcin Hagmajer

[flexcoders] Error 2044 - 2038 file io exceptions..

2009-05-31 Thread [p e r c e p t i c o n]
I've looked all over the net and can't find a solution to this problem...seriously...why did I begin getting this error when it worked before...no i can't make any progress whatsoever...does anyone have any insight into why i can't do a simple file upload? i'm running the app from a localhost serve

[flexcoders] How to make FTE text selectable and editable?

2009-05-31 Thread Manish Jethani
I have this program (Flash Player 10): var elementFormat:ElementFormat = new ElementFormat(); elementFormat.fontSize = 48; var textElement:TextElement = new TextElement("Hello, world", elementFormat) var textBlock:TextBlock = new TextBlock(textElemen

[flexcoders] FileReference RemoteObject

2009-05-31 Thread [p e r c e p t i c o n]
Hi Flexy People. I'm trying to send the file name and filedata to a service using RemoteObject...can anyone tell me how to access the files data to pass to my service... thanks percy

Re: [flexcoders] Font types getting Over written

2009-05-31 Thread Guy Morton
That sounds like a caching issue to me. Things don't generally fail "sometimes". On 01/06/2009, at 3:14 AM, sony antony wrote: Hi there.. I had a problem with font types in ma application I am using both "Plain" and "Caps" types of the same font. Formerly only the "Plain" was there. Now

Re: [flexcoders] Re: HTTPService.send(params) and nothing happens?

2009-05-31 Thread Guy Morton
send(params) will do either a GET or a POST to the URL with the params sent as name=value pairs either as a query string (GET) or in the body of the request (POST). By default it uses GET. The form you post to has to look for the variables in the right place. Are you able to see what URL is

[flexcoders] Re: HTTPService.send(params) and nothing happens?

2009-05-31 Thread ciminop
I tried that and the page does the same thing, which is why I tried the HTML calling the login script. I thought the problem on the http://www.postgradmed.com/index.php?page=login is that there are multiple forms in the page. But if you paste the url into my application in the URL text input, y

[flexcoders] Font types getting Over written

2009-05-31 Thread sony antony
Hi there..   I had a problem with font types in ma application   I am using both "Plain" and "Caps" types of the same font.   Formerly only the "Plain" was there. Now when I used "Caps" along with.   At times it's working fine, but, sometimes  when I clean the project, all the "Plain" types of th

[flexcoders] Re: FilterFunction creating duplicate items in the list

2009-05-31 Thread Tim Hoff
Sounds like your itemRenderer might not be clearing out old data correctly. Check out Question 2 in Amy's FAQ: http://www.magnoliamultimedia.com/flex_examples/Amys_Flex_FAQ.pdf -TH --- In flexcoders@yahoogroups.com, Rohit Shar

[flexcoders] FilterFunction creating duplicate items in the list

2009-05-31 Thread Rohit Sharma
Hi All, I am stuck up with this problem. Please provide some insight into it. " I have a list component which shows all the game rooms currently existing. As soon as some property of the room changes, I update the corresponding item in the dataprovider using setItemAt. (I typecast datapro

Re: [flexcoders] HTTPService.send(params) and nothing happens?

2009-05-31 Thread Pedro Sena
Your URL should point to http://www.postgradmed.com/index.php?page=login instead of http://www.translunardesigns.com/postgradmed/testlogin.html You need to point to the same page/script that the html does. HTH On Sun, May 31, 2009 at 10:53 AM, ciminop wrote: > > > Not exactly nothing, I get th

[flexcoders] HTTPService.send(params) and nothing happens?

2009-05-31 Thread ciminop
Not exactly nothing, I get the contents of the URL that I'm trying to send the data to, and have it submit a form. I created a simple login form which logs into a remote site. If you submit it, wven with no data or incorrect data it will take you to the remote site. Here's the form: http://www