[flexcoders] Localization problem compiling .properties resource into swf

2009-04-30 Thread guy.tomer
Hello, I have a .properties file put under src/locale/en_US I changed the compiler arguments to: -locale=en_US -allow-source-path-overlap=true -source-path=locale/en_US Now the strange thing - I have 2 applications in this project. One specifically for testing the localization, the other is

Re: [flexcoders] Remote Desktop

2009-04-30 Thread Johannes Nel
darron schall wrote a vnc client. obviously this is not exactly what you are looking for. Acrobat connect (previously called breeze) is the thing for you most likely, and you can extend that (aka load swf's in if my memory serves correctly since this came from central, to breeze to ...) On Thu,

Re: [flexcoders] Re: best ftp client

2009-04-30 Thread Johannes Nel
i like total commander the most personally on a windows box. on a mac fetch. On Thu, Apr 30, 2009 at 1:30 AM, Tracy Spratt tr...@nts3rd.com wrote: Me too. I’ve never done a lot of ftp, but FileZilla was easy to use and does all all need so far. Tracy Spratt, Lariat Services,

Re: [flexcoders] Only Flex and LDAP

2009-04-30 Thread Tom Chiverton
On Tuesday 28 Apr 2009, dnk wrote: smgbbk, ...apparently wants us to write his code for him for free :-) -- Helping to heterogeneously maximize 24/7 leading-edge user-centric partnerships as part of the IT team of the year, '09 and '08 Tom Chiverton Developer Tel: +44 0161 618 5032 Fax: +44

[flexcoders] popup progress bar will uploading file

2009-04-30 Thread stinasius
hi i am trying to show a popup progress bar will uploading file. i would like help on how to close the popup once the file has finished uploading. here is my code so far.. popup progress bar(progress_popup.mxml) ?xml version=1.0 encoding=utf-8? mx:TitleWindow

[flexcoders] Re: popup progress bar will uploading file

2009-04-30 Thread Cato Paus
in the titleWindow you can call the PopUpManager.removePopUp(this); called from Complete Event as you have done, or you can dispatch the Complete Event to parent, and kill the popup ther , (The PopUpManager is a singleton so you can access it form enyware) --- In flexcoders@yahoogroups.com,

[flexcoders] Re: popup progress bar will uploading file

2009-04-30 Thread stinasius
do you mind sharing an example?

[flexcoders] Re: How come setting the responder (async token) after the server call does WORKS???

2009-04-30 Thread Mehdi
Tracy, I was trying to illustrate what I had understood from what has been said: Flex asynchronous methods get queued up and are only invoked once ALL synchronous calls in the same block get executed. My example might not be the best but since the http.send() was in a function on its own,

[flexcoders] Re: How to 'undo' the changes in the flex client w/ LCDS when a rollback is isssued?

2009-04-30 Thread Mehdi
I would totally see it as a bug. If LCDS manages the object, it is its role to propagate up the rollback. No question about it. Good luck in your new adventure, whatever it is! Thanks. --- In flexcoders@yahoogroups.com, Jeffrey Vroom j...@... wrote: In my opinion, LCDS should detect that

[flexcoders] Re: How come setting the responder (async token) after the server call does WORKS???

2009-04-30 Thread valdhor
This is from a thread (sic) response from Seth Hodgson about a year ago... There is a single thread that advances through SWF frames and runs your ActionScript code and event handlers, but network calls are performed by separate background threads concurrently. In order to have calls processed

[flexcoders] Re: Multiple chart effects conflicting with each other

2009-04-30 Thread valdhor
The problem is due to the different durations for the effects. Stting them all to the same value fixes the problem. I don't know whether this is a bug or whether it's just a limitation of a parallel effect. Someone else may have further input. HTH. Steve --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread valdhor
What do you mean by That didn't work? --- In flexcoders@yahoogroups.com, fumeng5 fume...@... wrote: Hi -- I want to output a variable and hardcoded text in the htmlText property of a Text component. Here's what I tried first: content.htmlText = bThe account + this.acctName +

Re: [flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread Pedro Sena
try [Bindable] private var msgString:String = bThe account + this.acctName + has been created /b. content.htmlText = {msgString} and make sure your acctName is not blank. On Thu, Apr 30, 2009 at 9:55 AM, valdhor valdhorli...@embarqmail.comwrote: What do you mean by That didn't work?

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread fumeng5
Thanks for your responses. What I mean is that in the 1st case: content.htmlText = bThe account + this.acctName + has been created/b. ...the message comes out to be: The account null has been created. However, I can use the debugger to see that acctName is definitely being set correctly.

[flexcoders] Prom in integrating Flex-Spring with help of BlazeDs

2009-04-30 Thread haribond_thegangster
Hi Friends I tried to run the sample flex spring application(Mortgage application).It displays following error. [RPC Fault faultString=[MessagingError message='Destination 'mortgageService' either does not exist or the destination has no channels defined (and the application does not define

Re: [flexcoders] Re: Anyone have issue with AIR updater on Mac OSX

2009-04-30 Thread Buck DeFore
Ugh.. beware also what stalled me for a while tonight... Using the 1.5.1 sdk I figured I'd need to update the line: update xmlns=http://ns.adobe.com/air/framework/update/description/1.0; to update xmlns=http://ns.adobe.com/air/framework/update/description/1.5.1; in my update.xml ... turns out

[flexcoders] IE8 problem - opening html page in a new window no longer works

2009-04-30 Thread rasiuz
Hello: I have an issue with the new Internet Explorer 8: ... navigateToURL(new URLRequest(theURL),_blank); ... this was opening the html page from my flex application in a new window. now it replaces the current window... any ideas how to solve this? Thanks -- View this message in context:

[flexcoders] Automatically scroll down to component

2009-04-30 Thread GeeTee
Hi everyone, I am working on a dashboard in which in the base state some data (several indices with their data split by time) will be visible in a datagrid and the user can switch the state to the one in which for every index, there will be charts one below the other. I want to implement an

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread valdhor
For the first part, you are setting the value of msgString during its declaration. At this point acctName will be null. You would need to declare msgString and then assign it in a creationComplete handler. Secondly, you can't do this in ActionScript: content.htmlText = {msgString} You have to

[flexcoders] Re: compatibilty with windows vista home basic

2009-04-30 Thread aglosband
Hi. The BlazeDS developer guide has some tips on how to debug your application. http://livedocs.adobe.com/blazeds/1/blazeds_devguide/help.html?content=build_apps_6.html I'd recommend turning on client side logging and then taking a look at the flashlog.txt file that gets generated. If you need

[flexcoders] Draw rectangle to Zoom.

2009-04-30 Thread flexaustin
Was wondering if anyone knew of any examples of adding the ability to draw a rectangle then zoom the stage to what was in the rectangle? Think something like draw a rectangle. Find its bounds. Create a rect from these bounds. Then maybe assign this rect to a displayobject scrollrect?

[flexcoders] Resource bundles and Modules

2009-04-30 Thread Todd
Hello All, I have some Modules (Cairngorm-based if that matters), that I want to have their own resource.property files that are compiled into the module. I can't seem to get it working. Should I be looking down the path of manually adding my resource strings to the ResourceManger when my

[flexcoders] Re: blazeds mapping issue with SetLong

2009-04-30 Thread aglosband
Hi Max. There was another bug logged to add support for Java 5.0 syntax (which I take to mean Generics) to RemoteObjects. https://bugs.adobe.com/jira/browse/BLZ-115 That bug has unfortunately been deferred for the time being but I'd suggest that you view the bug report and vote on it which

Re: [flexcoders] Re: blazeds mapping issue with SetLong

2009-04-30 Thread Pedro Sena
Another workaround is use GraniteDS instead of BlazeDS. :D On Thu, Apr 30, 2009 at 11:45 AM, aglosband aglos...@adobe.com wrote: Hi Max. There was another bug logged to add support for Java 5.0 syntax (which I take to mean Generics) to RemoteObjects.

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread fumeng5
Ok, I see what you're saying. So here's the constructor for my component that is responsible for all this: public function CreateAcctDialog() { super(); init(); } ...and init(): private function init():void {

[flexcoders] Re: Building a collection in Java to be set in a DataGrid using blazeds

2009-04-30 Thread aglosband
Hi. This tutorial should help you. http://www.adobe.com/devnet/livecycle/articles/blazeds_gettingstarted_04.html It has an example of populating a datagrid with the result of a RemoteObject call. Hope that helps. -Alex --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote:

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread valdhor
How is acctName created? --- In flexcoders@yahoogroups.com, fumeng5 fume...@... wrote: Ok, I see what you're saying. So here's the constructor for my component that is responsible for all this: public function CreateAcctDialog() { super();

[flexcoders] Re: best ftp client

2009-04-30 Thread aphexyuri
lightweight oneFireFTP (add-on for firefox) --- In flexcoders@yahoogroups.com, Johannes Nel johannes@... wrote: i like total commander the most personally on a windows box. on a mac fetch. On Thu, Apr 30, 2009 at 1:30 AM, Tracy Spratt tr...@... wrote: Me too. I've never

[flexcoders] Re: Resource bundles and Modules

2009-04-30 Thread guy.tomer
--- In flexcoders@yahoogroups.com, Todd tpreka...@... wrote: Hello All, I have some Modules (Cairngorm-based if that matters), that I want to have their own resource.property files that are compiled into the module. I can't seem to get it working. Should I be looking down the path of

RE: [flexcoders] Re: best ftp client

2009-04-30 Thread Kevin F. Benz
Trying not to be the heretic in the group, Mac, Linux and PC have an installed ftp client that can be easily used if you take a few moments to understand the commands underneath all of these clients. Get a command line and type in ftp. I use it extensively for scripted backups and automated

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread fumeng5
The String I'm constructing is inside a PopUp dialog bog. I set it from another component a la: private function createAcct():void { acctDialog.acctName = accountName; PopUpManager.addPopUp(acctDialog,this as Canvas,true); } The accessor methods for acctName look like this:

[flexcoders] Re: best ftp client

2009-04-30 Thread Tim Hoff
Along these same lines, for Windows you can also just map a network drive to the ftp location and use Windows Explorer to drag and drop. -TH --- In flexcoders@yahoogroups.com, Kevin F. Benz kb...@... wrote: Trying not to be the heretic in the group, Mac, Linux and PC have an installed ftp

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread valdhor
I don't believe you need that. I do what you are doing all the time although I don't do it in the init method (I am assuming you are calling the init method on initialize of the component?). I would try calling it on creationComplete (That's what I do). You may find that the initialize method

[flexcoders] Visual positioning difference between browsers

2009-04-30 Thread Tom McNeer
Hi, The top of my application area shows a logo and some other static visual information which comes from a background image for the Application. Included as part of this background image is a horizontal bar which runs the width of the screen. The main Application file has layout=absolute. A

[flexcoders] Why would as keyword not work

2009-04-30 Thread valdhor
I have a bit of a perplexing problem (With a workaround). In a datagrid I have an itemRenderer that sets one column to a linkButton. In the constructor I have... addEventListener(MouseEvent.CLICK, handleLinkClicked); I also have a valueObject imported... import Model.ValueObjects.DetailData;

[flexcoders] Looking for Portal ideas

2009-04-30 Thread markgoldin_2000
I have a project to create a new Company Web Portal. Something where top management would be able to run report summaries and stuff. Any sample sites, interface ideas, etc? Thanks

[flexcoders] Re: Resource bundles and Modules

2009-04-30 Thread Todd
Mine was actually pretty simple to solve. I had apparently just forget to use the [ResourceBundle] attribute so that the compiler would know to bring in the appropriate resource files. --- In flexcoders@yahoogroups.com, guy.tomer guy.to...@... wrote: --- In flexcoders@yahoogroups.com, Todd

[flexcoders] Re: Resource bundles and Modules

2009-04-30 Thread guy.tomer
--- In flexcoders@yahoogroups.com, Todd tpreka...@... wrote: Oops, mine as well, i put it only in one mxml Mine was actually pretty simple to solve. I had apparently just forget to use the [ResourceBundle] attribute so that the compiler would know to bring in the appropriate resource files.

[flexcoders] Re: Localization problem compiling .properties resource into swf

2009-04-30 Thread guy.tomer
--- In flexcoders@yahoogroups.com, guy.tomer guy.to...@... wrote: Ignore this post, I put the [ResourceBundle] only in one mxml Hello, I have a .properties file put under src/locale/en_US I changed the compiler arguments to: -locale=en_US -allow-source-path-overlap=true

RE: [flexcoders] Why would as keyword not work

2009-04-30 Thread Alex Harui
Could be a compiler bug. If you look at the generated code you might get a clue (or the actual SWF bytes) Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [flexcoders] Visual positioning difference between browsers

2009-04-30 Thread Alex Harui
Is the background image being stretched to handle different stage sizes? Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tom McNeer Sent: Thursday, April

[flexcoders] Re: Multiple chart effects conflicting with each other

2009-04-30 Thread antonthorn
Thank you, Steve! :) --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: The problem is due to the different durations for the effects. Stting them all to the same value fixes the problem. I don't know whether this is a bug or whether it's just a limitation of a

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread fumeng5
You are exactly right! It worked perfectly when I added a listener for the creationComplete event in my constructor and set the handler to be init. I learned something new today. Thank you very, very much for your help. --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: I

[flexcoders] Re: blazeds mapping issue with SetLong

2009-04-30 Thread Mark Piller
And another workaround is to use WebORB, which will handle it just fine out of the box. Cheers, Mark --- In flexcoders@yahoogroups.com, Pedro Sena sena.pe...@... wrote: Another workaround is use GraniteDS instead of BlazeDS. :D On Thu, Apr 30, 2009 at 11:45 AM, aglosband aglos...@...

Re: [flexcoders] Visual positioning difference between browsers

2009-04-30 Thread Tom McNeer
Hi Alex, Thanks for your reply. On Thu, Apr 30, 2009 at 12:52 PM, Alex Harui aha...@adobe.com wrote: Is the background image being stretched to handle different stage sizes? Nope. I was unclear about one thing: the logo is actually placed within the Application file. It's not part of

[flexcoders] Re: Why would as keyword not work

2009-04-30 Thread valdhor
Hmmm. Looks like I misspoke. now I get... Type coercion failed. Cannot convert Model.ValueObjects::detaild...@11c0a941 to Model.ValueObjects.DetailData. What is the difference between a Model.ValueObjects::DetailData and a Model.ValueObjects.DetailData --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Re: Why would as keyword not work

2009-04-30 Thread Pedro Sena
Are you using modules? On Thu, Apr 30, 2009 at 2:17 PM, valdhor valdhorli...@embarqmail.comwrote: Hmmm. Looks like I misspoke. now I get... Type coercion failed. Cannot convert Model.ValueObjects::detaild...@11c0a941 to Model.ValueObjects.DetailData. What is the difference between a

[flexcoders] Re: Why would as keyword not work

2009-04-30 Thread valdhor
Yes --- In flexcoders@yahoogroups.com, Pedro Sena sena.pe...@... wrote: Are you using modules? On Thu, Apr 30, 2009 at 2:17 PM, valdhor valdhorli...@...wrote: Hmmm. Looks like I misspoke. now I get... Type coercion failed. Cannot convert Model.ValueObjects::detaild...@11c0a941

[flexcoders] Re: Why would as keyword not work

2009-04-30 Thread valdhor
Also, I now have it working if I change from trying to coerce to a valueObject and just use a generic Object instead. --- In flexcoders@yahoogroups.com, Pedro Sena sena.pe...@... wrote: Are you using modules? On Thu, Apr 30, 2009 at 2:17 PM, valdhor valdhorli...@...wrote: Hmmm.

[flexcoders] Sql Server HierarchyID data type into AdvancedDataGrid?

2009-04-30 Thread jack_freud
I wonder if there's a way other than manually creating a hierarchical data structure with arraycollections, of turning the return from a query using the new HierarchyID data type from Sql Server? The return looks like this: / /1/ /1/1/ /1/2/ /1/2/ /2/ /3/ etc. Thanks, Jack

Re: [flexcoders] Re: Why would as keyword not work

2009-04-30 Thread Pedro Sena
Are you transfering data from one module to another(or to its parent) ? On Thu, Apr 30, 2009 at 2:41 PM, valdhor valdhorli...@embarqmail.comwrote: Also, I now have it working if I change from trying to coerce to a valueObject and just use a generic Object instead. --- In

[flexcoders] Formatting a bound value within a Text object

2009-04-30 Thread Tom McNeer
This seems so simple, yet I can't figure it out -- nor can I find guidance from the docs or from Google. I want to format a date which is being returned from a RemoteObject call. The object created from the service call is bindable, so I can display the object.myDate as it changes. But I need to

[flexcoders] Re: Why would as keyword not work

2009-04-30 Thread valdhor
Yes, I have an interface which I am implementing in the modules. It has a single set method that populates a single object with data. The data transfer is from application to modules only. --- In flexcoders@yahoogroups.com, Pedro Sena sena.pe...@... wrote: Are you transfering data from one

RE: [flexcoders] Re: Why would as keyword not work

2009-04-30 Thread Alex Harui
Time for you to read the presentation on Modules on my blog. It should explain why you're getting that error. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf

RE: [flexcoders] Visual positioning difference between browsers

2009-04-30 Thread Alex Harui
I can't quite picture what you are describing. I would make sure that things are properly sized by probing display objects. My favorite trick is to set a breakpoint on SystemManager.as:mouseDownHandler, wait until the app is stable, then click. From there you can explore the various display

Re: [flexcoders] Re: Why would as keyword not work

2009-04-30 Thread Pedro Sena
Hmmm Appears to be the most common problem... Please make a test: Create a dummy variable in the same class that you are using your VO, something like var dummy:DetailData = null; Keep the rest of the code and tell me the results. Regards On Thu, Apr 30, 2009 at 2:58 PM, valdhor

[flexcoders] Eclipse Crashing

2009-04-30 Thread Geoffrey
Recently, FB(Eclipse) keeps crashing on me. I've looked all over the place for solutions, have tried many, but none seem to do the trick. My current setup is: Eclipse 3.4.2 (M20090211-1700) FB 3.0.2.214193 Flex SDK 3.3 JDK 1.6.0_13 My eclipse.ini is: -showsplash org.eclipse.platform -framework

Re: [flexcoders] Re: Why would as keyword not work

2009-04-30 Thread Pedro Sena
Forgot to say: In the same class(in your module) that is receiving the parameter from your app. Another thing, make sure your main app and your module are in the same application domain, if you have some doubt about it, please post here the code that you are using to load your module. Regards

Re: [flexcoders] Re: Why would as keyword not work

2009-04-30 Thread Ian Thomas
As Pedro says - my guess would be that you are passing a DetailData object from one module to the other when you haven't loaded the modules in the same ApplicationDomain (or from one compiled .swf to another, if you're not using modules). Take a look at the documentation for ApplicationDomain.

[flexcoders] Help needed - assigning a custom CartesianTransform to a ColumnChart at runtime

2009-04-30 Thread EddieBerman
Anyone with CartesianTransform knowledge? I'm having a good bit of difficulty getting a dynamically assigned custom CartesianTransform to work. I'm not finding a whole lot of sample code to learn from and am currently slogging through the framework code trying to determine what's up. Hopefully

Re: [flexcoders] Visual positioning difference between browsers [5 Attachments]

2009-04-30 Thread Tom McNeer
Hi Alex, On Thu, Apr 30, 2009 at 2:23 PM, Alex Harui aha...@adobe.com wrote: I can’t quite picture what you are describing. Perhaps the simplest thing is to provide some screenshots. Attached are pngs for the same app, in the same state (just after loading), on four different browsers.

RE: [flexcoders] Eclipse Crashing

2009-04-30 Thread Peter Farland
Are you mixing AIR and Flex library projects in the same workspace? Have you tried excluding all of the Flex SDK swcs from the project library path that are not needed by each project? -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf

Re: [flexcoders] Eclipse Crashing

2009-04-30 Thread Pedro Sena
Do you REALLY need all those projects? If they are not different modules (and even if they are) you should try to divide them in packages instead of Projects. If this is REALLY necessary, I suggest you to build your project using maven instead of using your IDE to do it. Even to manage this

[flexcoders] Re: Why would as keyword not work

2009-04-30 Thread valdhor
Alex - I have read your Modules presentation about twenty times so far as well as any other documentation I could find on Modules and Application Domains. I'm pretty sure I understand everything so far. Pedro - The ValueObject is only being used by this particular module - not by the

[flexcoders] How do I assign a custom CartestianTransform to a ColumnChart?

2009-04-30 Thread EddieBerman
Anyone with CartesianTransform knowledge? I'm having a good bit of difficulty getting a dynamically assigned custom CartesianTransform to work. I'm not finding a whole lot of sample code to learn from and am currently slogging through the framework code trying to determine what's up. The

[flexcoders] How do I assign a custom CartesianTransform to a ColumnChart?

2009-04-30 Thread EddieBerman
Anyone with CartesianTransform knowledge? I'm having a good bit of difficulty getting a dynamically assigned custom CartesianTransform to work. I'm not finding a whole lot of sample code to learn from and am currently slogging through the framework code trying to determine what's up. The problem

Re: [flexcoders] Re: Why would as keyword not work

2009-04-30 Thread Pedro Sena
Pedro - The ValueObject is only being used by this particular module - not by the application (Or any other module). If the VO is not being used, why are you trying to cast to it? I think I didn't understand. BTW, Have you done the test that I suggest ? Regards, On Thu, Apr 30, 2009 at 5:11

[flexcoders] Re: Eclipse Crashing

2009-04-30 Thread Geoffrey
Yes, there are AIR and Flex projects in the same workspace, but at the moment, the AIR projects are closed. I'm not sure what you mean by the second response. Could you give me an example? --- In flexcoders@yahoogroups.com, Peter Farland pfarl...@... wrote: Are you mixing AIR and Flex

[flexcoders] Re: Eclipse Crashing

2009-04-30 Thread Geoffrey
I probably don't REALLY need all these projects, but that's the way it was originally set up. It's a very large project. Hundreds of thousands of lines of code. So that's how it evolved into the beast it is today. We use Maven to build our production builds, but all the developers build via

RE: [flexcoders] Re: Eclipse Crashing

2009-04-30 Thread Peter Farland
Ah - for the second part, go into each of the Flex Library projects' properties panels, look at the Flex Build Path section, then select the Library path tab. Expand the Flex 3 node and look at the *.swc files that are listed (which is effectively your library path for compilation). For

[flexcoders] Re: Eclipse Crashing

2009-04-30 Thread Geoffrey
Gotcha. Will try that to see if it makes a difference. --- In flexcoders@yahoogroups.com, Peter Farland pfarl...@... wrote: Ah - for the second part, go into each of the Flex Library projects' properties panels, look at the Flex Build Path section, then select the Library path tab. Expand

[flexcoders] Re: Why would as keyword not work

2009-04-30 Thread valdhor
The VO is being used by this module (And is not used anywhere else). It gets populated from a remote object call that this module makes on creationcomplete. The arrayCollection of these returned VO's are used to populate a dataGrid. Now, one column of the dataGrid uses an item renderer based on

[flexcoders] Re: Formatting a bound value within a Text object

2009-04-30 Thread Tim Hoff
Hi Tom, mx:DateFormatter id=df formatString=-MM-DD/ mx:Text text={ df.format(object.myDate) }/ -TH --- In flexcoders@yahoogroups.com, Tom McNeer tmcn...@... wrote: This seems so simple, yet I can't figure it out -- nor can I find guidance from the docs or from Google. I want to

Re: [flexcoders] Re: Formatting a bound value within a Text object

2009-04-30 Thread Tom McNeer
Hi Tim, Thanks for straightening me out. I could have sworn I already tried this and didn't get the bound value. On Thu, Apr 30, 2009 at 4:46 PM, Tim Hoff timh...@aol.com wrote: mx:DateFormatter id=df formatString=-MM-DD/ mx:Text text={ df.format(object.myDate) }/ But obviously

[flexcoders] Re: popup progress bar will uploading file

2009-04-30 Thread Cato Paus
Main App: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=initApp(); @ mx:Script ![CDATA[ import mx.managers.PopUpManager; import mx.containers.TitleWindow; private var popUp:PopUp = null; private function

RE: [flexcoders] Re: Why would as keyword not work

2009-04-30 Thread Alex Harui
It all comes down to your applicationDomain topology. I'd be checking link-reports for every SWF in the project. These errors usually indicate that a class is in two different SWFs loaded into sibling appDoms. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog:

[flexcoders] Application's initialize event

2009-04-30 Thread markgoldin_2000
I am using this event to prepare some user information before the application is loaded. Or at least, I am assuming that. On my computer I am consistly getting user data (just another server call) before application loads but on a user computer the application loads before the user data. My

[flexcoders] Flash CS4 3d to Flex, issue with fieldOfView being different in Flex [1 Attachment]

2009-04-30 Thread Guillaume Malartre
Hi, I'm trying to create a work flow between FlashCS4 3d assets and Flex. I almost got it working with the perspectiveProjection assigned in each MovieClip. I attached to this email a .fla showing that wherever you put on the Flash CS4 stage the ui_book_teachersintro it get its

RE: [flexcoders] Eclipse Crashing

2009-04-30 Thread Kevin F. Benz
Here are few things I have found. They may help, they may not. Ultimately I find that projects under version control have been my issues. Let me explain. I have found (at least through SDK 3.0 and 3.1) that an upgrade to the SDK causes the local project file to go through some update but when

[flexcoders] chet-flex-animation/graphics-book

2009-04-30 Thread Brad Bueche
'nuff said. Make it so, #1. brad

[flexcoders] Gumbo Spark List: Behavior of default item renderer

2009-04-30 Thread daxdr9
I've been playing around with the Spark List and see that, by default, very long text causes the horizontal scrollbar to appear in addition to creating multiple lines of text. How can I configure the renderer so that text is only wrapped, preventing the horizontal scrollbar from being

RE: [flexcoders] Application's initialize event

2009-04-30 Thread Alex Harui
The event fires, but the response may not come in for a very long time on a slow network Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of markgoldin_2000

RE: [flexcoders] Eclipse Crashing

2009-04-30 Thread Kevin F. Benz
Oh. I thought you can get past the module dependency by linking the SWC and binding the source to the swc in the home project allowing you to close the library projects. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Kevin F. Benz Sent: Thursday, April 30,

[flexcoders] link colors in htmlText component

2009-04-30 Thread Tony Obermeit
When using the a within a mx:htmlText component, the link is not displayed with the standard underline or blue color, anyone have technique for getting links in the htmlcomponent to render like they would in a browser?

Re: [flexcoders]Where does my SWF gain it's weight?

2009-04-30 Thread dorkie dork from dorktown
Ah forgot I had embedded fonts. About 620kb was shaved off when I commented out those bad boys. FWIW it was lucinda grand bold and normal. I didn't think they would weigh in that much. Has Adobe thought of hosting common embedded font RSLs like they are hosting the Flex Framework RSL? For

[flexcoders] Streaming video does not recover from buffer empty

2009-04-30 Thread rituraj_tiwari
Folks, I am playing an FLV over RTMP using Red5 0.7. My video player is written in Flex/AS3. It works fine for most videos. However, for some videos, I see the following traces in my Flex debugger: onMetaData: videodatarate : 0 audiosamplerate : 44100 height : 720 framerate :

[flexcoders] Extending the AdvancedDataGridGroupItemRenderer

2009-04-30 Thread menapole
I would like to modify the text and style of text displayed in an AdvancedDataGrid. I figure I need to extend the AdvancedDataGridGroupItemRenderer because I want the changes to effect both branch and leaf nodes. So far I've had no luck because I'm not sure which functions I should be overriding

Re: [flexcoders] Re: Why would as keyword not work

2009-04-30 Thread Ian Thomas
Steve, My guess at what is going on - based on my limited understanding of what you're doing - is: - You have your class definition (DetailData) compiled in to your main application and into your module. - You load your module into your main application - Because you have not specifed that you

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-30 Thread john fisher
If Adobe drops Linux support for Flex, then I will probably drop Flex. I won't maintain a Windows or Mac box at home, and my company really doesn't want to invest in any more Windows apps. I don't want to invest myself in technology I can't run independently of whoever I happen to be working for

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-30 Thread Guy Morton
Wouldn't you still be able to build your own IDE using the free SDK? As I understand it a lot of people do this now to avoid having to buy FB, and I imagine Linux users would be relatively common within that group. If sales for a linux version of FB are too low to justify the ongoing

[flexcoders] Re: Eclipse Crashing

2009-04-30 Thread Geoffrey
I'll certainly try everyone's suggestions when I get back from vacation. :D Thanks for everyone's help/advise. --- In flexcoders@yahoogroups.com, Kevin F. Benz kb...@... wrote: Oh. I thought you can get past the module dependency by linking the SWC and binding the source to the swc in the

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-30 Thread Matt Chotin
I'm going to continue to stay out of the fray, but just to be clear, that conversation is about Flex Builder, not the SDK. We will always support developers on Linux, it's a question of what we tools beyond the SDK we provide. We'll be looking to share more information on our plans in a few

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-30 Thread john fisher
Guy I could use the bare SDK of course. I hadn't really tried it before because the Flex Builder Eclipse plugin seemed like a good idea. And there is *some* support for it in the community, I don't know how much. You're right I should try that before I give up. blame Adobe is not quite right,

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-30 Thread john fisher
well thanks for that Matt, I'll wait for announcements. John Matt Chotin wrote: I'm going to continue to stay out of the fray, but just to be clear, that conversation is about Flex Builder, not the SDK. We will always support developers on Linux, it's a question of what we tools beyond the

[flexcoders] Re: Flex Builder on Linux been scrapped ?

2009-04-30 Thread daxdr9
This is hardly a surprise given the current economic conditions, assuming the ROI isn't there for the FB Linux product at this time. Does anyone really not own at least one Windows-based PC or Apple computer? (I'm sure there are people who only run Linux--a very small percentage, though) If

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-30 Thread Paul Andrews
- Original Message - From: john fisher j...@jpfisher.net To: flexcoders@yahoogroups.com Sent: Friday, May 01, 2009 12:35 AM Subject: Re: [flexcoders] Flex Builder on Linux been scrapped ? If Adobe drops Linux support for Flex, then I will probably drop Flex. I won't maintain a

[flexcoders] Can Flex read IPTC or EXIF data on jpegs?

2009-04-30 Thread luvfotography
Can Flex display exif data on jpgs? How can I extract that data from a picture that I load? thanks, steve

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-04-30 Thread Sam Lai
2009/5/1 Kelly dek...@gmail.com: I am not sure why it's so hard. Most other Eclipse plugins work fine on Linux 32 and 64 Bit. It's probably not the editor bits that are hard, but the debugging bits which have to reach outside of the Java world to work. Ditto with the profiler bits I'd say,

Re: [flexcoders] Re: Flex Builder on Linux been scrapped ?

2009-04-30 Thread Paul Andrews
- Original Message - From: Kelly To: flexcoders@yahoogroups.com Sent: Friday, May 01, 2009 2:39 AM Subject: Re: [flexcoders] Re: Flex Builder on Linux been scrapped ? Microsoft deep scans your hard drives and transmits home. This is admitted in their patents. This

Re: [flexcoders] Re: Flex Builder on Linux been scrapped ?

2009-04-30 Thread Sam Lai
Why do conversations about Linux always devolve into an MS-bashing thread, often based on unfounded assumptions? Take it off-list. 2009/5/1 Kelly dek...@gmail.com: Microsoft deep scans your hard drives and transmits home. This is admitted in their patents. This is data mining on a level

  1   2   >