[flexcoders] round only two corners of the text input component

2008-09-05 Thread samata
Hi, I want to round only two corners of the text input component(upper- left and upper-right)could some1 help me plz??? Thanx, sam

[flexcoders] 3.1/3.0.1 Update very confused?

2008-09-05 Thread reflexactions
I saw there weere threads about a 3.1 update last week so decide today was a time to try it. From FB Standalone I ran Seach for FB Updates but that got me nothing (actually when I checked preferences it seems that just checks for Adobe Reader updates and has no way to add any other Adobe app

RE: [flexcoders] Re: Horrible performance problems...Need some ideas on improving

2008-09-05 Thread Gregor Kiddie
And if your data was pre-ordered, you could even use page demand loading Not fantastically, the ADG doesn't deal with paged data at all well. The code in HierarchicalCollecitonView tries to count the entire dataprovider, so you end up either having to load up the entire data set, or adding

[flexcoders] how to give focus to a new browser window

2008-09-05 Thread Andrew Wetmore
Hi: In my AIR project I need to pop a browser window and give it focus. The current code is: private function launchAFile():void{ var theURL:String = resourceContentsList.selectedItem.path; navigateToURL(new URLRequest(theURL)); } Is there a way to give that new window focus? At the moment,

Re: [flexcoders] how to give focus to a new browser window

2008-09-05 Thread Ian M. Jones
Have you tried the following? navigateToURL(new URLRequest(theURL), _blank); Ian IMiJ Software http://www.imijsoft.com http://www.ianmjones.net (blog) On 5 Sep 2008, at 09:42, Andrew Wetmore wrote: Hi: In my AIR project I need to pop a browser

[flexcoders] What wrong ? CtrlLeft and Left

2008-09-05 Thread itdanny2002
System can detect MoveRight() but not Control Key ! this.addEventListener(KeyboardEvent.KEY_DOWN, fxKeyDn, true); private function fxKeyDn(evt:KeyboardEvent):void{ switch (evt.keyCode){ case Keyboard.RIGHT: evt.stopImmediatePropagation(); if (evt.ctrlKey) {

Re: [flexcoders] round only two corners of the text input component

2008-09-05 Thread Tom Chiverton
On Friday 05 Sep 2008, samata wrote: I want to round only two corners of the text input component(upper- left and upper-right)could some1 help me plz??? http://www.wabysabi.com/flex/enhancedbuttonskin/ -- Tom Chiverton This email

[flexcoders] Re: Got Error #2032: Stream Error invoking web service for IE6 and IE7

2008-09-05 Thread whg733279
so any solution ? I've same problem too --- In flexcoders@yahoogroups.com, Douglas Knudsen [EMAIL PROTECTED] wrote: welcome to 2032 hell :) as you should have run across, this is a generic error thrown when th ebrowser says there is something wrong, but the browser does not tell FP what

[flexcoders] setting up development

2008-09-05 Thread niklas wörmann
Hi! I am trying to get up to speed with Flex development but I am sure I am doing things awkwardly, first of all; How would you set up developing a Flex-from-flash component ? the way I do it is to do all the development in Flash, using the wonderfully crafted code editor in Flash, exporting the

[flexcoders] Re: What wrong ? CtrlLeft and Left

2008-09-05 Thread itdanny2002
I found that my code can work in Ctrl-Up Up Ctrl-Dn Dn but not Ctrl-Left Left Ctrl-Right Right

[flexcoders] Reg:Data Tranfer

2008-09-05 Thread vidhuparthi
To transfer data between Flex and Java, Which would be better, either Http-Service or Remote Object? Pls help me, its urgent.. Thanks in advance.

Re: [flexcoders] Reg:Data Tranfer

2008-09-05 Thread Tom Chiverton
On Friday 05 Sep 2008, vidhuparthi wrote: To transfer data between Flex and Java, Which would be better, either Http-Service or Remote Object? RO will normally be a smaller packet size. -- Tom Chiverton This email is sent for and on

[flexcoders] Re: how to give focus to a new browser window

2008-09-05 Thread Andrew Wetmore
I will try that right now. Will be back weeping in a few minutes if it doesn't work, of course. Thanks! a --- In flexcoders@yahoogroups.com, Ian M. Jones [EMAIL PROTECTED] wrote: Have you tried the following? navigateToURL(new URLRequest(theURL), _blank); Ian

[flexcoders] Re: how to give focus to a new browser window

2008-09-05 Thread Andrew Wetmore
As it turns out, I already have that in use in a couple of places, and it does not give focus to the new window in tabbed browser systems. Seems to be okay if you don't already have a browser window open, or if you do not use tabbed browser windows. Any other thoughts? a --- In

Re: [flexcoders] Reg:Data Tranfer

2008-09-05 Thread raj balaji
HTTP Service is the better one,,, compare to Remote Object - Original Message From: vidhuparthi [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, 5 September, 2008 4:05:07 PM Subject: [flexcoders] Reg:Data Tranfer To transfer data between Flex and Java, Which would be

Re: [flexcoders] Reg:Data Tranfer

2008-09-05 Thread Tom Chiverton
On Friday 05 Sep 2008, raj balaji wrote: HTTP Service is the better one Why ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales

Re: [flexcoders] Reg:Data Tranfer

2008-09-05 Thread raj balaji
according to the Webserver it will be differ. If we use webORB technology RemoteObject will be better., else httpService when compare to HTTPService RemoteObject will be faster. - Original Message From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, 5

Re: [flexcoders] clipContent doesn't always clip content

2008-09-05 Thread Michael Schmalle
Hi Guy, Are you actually measuring the graphics that you draw (in a sub component, the child of the canvas)? Is there a possibility that canvas is not knowing if the graphics are extending passed what it THINKS is the measured width and height? Mike On Thu, Sep 4, 2008 at 7:43 PM, Guy Morton

[flexcoders] Extends vs Implement EventDispatcher

2008-09-05 Thread reflexactions
Is there a performance difference between having a class extend EventDispatcher vs implementing IEventDispatcher. Reason for the question is I have a class which currently extends EventDispatcher and now it needs to extend another class that is not an EventDispatcher. This will get properly

[flexcoders] Re: Hiding a row in an AdvancedDataGrid

2008-09-05 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Well, you hide a row by removing it from the dataProvider. There is no direct relationship between a DG row and a dataProvider item. Or you can use a filterFunction, which doesn't remove the row, but makes it

[flexcoders] Re: Streaming Video to Flex

2008-09-05 Thread nathanpdaniel
You can attach a camera to Flex and stream video - I'm sure your camera is quite a bit more sophisticated than your typical webcam though Livedocs: http://livedocs.adobe.com/flex/3/html/help.html? content=Working_with_Video_18.html Hope this helps! :D --- In flexcoders@yahoogroups.com, Phil

[flexcoders] Re: Help with runtime shared libraries

2008-09-05 Thread nathanpdaniel
I had to add a MIME type to my server to be able to use the SWZ. I can't recall exactly what it is but the actual mime type was the same for SWZ as it was for SWF. Otherwise my server itself didn't know how to serve the file and it would roll over to the SWF. As for your first question, how

[flexcoders] Re: [ann] Data Management for Flex and PHP

2008-09-05 Thread artur_desig2dev
WOW! excellent..sooo glad to see this is moving along.. cant wait for the Data SYNC feature! (do you think that be ready for will happen in 2008? ) thanks

Re: [flexcoders] foreign keys in value objects

2008-09-05 Thread Derrick Anderson
i get it, thanks doug! On Wed, Sep 3, 2008 at 10:49 AM, Douglas Knudsen [EMAIL PROTECTED]wrote: I suppose it depends. Bet you never heard that answer before! IMHO, if you are just displaying data in a DG or something, just use some XML and go for it. If you need to actually interact with

Re: [flexcoders] Re: how to give focus to a new browser window

2008-09-05 Thread Ian M. Jones
Maybe minimize the application if it's still the front most application, possibly after showing an alert to say what you're up to? Or maybe just throw up a dialog to say you've opened up a browser window, again maybe only if you're still front most? Just some ideas. Ian On 5 Sep 2008,

Re: [flexcoders] clipContent doesn't always clip content

2008-09-05 Thread Guy Morton
Hi Mike I know for sure that the graphics are being drawn outside the enclosing canvas, because the child canvas is drawing x values 0 and these aren't being clipped but are visible outside the map area. Guy On 05/09/2008, at 9:51 PM, Michael Schmalle wrote: Hi Guy, Are you actually

[flexcoders] noob question, css to swf, stylemanager

2008-09-05 Thread dsds99
by accident I posted on flexcomponents* I saw a tutorial online, yet I can't make it work...@@ My css: /** ChangeBG.css **/ Application{ background-alpha:0.1; background-image: Embed(source=water.jpg); } All my files are in the src package and then I just run the option Compile css to swf. I

Re: [flexcoders] Reg:Data Tranfer

2008-09-05 Thread Tom Chiverton
On Friday 05 Sep 2008, raj balaji wrote: according to the Webserver it will be differ. If we use webORB technology RemoteObject will be better., else httpService when compare to HTTPService RemoteObject will be faster. The OP mentions Java, so BlazeDS is the obvious answer here. -- Tom

Re: [flexcoders] [ann] Data Management for Flex and PHP

2008-09-05 Thread Juan José Díaz
Hi Mark, Thank you! im already using v3.0. I wonder if new version of this data management will be the same as LCDS. How is it interacting with database? is there any docs about these process? thank you again. Juan. On Thu, Sep 4, 2008 at 5:20 PM, Mark Piller [EMAIL PROTECTED]wrote: Hey

Re: [flexcoders] Reg:Data Tranfer

2008-09-05 Thread raj balaji
Okay no issues... - Original Message From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, 5 September, 2008 7:05:08 PM Subject: Re: [flexcoders] Reg:Data Tranfer On Friday 05 Sep 2008, raj balaji wrote: according to the Webserver it will be differ. If

Re: [flexcoders] noob question, css to swf, stylemanager

2008-09-05 Thread Tom Chiverton
On Friday 05 Sep 2008, dsds99 wrote: So, now in my creationComplete function. I have StyleManager.loadStyleDeclarations( 'ChangeBG.swf',true ,true); Does the load go OK ? What does the web server log say ? Did you attach success and error handlers to the load event ? -- Tom Chiverton

Re: [flexcoders] clipContent doesn't always clip content

2008-09-05 Thread Danny Gold
Does clipContent clip the Graphics object or just DisplayObject children? On Fri, Sep 5, 2008 at 8:37 AM, Guy Morton [EMAIL PROTECTED] wrote: Hi Mike I know for sure that the graphics are being drawn outside the enclosing canvas, because the child canvas is drawing x values 0 and these

Re: [flexcoders] Reg:Data Tranfer

2008-09-05 Thread Douglas Knudsen
check the cowboy's app at http://www.jamesward.com/census/ for some comparisons Besides speed, consider other angles as well. Interop, dev time, etc DK On Fri, Sep 5, 2008 at 10:22 AM, raj balaji [EMAIL PROTECTED] wrote: Okay no issues... - Original Message From: Tom Chiverton

[flexcoders] Re: Streaming Video to Flex

2008-09-05 Thread Phil Heinz
Thanks Nathan. Problem is, camera is not attached to computer with the Flex app. I want one of 10 Flex apps around the Intranet to be able to attach to any camera's stream, and I don't want to use FMS. I have looked high and low and can't find a camera that puts out FLV. And from what I gather

Re: [flexcoders] noob question, css to swf, stylemanager

2008-09-05 Thread Sherif Abdou
Your not actually calling it are you? cause I tested it out and It works fine, ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=library:adobe/flex/halo xmlns=http://ns.adobe.com/mxml/2009; xmlns:ns=library:adobe/flex/gumbo xmlns:local=* creationComplete=initApp() Script ![CDATA[

[flexcoders] Switching between Cameras in Flex

2008-09-05 Thread flashalisious
Ok so I am building a Flex app that is using the Camera Class to show the user in a VideoDisplay using whatever camera that is attached to the users computer. What I would like to do is allow the user to switch between more than one camera if they have more than one hooked up. I know the user can

[flexcoders] Memory Thrashing during PRINT operations.

2008-09-05 Thread steve_kellogg_davita
Hello, I'm running into some trouble that I hope you guys can offer some insight on. When using FlexPrintJob to print a document with multiple pages (typically, anything more than 2 or so), I'm seeing a bunch of trace messages that APPEAR to suggest that objects in memory are being

Re: [flexcoders] noob question, css to swf, stylemanager

2008-09-05 Thread Douglas Knudsen
you can listen for failures, eh? //load styles var e:IEventDispatcher; e = StyleManager.loadStyleDeclarations('my.swf',true); e.addEventListener(StyleEvent.COMPLETE, onUpdateStylesComplete); e.addEventListener(StyleEvent.ERROR, onStyleEventError );

Re: [flexcoders] clipContent doesn't always clip content

2008-09-05 Thread Doug McCune
Guy, your inner cnavas takes up 100% width, so as far as yourouter canvas knows, it doesn't need to clip the children. clipContent doesn't force clipping, it simply turns it on if needed, and the Canvas determines if it needs clipping based on whether any of the children are placed outside of the

Re: [flexcoders] clipContent doesn't always clip content

2008-09-05 Thread Doug McCune
sorry, first part of my message wasn't really applicable, since you were trying to use the inner canvas for clipping, not the outer, but the code should work OK. On Fri, Sep 5, 2008 at 8:51 AM, Doug McCune [EMAIL PROTECTED] wrote: Guy, your inner cnavas takes up 100% width, so as far as

Re: [flexcoders] Extends vs Implement EventDispatcher

2008-09-05 Thread Maciek Sakrejda
Unless Flex is doing something really crazy, that should be fine. The only caveat is that, of course, you'll have to implement all the IEventDispatcher methods yourself, but you can just pass these off to a nested EventDispatcher object. In theory, you've got an additional function call, but in

Re: [flexcoders] Extends vs Implement EventDispatcher

2008-09-05 Thread Michael Schmalle
In theory, you've got an additional function call, but in practice, that will not make a difference. Do you? I mean he does not have to over head (what little it may be) of the super classes methods and calls. I'm sure this is a trivial answer of it doesn't matter. :) Mike On Fri, Sep 5, 2008

[flexcoders] Re: noob question, css to swf, stylemanager

2008-09-05 Thread dsds99
The complete event does trigger I do see the alpha change from my css. But the background image still remains the same Thanks, for pointing out the StyleManager events --- In flexcoders@yahoogroups.com, Douglas Knudsen [EMAIL PROTECTED] wrote: you can listen for failures, eh? //load

Re: [flexcoders] 3.1/3.0.1 Update very confused?

2008-09-05 Thread Matt Chotin
Flex SDK is named 3.1, Flex Builder is 3.0.1. Sorry, we know it's confusing but we're not allowed to name Flex Builder 3.1 as well because of internal Adobe rules (my life is complicated). You want 3.0.1 for Builder, available here: http://www.adobe.com/support/flex/downloads_updaters.html

[flexcoders] Re: Hiding a row in an AdvancedDataGrid

2008-09-05 Thread whatabrain
When I try this, the filter function isn't called for top-level items. It's called for all child nodes in the dataProvider, but not for the parent node. Any idea why this might be, or do you need a code sample? --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote:

Re: [flexcoders] Extends vs Implement EventDispatcher

2008-09-05 Thread Maciek Sakrejda
True, but I was under the impression that a virtual method lookup was cheaper than a whole new method call. Not to mention the bytes and bytes of overhead from having to keep another object (the nested EventDispatcher) on the heap ;). I think Michael A. Jackson said it best: The First Rule of

[flexcoders] Re: Hiding a row in an AdvancedDataGrid

2008-09-05 Thread Tim Hoff
Interesting, I would think that the opposite would occur; if you're using something like: return item.myfield==whatever;. Sure, post your filterFunction; as well as a basic idea of the collection's structure. -TH --- In flexcoders@yahoogroups.com, whatabrain [EMAIL PROTECTED] wrote: When I

[flexcoders] Re: Hiding a row in an AdvancedDataGrid

2008-09-05 Thread whatabrain
My filter function is really simple. Something along these lines: private function filterFunc(item:Object):Boolean { return item is ChildObj; } The dataProvider is an ArrayCollection containing ParentObjs. ParentObj extends ArrayCollection, and contains ChildObjs. I call

[flexcoders] Custom state not visible in Design view

2008-09-05 Thread Dan
I have tried to extend State (mx.states.State). package org.test { import mx.states.State; public class MyState extends State { public function MyState() { //TODO: implement function super();

[flexcoders] VideoDisplay Object

2008-09-05 Thread [p e r c e p t i c o n]
Hi People,I'm resizing video display object in my app and the video itself isn't being resized...just the component...how can i change the size of the video itself. percy

[flexcoders] Re: Hiding a row in an AdvancedDataGrid

2008-09-05 Thread Tim Hoff
and both are called after the filter is defined Are you calling ArrayCollection.refresh() after you finish adding the parent and children objects? -TH --- In flexcoders@yahoogroups.com, whatabrain [EMAIL PROTECTED] wrote: My filter function is really simple. Something along these lines:

Re: [flexcoders] Problem importing FlexLib

2008-09-05 Thread anuj sharma
Thanks Sherif I made that working. Anuj On Thu, Sep 4, 2008 at 5:52 PM, Sherif Abdou [EMAIL PROTECTED] wrote: I don't think You can import it, if you want to see the code you need to create a Flex Project--(Keep Hitting Next)--Source Path--Add Folder--Point to FlexLib folder. --

[flexcoders] Re: Switching between Cameras in Flex

2008-09-05 Thread flashalisious
so I found out that what you have to do after choosing a new Camera is you have to reattach the camera to the VideoDisplay and if you are attaching your camer to a NetStream you also have to run the command to attach the camera to that again as well. Once you do that all is good. --- In

[flexcoders] RE: Datagrid: cellPress vs. cellEdit

2008-09-05 Thread Chilcoat, Dee
Yes, we are on an old version of Flex, 1.5. We are trying to get an application implemented that has been in development for years. After we get the app implemented (soon, I hope), we will look at upgrading. I put some displays in the mxml and found out that the the cellpress event is fired

RE: [flexcoders] Memory Thrashing during PRINT operations.

2008-09-05 Thread Alex Harui
Is you swf main.swf or could it be loading some sort of small main.swf? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of steve_kellogg_davita Sent: Friday, September 05, 2008 8:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Memory Thrashing during PRINT

[flexcoders] Binding warnings - per instance suppression?

2008-09-05 Thread Richard Rodseth
I like wiring things together in MXML, and I like having no warnings. Is there any way to suppress binding warnings on a per-line basis? In the following case, module and services really aren't going to change: controller:MyController id=controller hostContainer={this}

[flexcoders] Need help with Logout and then Logging back into Flex App

2008-09-05 Thread scottyale2008
After each of the different forms have been opened (via the button toolbar), the forms have been initialized and created. I recently added a logout button which just takes you back to the login form. If you login as a different user, some of the charts and forms don't update because they were

RE: [flexcoders] Re: What wrong ? CtrlLeft and Left

2008-09-05 Thread Alex Harui
Depending on what has focus and what browser you are in, other components may be eating the keystroke, or the browser may be eating the keystroke. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of itdanny2002 Sent: Friday, September 05, 2008 3:30 AM To:

[flexcoders] What event is called after GroupingCollection.refresh()

2008-09-05 Thread rupakk1
I want to stop my hour glass after the GroupingCollection.refresh() is completed. Which event is called once it is done?

[flexcoders] Re: Memory Thrashing during PRINT operations.

2008-09-05 Thread steve_kellogg_davita
THANKS for your response. Our swf is called main.swf.. There aren't any modules in my app (yet), so it's just one big SWF. I SUSPECT that it's loading, and unloading resources in the SWF (images, or something?) as needed to keep the movie running. Just to be clear, there aren't ANY images in

[flexcoders] VideoDisplay play/pause button

2008-09-05 Thread sleekdigital
To make a simple play / pause button I bind the selected state of the button to the playing property of the VideoDisplay component. This works fine with progressive video, but for some reason when using streaming video the binding does not work correctly. Most of the time it does not set the

[flexcoders] Getting a reference to a itemRenderer of a chart series

2008-09-05 Thread Fernando Ghisi
How can I get a reference to a itemRenderer of a chart series? If I use getStyle method, I´ll get the reference of the ClassFactory Ex: Series(chart.series[index]).getStyle(itemRenderer) Looking for any property that I could use, I´ve found in the ColumnSeries a property called

[flexcoders] RE: Datagrid: cellPress vs. cellEdit

2008-09-05 Thread Alex Harui
It's been a while, but it looks like cellPress is guaranteed before cellFocusIn when you click on a cell to start editing. You won't get cellPress when tabbing to the next cell. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chilcoat, Dee Sent: Friday, September 05,

Re: [flexcoders] Need help with Logout and then Logging back into Flex App

2008-09-05 Thread Douglas Knudsen
You could just reload your app, 'tis the short sweet easy way...go ahead mash that Easy Button! Flex can load a new URL in the browser, so just load itself. DK On Fri, Sep 5, 2008 at 2:06 PM, scottyale2008 [EMAIL PROTECTED]wrote: After each of the different forms have been opened (via the

[flexcoders] RE: Datagrid: cellPress vs. cellEdit

2008-09-05 Thread Chilcoat, Dee
Thank you! Dee A. Chilcoat Enterprise Web Application Development University of California San Diego [EMAIL PROTECTED] (858) 534-0719 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Friday, September 05, 2008 11:19 AM To: flexcoders@yahoogroups.com

[flexcoders] effects whn page loads

2008-09-05 Thread flexlearner47
How to give effects on canvas/button/lables when page loads? ,,, I can not give the effects at the time when the page loads/ plzz/ help me out.. I am new in flex ...

[flexcoders] Help with AS2 from Flex

2008-09-05 Thread tloqueh
Hi, I'm new on this group. Greetings to all of you... Well, I'm developing an application that shows a powerpoint converted presentation and should be able to navigate throw the slides (back and next), but, the presentations are converted with openoffice and it puts as2 code into the swf files

RE: [flexcoders] Re: Memory Thrashing during PRINT operations.

2008-09-05 Thread Alex Harui
I have no idea why you see that output. I'll ask internally From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of steve_kellogg_davita Sent: Friday, September 05, 2008 11:08 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Memory Thrashing during PRINT operations.

[flexcoders] RE: Datagrid: cellPress vs. cellEdit

2008-09-05 Thread Alex Harui
And move to Flex 3 as soon as possible. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chilcoat, Dee Sent: Friday, September 05, 2008 11:24 AM To: 'flexcoders@yahoogroups.com' Subject: [flexcoders] RE: Datagrid: cellPress vs. cellEdit Thank you! Dee A. Chilcoat

[flexcoders] Re: Need help with Logout and then Logging back into Flex App

2008-09-05 Thread scottyale2008
Thanks! Since app can run on different servers (URL's), the following three lines did the trick! var myUrl:String = mx.core.Application.application.url; var webPageURL:URLRequest = new URLRequest( myUrl ); navigateToURL(webPageURL);

[flexcoders] RE: Datagrid: cellPress vs. cellEdit

2008-09-05 Thread Chilcoat, Dee
Directly to Flex 3, or should we move to Flex 2 first? Which would be easier? Dee A. Chilcoat Enterprise Web Application Development University of California San Diego [EMAIL PROTECTED] (858) 534-0719 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent:

[flexcoders] eclipse print selection on mac

2008-09-05 Thread hank williams
I just switched from PC eclipse to mac eclipse, At the same time I also upgraded to ganymede from an older version of eclipse. I am not sure whether it is the version change or the platform change but I can no longer print selection, which is a huge bummer. Does anybody know what the deal is?

[flexcoders] Re: Hiding a row in an AdvancedDataGrid

2008-09-05 Thread whatabrain
No, I never call refresh(). Here's the sequence: 1) Set the filter function. 2) Add a parent object [filter function is not called] 3) Add a child object [filter function IS called] I've tried adding parents and children later on too, and the filter function is still only called for children.

RE: [flexcoders] Help with AS2 from Flex

2008-09-05 Thread Alex Harui
http://www.gskinner.com/blog/archives/2007/07/swfbridge_easie.html There also links in there to other solutions From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tloqueh Sent: Friday, September 05, 2008 11:24 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Help with

[flexcoders] Re: Hiding a row in an AdvancedDataGrid

2008-09-05 Thread Tim Hoff
Anytime that you use a filterFunction or sort on an ArrayCollection, it won't be executed until you use call the refresh method. Basically you're saying, ok filter and sort my collection now. It doesn't happen automatically. After #3, and anytime that items are added/changed/removed in the

[flexcoders] Re: Streaming Video to Flex

2008-09-05 Thread nathanpdaniel
My only suggestion would be to look into the messaging service. I don't know that that will solve your issue though - but there are examples around which show how to create a video conferencing application using Flex messaging service. Otherwise you may be stuck with having to use FMS (or

[flexcoders] File uploader / downloader suggestions

2008-09-05 Thread Alan
Hey y'all, I'm hoping to get some opinions from you all. I would like to create an upload / download app for fun / practice. Basicaly, people log in, get a directory listing of files on the server and can upload and download to the directories. I'm gonna use a MySQL database to keep

[flexcoders] Re: Hiding a row in an AdvancedDataGrid

2008-09-05 Thread whatabrain
Calling refresh() did nothing. Note that if I choose to filter out all the child nodes, it works perfectly. It's only the parent nodes I can't filter, because the filter is never called for them. --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Anytime that you use a

[flexcoders] Re: Hiding a row in an AdvancedDataGrid

2008-09-05 Thread Tim Hoff
You know that the filterFunction is being called because you have a breakpoint and trace insde it and are running in debug mode right? Also, is the filterFunction on the correct ArrayCollection (the main one and not the extended one)? The correct order would be: 1.) Add parent object to main

Re: [flexcoders] VideoDisplay Object

2008-09-05 Thread Mario Falomir
Hi percy, I used its width and height property and everything resize fine... --- On Fri, 9/5/08, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: From: [p e r c e p t i c o n] [EMAIL PROTECTED] Subject: [flexcoders] VideoDisplay Object To: flexcoders@yahoogroups.com Date: Friday, September 5,

[flexcoders] Jigsaw Puzzle Component

2008-09-05 Thread sid_gbf
Hi! Im trying to build a jigsaw but Im not very successfull. What I tried to do was to load a Bitmap and then use BitmapData and FlexSprite. Unfortunelly the way I was using (Graphics API), didn't worked, so, I would like to ask a few sugestions about it. Thanks in advance

[flexcoders] Help on Visual Design, Graphic Designers, Firms, Consultants

2008-09-05 Thread andrew.0000
Hi All, We are building an enterprise Flex app and it is time to make this thing look good. The UI is in various states of completion and some areas are not designed. We basically need: - icons - visual design framework and style guide What are people's experiences in the Visual Design

[flexcoders] Best approach for playback of live session with remote shared objects?

2008-09-05 Thread stephendricketts
I have an application that records live audio/video and throughout the session data is changed in remote shared objects which trigger certain events. Different people will change the information in the shared object at different times. I'd like to playback the video and have the information

Re: [flexcoders] VideoDisplay Object

2008-09-05 Thread percepticon
So am i. I made it smaller and the video itself stays the same size but the component shrinks and displays scrollbars Percy Sent via BlackBerry by ATT -Original Message- From: Mario Falomir [EMAIL PROTECTED] Date: Fri, 5 Sep 2008 12:12:40 To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] describeType vs DescribeTypeCache

2008-09-05 Thread reflexactions
I have read that you should use DescribeTypeCache as it is much faster than calling describeType directly. I wondered how big an issue this is becuase... I noticed that the ADG uses describeType everytime it sets the value of a cell into the dataProvider at the end of an edit, so it is getting

Re: [flexcoders] Jigsaw Puzzle Component

2008-09-05 Thread Troy Gilbert
Hi! Im trying to build a jigsaw but Im not very successfull. What I tried to do was to load a Bitmap and then use BitmapData and FlexSprite. Unfortunelly the way I was using (Graphics API), didn't worked, so, I would like to ask a few sugestions about it. Thanks in advance I can't find a

[flexcoders] Datagrid - Sort Error

2008-09-05 Thread sleblang
I am getting the following error when attempting to run a sort on a datagrid's dataprovider (which is an XMLListCollection). It doesn't occur the first time I run the sort, however all subsequent runs result in an error: Error: Find criteria must contain at least one sort field value Here is the

[flexcoders] Re: FlexLivedocs Module chart example has scroll bars ....

2008-09-05 Thread Mic
Thanks Alex! --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: ColumnChartModule.mxml mx:Module xmlns:mx=http://www.adobe.com/2006/mxml; percentWidth=100 percentHeight=100 minHeight=0 minWidth=0 mx:Script![CDATA[ import mx.collections.ArrayCollection;

[flexcoders] How do I move a child? from one container to another?

2008-09-05 Thread luvfotography
Hi, I'm trying to use States and removing(RemoveChild) a child (mx:Text id='mytext') and trying to add it to a different container with addchild, but I get an error - ' identifier 'mytext' used more than once I can do this in actionscript, but how do I do this in mxml, keeping the same id of

[flexcoders] Re: Binding warnings - per instance suppression?

2008-09-05 Thread Amy
--- In flexcoders@yahoogroups.com, Richard Rodseth [EMAIL PROTECTED] wrote: I like wiring things together in MXML, and I like having no warnings. Is there any way to suppress binding warnings on a per-line basis? In the following case, module and services really aren't going to change:

RE: [flexcoders] Re: Binding warnings - per instance suppression?

2008-09-05 Thread Tracy Spratt
As Alex likes to advise, you can / should avoid binding when it is not necessary. You can do this assignment in-line, like this: controller:MyController id=controller hostContainer={this} creationComplete= controller.services=this.module.services / Tracy

[flexcoders] Re: Getting a reference to a itemRenderer of a chart series

2008-09-05 Thread Fernando Ghisi
So, nobody can help me? 2008/9/5 Fernando Ghisi [EMAIL PROTECTED]: How can I get a reference to a itemRenderer of a chart series? If I use getStyle method, I´ll get the reference of the ClassFactory Ex: Series(chart.series[index]).getStyle(itemRenderer) Looking for any property that I

[flexcoders] Re: Getting a reference to a itemRenderer of a chart series

2008-09-05 Thread Tim Hoff
Assuming chart is a ColumnChart, chart.series[0].items[0] will get you a rference to the first ColumnSeriesItem. Charts don't have itemRenderers and an itemRenderer is not a style. -TH --- In flexcoders@yahoogroups.com, Fernando Ghisi [EMAIL PROTECTED] wrote: So, nobody can help me?

Re: [flexcoders] VideoDisplay Object

2008-09-05 Thread Mario Falomir
You are using the Flex 3 VideoDisplay component ? Weirdit works fine with me.. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute initialize=init(event)     mx:VideoDisplay x=146.5 y=157 width=395 height=258 id=videoObj/     mx:Script    

[flexcoders] HTTPService Synchronization

2008-09-05 Thread rupal_2381
Hi All, Is there any framework in place to make multiple HTTPService requests synchronous. Also, does making concurrency=last helps? Regards,

Re: [flexcoders] How do I move a child? from one container to another?

2008-09-05 Thread Mario Falomir
I made this example, hope it helps :) ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute     mx:states         mx:State name=moveit             mx:RemoveChild target={text1}/             mx:AddChild relativeTo={myPanel} target={text1}/        

Re: [flexcoders] How do I move a child? from one container to another?

2008-09-05 Thread Igor Costa
Why to trying that? I mean there's no reson for it. You better use as3 instead of states. Even States are wrong way uses. Regards Igor Costa www.igorcosta.org On Fri, Sep 5, 2008 at 8:33 PM, Mario Falomir [EMAIL PROTECTED]wrote: I made this example, hope it helps :) ?xml version=1.0

Re: [flexcoders] HTTPService Synchronization

2008-09-05 Thread Igor Costa
Rupal The Flex CookBook could help you at here. http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailsproductId=2postId=7184 Regards Igor Costa www.igorcosta.org On Fri, Sep 5, 2008 at 7:02 PM, rupal_2381 [EMAIL PROTECTED] wrote: Hi All, Is there any framework in place

Re: [flexcoders] VideoDisplay Object

2008-09-05 Thread Igor Costa
Is more easy for anyone to help you if you post part of your attempt and we see how we could help. Regards Igor Costa www.igorcosta.org On Fri, Sep 5, 2008 at 7:42 PM, Mario Falomir [EMAIL PROTECTED]wrote: You are using the Flex 3 VideoDisplay component ? Weirdit works fine with me..

Re: [flexcoders] Re: Getting a reference to a itemRenderer of a chart series

2008-09-05 Thread Igor Costa
ItemRenders are not part of Style even is not the way we could get a reference into a render for Charts. Try this. http://www.flex888.com/699/the-illusive-itemrenderer.html Maybe will help you to figure out how. Regards Igor Costa www.igorcosta.org On Fri, Sep 5, 2008 at 9:12 PM, Tim Hoff

  1   2   >