[flexcoders] Re: Help!! flashlog.txt suddently stopped - no log messages anymore

2008-02-12 Thread jason vancleave
I had this recently and it was because I had another mm.cfg on my system. See if you have another mm.cfg somewhere else (like ~/Library). If you do delete it and see if that works. --- In flexcoders@yahoogroups.com, stoff0 [EMAIL PROTECTED] wrote: Today the flash debug player stopped logging

Re: [flexcoders] ClassReference and Resource bundles

2008-02-12 Thread Giles Roadnight
Yes, you were absolutely right. Of course the source path was set up in Flex Builder properties but not in the build.xml file. Many thanks On Feb 8, 2008 10:21 PM, Gordon Smith [EMAIL PROTECTED] wrote: It looks like you don't have source-path set correctly when compiling the resource

[flexcoders] resizing children of hdividedbox

2008-02-12 Thread callistachan
hello once again, i have something like this: mx:HDividedBox width=100% height=100% mx:Panel id=panel1 width=65% height=100% / mx:Panel id=panel2 width=15% height=100% / /mx:HDividedBox where the panels contain other components etc. when i drag the divider of the HDividedBox, i need the panels

Re: [flexcoders] Dictionary weakKeys feature or it's a GC bug

2008-02-12 Thread iiley
I finally did some test again, it works as same as you said in last post, if i keep adding data into the Dictionary, for the test3 case, it will be garbage collected, if not keep adding data, it will not. Thanks, i hope player team will find time to address this issue in a future release of the

Re: [flexcoders] date substraction problem

2008-02-12 Thread Tom Chiverton
On Monday 11 Feb 2008, Ralf Bokelberg wrote: or date.setMonth( date.getMonth() - 1 ) if you want to change the date object itself What happens if you setMonth(-1) ? -- Tom Chiverton Helping to authoritatively lead performance-oriented niches on: http://thefalken.livejournal.com

[flexcoders] Login Application

2008-02-12 Thread cool buddy
Hi, I am doing a login application in flex with communication with backend (Java) using cxf(Xfire). webservices. my question is how do we go to the next page after the login details are validated.. If anyone know please post it.. Thanks..

[flexcoders] Re: Flex Feedback for the Future

2008-02-12 Thread Don Kerr
I also vote for RTE enhancements, in general. Better output is key, but I'd also like to see it move more toward a WYSIWYG-like editor like ColdFusion offers. FCK for Flex...basically. And on the display side, something like the AIR HTML component for Flex web appa would be nice. In short, better

RE: [flexcoders] Adobe People, Save me from Silverlight!

2008-02-12 Thread Merrill, Jason
Here is a lot written by Jesse Warden on Silverlight from his Flash/Flex perspective: http://jessewarden.com/category/silverlight Also, here is a list I compiled last summer after speaking with a Silverlight engineer. Some things in Silverlight may have changed since then, hope this helps

[flexcoders] Flex 3, generated webservice classes, Namespace error.

2008-02-12 Thread Tracy Spratt
Using the very latest Flex Builder, I have used the Import Web Service functionality to generate a set of webservice classes from my own simple web service(.net asmx). When I try to call one of my operations, my web service is hit, and the data is returned and visible in the Flex debugger, but I

[flexcoders] Generated Webservice code does not respect custom headers

2008-02-12 Thread Dave Kong
I used Flex Builder to import webservice from a .net backup. The generated code contained a _BaseGaiaService class that extends the AbstractWebService and implements most of the actual operations. I can get to that from the facade class GaiaService.getWebService() method. I then wrote some test

Re: [flexcoders] Login Application

2008-02-12 Thread cool buddy
thanks,, if the first screen consists of only the login screen and there are no tabs only after the user submits the button it should display the home page...will the below code works... - Original Message From: Jehanzeb Musani [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

RE: [flexcoders] How to set icon in custom TilelistItemRenderer?

2008-02-12 Thread Alex Harui
I don't see 'icon' defined anywhere. What is your thumbnail? Is it a URL or an embedded graphic? Check out the examples in the doc and look at the source for TileListItemRenderer. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] PrintDataGrid set height RTE

2008-02-12 Thread Alex Harui
Pretty sure this is a known bug. I think the workaround is to addChild the PDG before setting height. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Raman Walia Sent: Tuesday, February 12, 2008 5:23 AM To: flexcoders@yahoogroups.com

[flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID (resolved)

2008-02-12 Thread mr_j_harris
Hi all, thanks for all your attention and suggestions. Sorry to say, some of them were a bit loopy: for example, the wholesale substitution of a 'cloned' dataProvider. I had the help of a highly skilled Flex developer who is also is a group member here, and he provided the proper stuff. In

RE: [flexcoders] Where have all the projects gone?

2008-02-12 Thread Matt Chotin
Make sure to clean your workspace though (add -clean to your startup options in the config file, we have this in the release notes I think). We don't really support upgrades between builds cleanly. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent:

[flexcoders] Re: Where have all the projects gone?

2008-02-12 Thread Amy
--- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: do File--Import Unfortunately, when I press the Finish button nothing happens. After pressing it repeatedly, I just had to click Cancel: :-(

Re: [flexcoders] DataGrid limit on amount of records or data?

2008-02-12 Thread Luke Vanderfluit
Hi Jason. Merrill, Jason wrote: No, I guess I can't think of cases when showing 10,000 records with no filtering would be important in a Flex app. What examples were you thinking of? I am thinking of a tree. When I expand a node I might expand all the children down to the leaf node.

RE: [flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-12 Thread Alex Harui
The Flash Player bug base is not public. The player engineers are pointing to this Mozilla bug though: https://bugzilla.mozilla.org/show_bug.cgi?id=319371 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Tuesday,

RE: [flexcoders] How to expand nodes down in trees

2008-02-12 Thread Tracy Spratt
Do it the other way around. Find the nodes you want displayed, then use xml.parent() to climb up the ancestor chain, expanding nodes as you go. I have a simple example on www.cflex.net http://www.cflex.net/ . Tracy From: flexcoders@yahoogroups.com

[flexcoders] Re: DataGrid limit on amount of records or data?

2008-02-12 Thread simonjpalmer
Have you ever been presented with a tree containing 1000 items? It is a horrible experience. Given that is sounds like you are in the fortunate position to be in a design phase with your UI then do your users a huge favour and give them search. Whatever you do - tree or grid - don't show them

[flexcoders] Disable screen interaction while cursor in busy mode

2008-02-12 Thread Alexander Tsoukias
I would like each time i made a SOAP call and set the Cursor to busy for the screen to get disabled while cursor in busy mode. Any ideas?

[flexcoders] Re: Any Flex Math Tutorials out there

2008-02-12 Thread simonjpalmer
There's a good little book called Flash Hacks published by O'Reilly that has some maths intros in it for motion, effects and perspective etc. If you really want the maths then try Numerical Recipes for C - it's not too hard to make the mental translation to AS3, after all the maths is universal.

[flexcoders] Help! as3salesforce.com login issue (James Ward, are you there?)

2008-02-12 Thread simonjpalmer
Hi, anyone else using the as3salesforce.swc library to talk to salesforce.com? I am having trouble logging in to regualr european sf.com accounts. I can successfully connect to a North American developer account but every other account I try fails with this error: sf.com login failed :

[flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread j_lentzz
How can you do that in one pass? I found the nodes by searching the descendants() result. I can find them by using the children call and traversing the tree, but then I have to back out to the top to open the nodes. This still means I'd have to traverse the tree for each item I find. The

[flexcoders] Re: Help! as3salesforce.com login issue (James Ward, are you there?)

2008-02-12 Thread simonjpalmer
I finally got to the bottom of this after a couple of months. Turns out that my users haven't paid enough for their salesforce.com licenses. The Web Services API for force.com is only available to users on enterprise or unlimited licenses. I installed Charles (http://www.xk72.com/charles/) and

[flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread j_lentzz
Sorry Tracy, I was being stupid and looking at the wrong thing. That hint will do just what I need - Thank you. John --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Do it the other way around. Find the nodes you want displayed, then use xml.parent() to climb up the

Re: [flexcoders] resizing children of hdividedbox

2008-02-12 Thread Lee
hi, i couldn't do that because the added component had computations and if i used percent width/height, i was having problems finding the dimensions needed for those computations... so the width and height were set instead of the percent values... i know it would be better if i used percentage

Re: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Josh McDonald
As far as I knew you needed Visual Studio to develop for silverlight, has that changed? On Feb 13, 2008 10:04 AM, Weyert de Boer [EMAIL PROTECTED] wrote: It's works fine for me under MacOSX. Indeed you can't run Blend under that platform. In my opinion Silverlight is only interesting as a

Re: [flexcoders] How to hidden DataGrid Header ?

2008-02-12 Thread Sherif Abdou
just header height there is no width DataGrid width=500 height=500 headerHeight=0 / - Original Message From: Harry Saputra [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 7:47:40 PM Subject: [flexcoders] How to hidden DataGrid Header ? Dear All, I

Re: [flexcoders] How to hidden DataGrid Header ?

2008-02-12 Thread Sherif Abdou
headerHeight and headerWidth to 0 - Original Message From: Harry Saputra [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 7:47:40 PM Subject: [flexcoders] How to hidden DataGrid Header ? Dear All, I want to use DataGrid without header :). Can you help

Re: [flexcoders] meaning of the this AIR error message

2008-02-12 Thread Sherif Abdou
i am not getting any errors, i did notice ur missing a paranteses. mx:ViewStack id=myVS height=100% width=80% mx:Canvas width=100% height=100% mx:HTML id=myHTML location={st} height=100% width=100% / /mx:Canvas /mx:ViewStack - Original Message From: hworke [EMAIL PROTECTED] To:

Re: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Robert Thompson
FlashLite already outperforms Silverlight in my opinion, and with Papervision 3D creating such great 3D api's, I see no reason at all for anyone to move out from a perfectly safe place with Adobe, to crawl over to Microsoft, who has shown their behavior patterns so consistently in bad-faith and

[flexcoders] Re: Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread reflexactions
Didn't you start a thread about the same thing in June last year? --- In flexcoders@yahoogroups.com, Robert Thompson [EMAIL PROTECTED] wrote: Also Kevin, I think you might have mis-interpreted by what I meant by I will only use Microsoft products on the server. To clarify, I did not mean

Re: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Weyert de Boer
Yeah, probably. I think you can use the smcs compiler part of Mono/Moonlight to compile Silverlight projects on like Linux or MacOSX. Of course, you won't have the lovely Visual Studio IDE, though. As far as I knew you needed Visual Studio to develop for silverlight, has that changed?

Re: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Weyert de Boer
It's works fine for me under MacOSX. Indeed you can't run Blend under that platform. In my opinion Silverlight is only interesting as a user interface engine for those Windows Mobile devices only that will take a long while ;)

RE: [flexcoders] Constraining image size

2008-02-12 Thread Alex Harui
I think you just want minWidth/minHeight=0, no width/height attributes, or maxWidth/Height attributes. Keep in mind that loading is asynchronous and the measuredWidth/Height are not valid until after the image loads. From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread Tracy Spratt
So you are using the RemoteObject protocol to get your data? Do you know for a fact that the data service is not returning xml? Have you tried changing the resultFormat? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of j_lentzz

RE: [flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread Alex Harui
I think you're stuck. Without back-references or some way to efficiently calculate the parent objects, you'll have to call expandItem over and over again and search at each level. Building your own parentMap as you do the walk might save you time later.

[flexcoders] How to hidden DataGrid Header ?

2008-02-12 Thread Harry Saputra
Dear All, I want to use DataGrid without header :). Can you help me to solve this problem ?

[flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID (resolved)

2008-02-12 Thread mr_j_harris
Hi Gordon, Initially my dataProvider was an XML or even XMLList; I couldn't get that to work properly - probably my limitations, not those of Flex; so I moved to having an ArrayCollection as the data provider. I was/am replacing fields in Objects, and even more obliquely, was replacing

[flexcoders] moving from localhost to production server...

2008-02-12 Thread [p e r c e p t i c o n]
Hi All, I need some help understanding how to deploy a project on my production server...when i created the project i specified a url of http://localhost: and when i deploy the project on my app server...it and call a method using remote object it can't make the connection...can anyone shed

[flexcoders] Odd issue when using the framework swf as an RSL

2008-02-12 Thread Justin DeVuyst
Hello All, I would like to load a lot of apps on a single page. To help speed things up I want to load the framework swf as an RSL. Problem is when that swf loads the current directory or base URL changes to where the framwork swf is. I don't want that to happen. Any ideas on this? -jdv

[flexcoders] IE referenced memory errors?

2008-02-12 Thread Kevin
Some of my users are complaining about getting the instruction at ... referenced memory at errors when using my Flex app on IE. Has anyone else heard of this problem and if so, what causes it or how can it be resolved? It sounds like they get it after using the Flex app and then try to close the

[flexcoders] Re: Odd issue when using the framework swf as an RSL

2008-02-12 Thread Gaurav Jain
Hi Justin, Can you please show how you are specifying the framework.swf rsl to the compiler? Thanks, Gaurav --- In flexcoders@yahoogroups.com, Justin DeVuyst [EMAIL PROTECTED] wrote: Hello All, I would like to load a lot of apps on a single page. To help speed things up I want to load

Re: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Sherif Abdou
you can't use a for loop, maybe try a cursor instead What you cannot do is iterate through the properties of an object if it is an instance of a user-defined class, unless the class is a dynamic class. Even with instances of dynamic classes, you will be able to iterate only through properties

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
Or may I content filter in DataGrid ( all item I shown in datagrid ) and filtering when columnA constraint 'xxx' value ? How ? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent: Wednesday, February 13, 2008 11:46 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
Check my code : arrJadwalPribadi = new ArrayCollection(event.result as Array); arrJadwalPribadi.refresh(); for (var item:Object in arrJadwalPribadi){ if (item.hari=='Senin')

Re: [flexcoders] Flex Feedback for the Future

2008-02-12 Thread YOGESH JADHAV
I would like to see a descent RTE which retains it's style and has emoticons . A videoDisplay which provides controls to programmer and has some fms3 support. An IDE which looks and runs in same way on all platforms ( atleast linux). On Feb 11, 2008 11:20 PM, Joan Lafferty [EMAIL PROTECTED]

[flexcoders] Re: Constraining image size

2008-02-12 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I think you just want minWidth/minHeight=0, no width/height attributes, or maxWidth/Height attributes. Keep in mind that loading is asynchronous and the measuredWidth/Height are not valid until after the image

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Gordon Smith
You shouldn't assume that a for-in or for-each-in loop will iterate over the items in any particular order. To ensure this, use a plain 'for' loop. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Harry

[flexcoders] Re: Move effect

2008-02-12 Thread jovialrandor
You're the best! I thought the only way to do this was via transitions/effects tags. This is much simpler/smoother. Thanks! --- In flexcoders@yahoogroups.com, Varun Shetty [EMAIL PROTECTED] wrote: Hi, i am sorry.. i didnt see this reply. here.. check this code for anim with tweener.

[flexcoders] Questions about FB / Eclipse

2008-02-12 Thread Josh McDonald
Hi Guys, I've got a few questions regarding flex builder - they're basically eclipse questions, but any eclipse question is basically ungoogleable due to terrible signal:noise ratios. 1) How can I move palettes using the keyboard, or force them to be on screen? So many times I move environments

Re: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Sherif Abdou
like this? ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=initApp() xmlns:containers=flexlib.containers.* mx:Style source=styles.css/ mx:Script ![CDATA[ import mx.collections.IViewCursor; import

[flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
Dear All, I have DataProvider as Array like this : A Andi A Ash A Axe B Bart B Bob Called arrMainData. Can I split it into 2 variable Array when I complete retrieve all Data ? like this : arrAData A Andi A Ash A Axe arrBData B Bart B Bob Thanks :-)

RE: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Robert Thompson
I would agree, that's the last status that I know of, that there is not a development environment for SilverLight under MacOSX or any other platform except Windows. Only the player is available multi-platform. I've been there and done that regarding trusting Microsoft as a platform for any

Re: [flexcoders] Re: Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Robert Thompson
Guess what - I did not start this thread at all !!! So look at the thread origins before implying something like that. I only responded when I saw it on the Yahoo e-mail notification. -r reflexactions [EMAIL PROTECTED] wrote: Didn't you start a thread about the

[flexcoders] meaning of the this AIR error message

2008-02-12 Thread hworke
Hi, I was trying mx:HTML inside a viewstack and got this error message: = TypeError: Error #1034: Type Coercion failed: cannot convert mx.controls::[EMAIL PROTECTED] to mx.core.Container. Here is my code:

RE: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Merrill, Jason
I think he's talking about the player and you're talking about development. Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community From:

RE: [flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID (resolved)

2008-02-12 Thread Gordon Smith
The actual working solution involved the assembling of a PropertyChangeEvent into a CollectionEvent and dispatching that to the source dataProvider ArrayCollection. It may work, but it doesn't sound to me like anything you should ever have to do to get a DataGrid to work properly. Can you

RE: [flexcoders] How to hidden DataGrid Header ?

2008-02-12 Thread Peter DeHaan
showHeaders=false From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Harry Saputra Sent: Tuesday, February 12, 2008 5:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to hidden DataGrid Header ? Dear All, I want to use

Re: [flexcoders] Re: Disable screen interaction while cursor in busy mode

2008-02-12 Thread Sherif Abdou
cool, but i read somewhere not sure if i actually did or making it up but say if you disable the application but there is focus on an object or a texfield the user can still alter it from by keyboard so i guess you should add global listeners too and prevent anything from truly happening

Re: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Josh McDonald
A perfectly valid reason to avoid Silverlight is that it's Windows-only. A lot of UI developers / graphic designers are Mac guys. -J On Feb 13, 2008 7:42 AM, Kevin Aebig [EMAIL PROTECTED] wrote: Fair enough. I appreciate the explanation and though I think you might be fighting a losing

[flexcoders] Re: Disable screen interaction while cursor in busy mode

2008-02-12 Thread Alexander Tsoukias
thats exactly what i was looking for. Did not know such thing existed. thanks for pointing out!!! Alex --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: why not just do enabled=false on the Application itself - Original Message From: Alexander

[flexcoders] Re: How to expand nodes down in trees

2008-02-12 Thread j_lentzz
Additional info, the result format is object, not e4x, so I don't seem to have the parent call to work with - it is null. I'm not sure what is required on the servlet side (java) to use a different format. I was given this to work with and didn't write the servlets. Thanks for any help, John

Re: [flexcoders] Re: Disable screen interaction while cursor in busy mode

2008-02-12 Thread Sherif Abdou
why not just do enabled=false on the Application itself - Original Message From: Alexander Tsoukias [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 4:47:19 PM Subject: [flexcoders] Re: Disable screen interaction while cursor in busy mode Sounds good,

[flexcoders] ReferenceError: Error #1065 Illegal override of virtualWidth in mx.controls.HScr

2008-02-12 Thread sk_acura
Hi All, I recently updated my Flex SDK and redeployed my existing app and now i am getting lot of Reference Errors!! The current Environment i am using is Flex SDK flex3sdk_b3_121207 and running on OpenSUSE 10.3 and using JDK1.6 and deployed in Tomcat 6.0.9 Here is the log file that

Re: [flexcoders] Re: Move effect

2008-02-12 Thread Varun Shetty
Hi, i am sorry.. i didnt see this reply. here.. check this code for anim with tweener. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute frameRate=60 mx:Script ![CDATA[ import caurina.transitions.*; private function

[flexcoders] Re: Disable screen interaction while cursor in busy mode

2008-02-12 Thread simonjpalmer
pop up a modal dialog with a progress bar and remove it when the response returns --- In flexcoders@yahoogroups.com, Alexander Tsoukias [EMAIL PROTECTED] wrote: I would like each time i made a SOAP call and set the Cursor to busy for the screen to get disabled while cursor in busy mode. Any

RE: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Kevin Aebig
Fair enough. I appreciate the explanation and though I think you might be fighting a losing battle trying to get people to ditch Windows as their desktop, I respect the fact that you're willing to do it anyhow. =] Cheers, Kevin _ From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Splitting Array Content , keyword by field content

2008-02-12 Thread Harry Saputra
Max 20 record. Not big. May I ? When try to manipulate data on server side, I must create a more function ( service ) and on my flex I must create more remoteObject method. It's not good :-) Thanks.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent:

RE: [flexcoders] Where have all the projects gone?

2008-02-12 Thread Tracy Spratt
First, go to File, Switch Workspace. The list will probably be empty. Do Other, then browse to the workspace and select it. Tht should bring up the projects in that workspace. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-12 Thread Robert Csiki
Thanks Alex, guess we'll gonna go with a timer-like workaround for now. Is this something that will eventually be fixed in Firefox plug-in, is there an open bug for it, if so could you pls gimme the number so we can reference it? Thanks, Robert --- In flexcoders@yahoogroups.com, Alex Harui

[flexcoders] Re: Where have all the projects gone?

2008-02-12 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: First, go to File, Switch Workspace. The list will probably be empty. Do Other, then browse to the workspace and select it. Tht should bring up the projects in that workspace. Thanks :-). Looks like I was one folder

RE: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Robert Thompson
Also Kevin, I think you might have mis-interpreted by what I meant by I will only use Microsoft products on the server. To clarify, I did not mean I will only choose MS server products on the server, but that, of all of Microsoft technologies there are, the only ones I will use, are on the

RE: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Robert Thompson
Quite the opposite - it would only be hypocritical if I were to not recognize the strengths and less risk of server technologies that I use and can choose from, including ColdFusion, which I have used, .PHP which I use a lot, ans ASP.Net which I use some, and even Classic ASP, it's easy to

RE: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Kevin Aebig
I've never been an advocate to either side of the debate, but don't you think you're being quite hypocritical in saying that the client aspect of Microsoft is evil, but that you still actively use the server products? If you're looking for a reason to not go with Silverlight, than go on the

Re: [flexcoders] Issues with SWF playing in Firefox but not in IE6 or IE7

2008-02-12 Thread Patrick Driggett
Ok, I fixed it but didn't realize this was a problem in IE. I had to explicitly put the height and width in pixels in both the object and embed tags, apparently 100%, which is what Flex Builder outputs in the HTML file, does not work. -Patrick On Feb 12, 2008 1:36 PM, Patrick Driggett [EMAIL

Re: [flexcoders] How to make a live duplicate of an output window

2008-02-12 Thread Sherif Abdou
you can use the bitmap class draw() method and what not, then scale that image and just use States. So on State will show it and off state wont - Original Message From: mthomas1969 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 1:39:20 PM Subject:

Re: [flexcoders] Adobe People, Save me from Silverlight! (Microsoft's Legal Record)

2008-02-12 Thread Robert Thompson
Here is a big reason why NOT to go with Silver-Light: I am Robert D. Thompson. Here is Federally Published public record of something, http://www.fedcirc.us/case-reviews/thompson-v.-microsoft-corporation-4.html I will not discuss the above public record, but will discuss why I believe it

[flexcoders] Popup over a form

2008-02-12 Thread markgoldin_2000
I am creating a popup window over a form. I am providing a reference to that form to PopUpManager. But after PopUpManager.centerPopUp the popup is not centered inside of the form. Can someone help, please? Also I want to have my popup window 100% opaque. Hocan I do that? Thanks for help.

Re: [flexcoders] XML, HTTPSerivce, Setting dataProvider in Action Script

2008-02-12 Thread Sherif Abdou
you have it set in mxml, chartXML.lasResult mx:CategoryAxis id=cat1 dataProvider= {chartXML.lastResult .month[month_ number].day} categoryField= {categoryFieldString} title={categoryAxisTitleSt ring} / - Original Message From: Brad Bueche [EMAIL PROTECTED] To:

[flexcoders] Re: Flex Feedback for the Future

2008-02-12 Thread Don Kerr
Keep up the great work on the Flex and ColdFusion Integration. I'd like to see more ColdFusion integration features, in general. --- In flexcoders@yahoogroups.com, Joan Lafferty [EMAIL PROTECTED] wrote: As we close up Flex 3 development, the team is evaluating existing Flex feedback to

RE: [flexcoders] Databinding in component

2008-02-12 Thread Merrill, Jason
Thanks Tracy, I'll try that route. Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] How to make a live duplicate of an output window

2008-02-12 Thread mthomas1969
I'm using Flex 3 and AIR, and I am trying to find a way to have all of the visuals that appear in a particular window in my app duplicated (in real time) in a small canvas in another window (in the same app). Sort of like the taskbar in Windows Vista does when you hover the mouse over an

RE: [flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-12 Thread Alex Harui
OK, heard from the player engineers. This is a Firefox plug-in issue. They don't send us error data in a way that looks like the data stream so we can't tell it is an error. You'll probably have to cook up a workaround. Maybe a timer that checks load progress and gives up after a while.

[flexcoders] Browser scrollbars corrupting layout

2008-02-12 Thread Greg Hess
Hi All, I have been working on my applications layout and trying to make it as fluid as possible. Images seem to be my main culprit as they don't scale well when using % based layout. I have accepted this, however when I resize the browser window past the image(s) region the browser scrollbars

Re: [flexcoders] Re: mxmlc running out of heap space...

2008-02-12 Thread ivo
ahh...slick. Setting ANT_OPTS did the trickalso the build takes only a few seconds instead of a minute. - Ivo - Original Message From: rueter007 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 10:39:55 AM Subject: [flexcoders] Re: mxmlc running

RE: [flexcoders] Flex 3, generated webservice classes, Namespace error.

2008-02-12 Thread Tracy Spratt
Addl info: That is a run-time error, and I am implementing the webservice using AS, not mxml. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday, February 12, 2008 2:37 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: SWFLoader.load() error handling does not work?

2008-02-12 Thread Alex Harui
Not yet. I re-sent the internal query. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Csiki Sent: Tuesday, February 12, 2008 7:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: SWFLoader.load() error handling does

RE: [flexcoders] Databinding in component

2008-02-12 Thread Tracy Spratt
Below are some snippets. Tracy When working with Repeater, I advise creating a custom component that you will repeat, and pass it the entire currentItem, In the component, implement a setter function to receive the currentItem data. Now, in the component, you can code normally, binding to the

RE: [flexcoders] LCDS - Express, how to change database connection

2008-02-12 Thread Jeff Vroom
Some of the samples hardcode the database connection info in a class called ConnectionHelper.java. Check in WEB-INF/src/... Look at the sample you are running, find the destination names. Find these in your config... you probably found connection info for the SQLAssembler destinations which

RE: [flexcoders] XML, HTTPSerivce, Setting dataProvider in Action Script

2008-02-12 Thread Brad Bueche
Thanks! That worked. I have noticed that I am not setting the dataprovider for my category axis and its still getting filled in? Is that possible? Or am I already fried for the day? I put the dataprovider in for it anyway just to be explicit. brad -Original Message- From:

Re: [flexcoders] Login Application

2008-02-12 Thread Jehanzeb Musani
Below is the sample MXML mx:Script ![CDATA[ private function OnSubmit() { //After validing user credentials //The below line will change the view //to main application controls this.mainContainer.selectedIndex = 1; } ]] mx:Script mx:ViewStack

[flexcoders] Re: Flex Feedback for the Future

2008-02-12 Thread Dave Kong
I also *strongly* second the request for better printing capability on the client side. It's highly discouraging that after building an awesome Flex application, one finds out that you can't make decent printouts/reports and use them in a presentation. When people ask hey, that is an awesome

Re: [flexcoders] mxmlc running out of heap space...

2008-02-12 Thread Sherif Abdou
ignore what i said, i need to read - Original Message From: Sherif Abdou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 12:39:35 PM Subject: Re: [flexcoders] mxmlc running out of heap space... did you change the eclipse.ini file? -

[flexcoders] LCDS - Express, how to change database connection

2008-02-12 Thread greenfishinwater
I have just installed LCDS Express version with included JRun, and I have been looking at the test drive samples. These samples use the associated hsqldb as the database. I want to write some test code that uses an Oracle database. Where do I change the database connection data. I found a

[flexcoders] Adobe People, Save me from Silverlight!

2008-02-12 Thread Nate Pearson
I'm a flex developer who just joined a .NET development group. We make internal apps but are going to grow our group and have an e-commerce subset. Everyone on my team has seen my flex apps and they understand the power. BUT, they want to do a formal review of Flex vs Silverlight before we

Re: [flexcoders] XML, HTTPSerivce, Setting dataProvider in Action Script

2008-02-12 Thread Sherif Abdou
let me rephrase you can do whatever but you need to listen for the ResultEvent.RESLUlT in actionScript and do name.dataProvider = event.result - Original Message From: Sherif Abdou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 12, 2008 12:38:43 PM Subject:

Re: [flexcoders] Login Application

2008-02-12 Thread cool buddy
Hi, Thanks for your reply.. Like if the user is granted access after validating the credentials..it go to the next page..i was trying to figure out how do we do it... can you give me a small example.. like after the user hits the Submit Button..it should validate and id it passes then it should

[flexcoders] Re: mxmlc running out of heap space...

2008-02-12 Thread rueter007
set the following environment variable before the build depending on your platform. set ANT_OPTS=-Xmx500M or set ANT_OPTS=-Xmx500M ; export ANT_OPTS - venkat --- In flexcoders@yahoogroups.com, ivo [EMAIL PROTECTED] wrote: I have a machine with 4GB of memory on which I

  1   2   >