[flexcoders] How to have datagrids with different filterfunction for a single dataprovider??

2007-01-14 Thread Dan
Hi, I want to have 3 datagrids with the same dataprovider but show different part of it according to the filterFunction? Is it possible? Or i need to copy the arraycollection into three and each have to update back the original one by the tag by adobe??? Anyone has any idea? Thanks Daniel

RE: [flexcoders] Problem with viewstack in Flex 2.0 ActionScript not search element by id.

2007-01-14 Thread Stembert Olivier (BIL)
Jan, By default, the View Stack control's children are not created until they are selected. Change the creationPolicy attribute of the View Stack to "all". Regards, Olivier From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of j_hora Sent:

RE: [flexcoders] PIVOT CHART (&table) .

2007-01-14 Thread leds usop
THnx for the quick reply Ely. I guess im gonna have to call you chart guru then. Kidding. :) Regarding your pivot/OLAP experiments, can you give us pointers on how to implement them? Currently we are planning to subclass datagrid for that. Is that - from your experience - the best starting point?

[flexcoders] Help for Creating Multiline Button using Flex 1.5

2007-01-14 Thread aks.agni
Hi all, can anybody suggest me please how to create multiline button in flex 1.5? Thanks in advance, Akash

RE: [flexcoders] should cairngorm commands call other commands.

2007-01-14 Thread Robin Burrer
Thanks Bjorn I'll check out the sequence command and your utility as well. Cheers Robin From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Monday, 15 January 2007 1:32 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] Data Binding warning -- PHP, Weborb for PHP

2007-01-14 Thread Clint Modien
I've never ran the php example but it sounds like you're missing a [Bindable] meta data tag on your dataProvider1 variable. I also corssposted this to the weborb list. You'll get the best support on weborb here: http://tech.groups.yahoo.com/group/flashorb/ On 1/14/07, jason_panko <[EMAIL PROTE

Re: [flexcoders] QTP plug in?

2007-01-14 Thread Clint Modien
It's still in beta... you have to ask to get on the beta list. On 1/14/07, Dimitrios Gianninas <[EMAIL PROTECTED]> wrote: Hi, Has anyone found the QTP plug in after installing Flex Builder 2.0.1 or FDS 2.01? I cant seem to find it... for those that do have it, did u have to ask Adobe direc

Re: [flexcoders] should cairngorm commands call other commands.

2007-01-14 Thread Bjorn Schultheiss
Hey Robin, Check out com.adobe.cairngorm.command.SequenceCommand The standard way is to define the nextEvent in the command and then call executeNextCommand. If you need to define your events in your view i have a utility for it and i posted the info here http://cairngormdocs.org/blog/?p=2

[flexcoders] should cairngorm commands call other commands.

2007-01-14 Thread Robin Burrer
Hi all, I'm working on flex application using the cairngorm framework and I ask myself if commands should call other commands. E.g. another event is triggered in the result method of the command. Note that I actually run in this problem when I try to handle my client application logic, not fo

[flexcoders] Re: Poker game with FDS

2007-01-14 Thread Alexander Tsoukias
Thanks for the tip ;-)! I guess i am looking for a quicker way meaning, what would the first steps be if someone was to create such a game in FLEX? Would id be setting up the environment with FDS and running tests? that sort of steps i guess. Thanks, Alex --- In flexcoders@yahoogroups.com, "P

Re: [flexcoders] Poker game with FDS

2007-01-14 Thread Paul Andrews
Don't lose your shirt, would be my tip. ;-) I don't really see why a Poker game would be different to any other application. If you have no idea about programming a game, check out the Flash game books and adapt their strategy for AS3. Paul - Original Message - From: "Alexander Tsoukia

[flexcoders] Data Binding warning -- PHP, Weborb for PHP

2007-01-14 Thread jason_panko
I have been following the "simple_weborb_php.mxml" example from The Midnight Coders website and have run into a warning: Data binding will not be able to detect assignments to "dataProvider1". Now I started with the simple_weborb_php.mxml file and proceeded to add a second datagrid. My first data

[flexcoders] QTP plug in?

2007-01-14 Thread Dimitrios Gianninas
Hi, Has anyone found the QTP plug in after installing Flex Builder 2.0.1 or FDS 2.01? I cant seem to find it... for those that do have it, did u have to ask Adobe directly? Dimitrios Gianninas RIA Developer Optimal Payments Inc. -- WARNING --- This electronic message and its attachmen

[flexcoders] New File Templates

2007-01-14 Thread Kevin
Is is possible to create new or modify the existing templates provided in Flex Builder for creating new file types. For example is it possible to add to the following menu: File -> New -> MXML Application - > MXML Component -> Actionscript File

[flexcoders] FLEX 2.0.1 and JSR 168 Portlets in Liferay

2007-01-14 Thread Christoph Guse
Hi List, I would like to have some FLEX JSR168 in the Liferay portal. Based on the Liferay JSP example Portlet I created a simple portlet which contains the sample dashboard provided by FLEX 2.0. For embedding the dashboard I used the following piece of code: http://{serverIP}:8080/s

[flexcoders] Re: External Linking of framework libraries

2007-01-14 Thread m2281m2281
Clint, Thanks for the feedback, I am more looking at performance and memory here, let me give an example, and keep in mind this is a very large app with hundreds of modules... I am already using modules and the shell app, which is pretty small file size is 184 Kb, If I tell Flex Builder to RSL th

[flexcoders] Re: Todays date without the Time

2007-01-14 Thread boy_trike
Thanks, Just what I wanted, did not see the single function that would do it. bruce > > see setHours method of a date object. It should be something link that > date.setHours (0,0,0,0); > > regards, > valy

Re: [flexcoders] Re: External Linking of key libraries

2007-01-14 Thread Clint Modien
Yes.. I think what you want to do is possible. However... I believe Modules are what you're really after. The browsers cache will store the shell that you use to load modules if it hasn't changed. That way you only have to worry about the "initial" hit on your application til you update it.

[flexcoders] Runtime Loading of Icons

2007-01-14 Thread m2281m2281
I know that since Icon is of type class you cannot load them at runtime you have to embed. With that said is there any way to accomplish this using the new runtime css capabilities. My issue is that I have an open shell meaning that a service returns a manifest of available modules(urls names dec

[flexcoders] Re: External Linking of key libraries

2007-01-14 Thread m2281m2281
And just to clarify one more thing it looks like I would use RSL for the following libraries instead of merged into code: charts.swc frameworks.swc rpc.swc Thanks, Mike

[flexcoders] Re: External Linking of key libraries

2007-01-14 Thread m2281m2281
Yes, I believe thats similar to what I was thinking, in Flex Builder on the Library Path for framework.swc I was thinking of just setting it to External or RSL, by default it's merged into code. Was also thinking of doing this for charts as well. My question is more along the lines of the drawbac

Re: [flexcoders] External Linking of key libraries

2007-01-14 Thread Clint Modien
Umm... I think that's exactly what -load-externs is for. I saw a post about this on Keith Peters blog a few days ago... explains it pretty well. http://www.bit-101.com/blog/?p=941 On 1/14/07, m2281m2281 <[EMAIL PROTECTED]> wrote: In a large RIA which is primarily a back end application...

[flexcoders] External Linking of key libraries

2007-01-14 Thread m2281m2281
In a large RIA which is primarily a back end application... Would there be any problem with just using external linking for: charts.swc frameworks.swc rpc.swc Together they are approximately 2M and as far as downloading speed I am not to concerned as the browser would probably cache these, but I

RE: [flexcoders] Anyone Using a Remote CF Server with Flex 2, Remoting?

2007-01-14 Thread Peter Farland
Nope, the fact that server B has a /crossdomain.xml file is not relevant and not even known at compile time. In fact, for RPC services like RemoteObject, WebService and HTTPService, compiling against services-config.xml is only a convenience. The MXML compiler uses this information to generate some

Re: [flexcoders] flexcoders == jupiter

2007-01-14 Thread Yiðit Boyar
why dont we use a forum ? sth like phpBB .. hosted @ adobe.. (so makes it official ) - Original Message From: Stacy Tyler Young <[EMAIL PROTECTED]> To: Flexcoders Sent: Saturday, January 13, 2007 12:44:57 AM Subject: Re: [flexcoders] flexcoders == jupiter

[flexcoders] Re: Flex Builder no longer compiles

2007-01-14 Thread dustyjewett
--- In flexcoders@yahoogroups.com, "Clint Modien" <[EMAIL PROTECTED]> wrote: > > What's the error? > > On 1/11/07, dustyjewett <[EMAIL PROTECTED]> wrote: > > > > I made a variable of a class private instead of public, then attempted > > to sort an ArrayCollection based on this variable. Now, no

Re: [flexcoders] Error: 1000: No bitrate match

2007-01-14 Thread Impudent1
http://blogs.ittoolbox.com/c/engineering/archives/adding-flv-mime-type-in-iis-4198 might help. I had all the no bitrate match errs as well. Once I added the mime type to the server all was well. Impudent1 LeapFrog Productions

RE: [flexcoders] Need primer on Events, from the List Gurus -

2007-01-14 Thread Dimitrios Gianninas
Ok here is how I would do it. Say the ArrayCollection held notes as an example. // in command ModelLocator.getInstance().notes.addItem( mynewnote ); // view is binded // inside the view public function set notes( values:ArrayCollection ):void { mygrid.dataProvider = values; values.addE

[flexcoders] Drag-Resize MDI Example

2007-01-14 Thread John Kirby
Anyone know of a Flex 2 Drag-Resize MDI/Panel example? -- /Whether you think that you can, or that you can't, you are usually right./ - Henry Ford

[flexcoders] Increasing / Decreasing Font Sizes

2007-01-14 Thread Bruce Denham
Is there any way to increase or decrease all the fonts in an application by a percentage? Because an application has lots of varying fontSizes, it would be really cool to be able to increase all of them by a percentage, so that you could create a cool fontSizing effect with the mouse scroll wheel,

RE: [flexcoders] Cairngorm 2.1 & temporary 'stuff'

2007-01-14 Thread Dimitrios Gianninas
I do the same thing you do...I need to load and hold some global app data at the very start. I refer to this as static data, card types, countries, states, etc... This is normal for an app to have this data, so I just created a model called GlobalModel.as that holds this stuff for me. I hope you

Re: [flexcoders] Re: Export FLEX page to PDF

2007-01-14 Thread Rich Tretola
This is how I would do it. The libraries for converting to png are at http://code.google.com/p/as3corelib/ Rich On 1/13/07, Simon Barber <[EMAIL PROTECTED]> wrote: Hi Grant, What you can do is use the BitMapData class to capture an image of any part of a Flex application and encode into

[flexcoders] Save DataGrid

2007-01-14 Thread hugocorept
Hi every flex addicted:P Does anybody knows a way to save the changes realized to a dataGrid? DataGrid have editable="true" , the goal is to save to a MySql, but all ideias are welcome to find a way... My ideias are, use a PHP script to receve the data..but how?

Re: [flexcoders] making an entire hbox item linkable?

2007-01-14 Thread
One solution I can think of is : set the "buttonmode" of HBox to "true" and on click open the url. buttonMode="true" click="navigateToURL(new URLRequest('www.yahoo.com '),'_blank')" On 1/12/07, kasey.mccurdy <[EMAIL PROTECTED]> wrote: im creating a component in actionscript with an HBox in

[flexcoders] Problem with viewstack in Flex 2.0 ActionScript not search element by id.

2007-01-14 Thread j_hora
Hallo, i start with Flex2 and have this problem. ActionScript not search Label by id in the second Canvas in ViewStack. Application start with error TypeError: Error #1009: Cannot access a property or method of a null object reference. Id "labela" search OK, but "labelb" is for the function "invis

[flexcoders] Firefox/PC and Key.isDown()

2007-01-14 Thread fattymelt
I have found the Key.isDown() does not work on Firefox/PC if the window mode is set. At first, I didn't know what the problem was, but then I read this () - and sure enough, getting rid of the wmode fixed it. Only problem is, I /have/ to use wmode. Is anyone familiar with this problem, and knows

[flexcoders] Getting an image to receive focus

2007-01-14 Thread chrislpigg
I have an image component that I'm trying to get to receive focus. Doesn't anyone know how to do this?

Re: [flexcoders] Svn & Flex

2007-01-14 Thread Beverly Guillermo
Hi Kevin, >From my experience, there's no true way to "unlink". The only thing I can think of is to do the following: $ svn delete html-templates $ svn commit $ svn export -r html-templates that should give you a clean version without the .svn directories. -Beverly On 1/13/07, Kevi

Re: [flexcoders] Svn & Flex

2007-01-14 Thread Chris Hill
There is no such thing as 'unlink', you'll have to use the 'delete' command. You can: Delete your htm-templates folder from SVN. Flex will ask you to recreate your html-templates folder. Alternatively you can 'export' the folder (right click and drag and choose 'Export to here' in TortoiseSVN)

[flexcoders] Flex Builder 2.0.1 the update !

2007-01-14 Thread pauscato1
Hi all, is there anyone that have notice that flex builder 2.0.1 use long time to building workspace hangs on about 47% to 50% and when you save it even uses more time. Flex builder 2 was a loot faster and funn to work whit. is this an issue or is it only my computer that sucks ?? Cat

[flexcoders] Getting a node to accept dropped nodes in a tree

2007-01-14 Thread chrislpigg
Here is my xml structure. I'm trying to drop onto but the tree drops it after . Does anyone know how to get the tree to make a branch when you drop onto it.

Re: [flexcoders] simple ArrayCollection question

2007-01-14 Thread hank williams
I dont know the format that php uses for sending data, but in java when I send data, the result also has a field called source which is already in the form of an ArrayCollection. This I suspect depends on the data structure used to send the data and how php does it. Regards, Hank On 1/13/07, Ke

Re: [flexcoders] Newbie alert - Trying to populate combobox w. httpservice

2007-01-14 Thread Ben Marchbanks
you have to define the labelField when binding to dataProvider that has no "label" field. Ben Marchbanks ::: alQemy ::: transforming information into intelligence http://www.alQemy.com ::: magazooms ::: digital magazines http://www.magazooms.com Greenville, SC 864.284.9918 Mark Bjærgager w

Re: [flexcoders] Adding Dynamic Gifs

2007-01-14 Thread Hervé Crespel
java developer a écrit : > Hi All, > > I am implementing an application in which I have a requirement to > dynamically add "animated" gif in the Panel. > > I read about the IFrame approach but in my case the number of > "animated" gif is only known at runtime once a selection is made. > > What is

[flexcoders] Error: 1000: No bitrate match

2007-01-14 Thread Paul Hastings
trying to load some FLV as "help" but no matter where i place these files & no matter what i set the application framerate to, i keep getting Error: 1000: No bitrate match at mx.controls.videoClasses::VideoPlayer/play() at mx.controls::VideoDisplay/play() at video/___Button