[flexcoders] Caputre DisplayObject as high res image for use with AlivePDF

2009-11-05 Thread Richard Rodseth
AlivePDF ooks like a noble effort. I'm trying to get higher resolution chart shapshots into a PDF, and it appears that 1) PNGEncoder can't handle transparency 2) JPEGEncoder is very slow 3) These might be addressed in a forthcoming 0.1.5 release, but I'm not sure how imminent that is. There is

[flexcoders] Re: Flash and Flex free magazine download

2009-11-05 Thread valdhor
The link in the email is just for authenticating you. Once you click on that link, click the Magazine link, then the Free FFD ezine link. There you will find links to the free issues. --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi John, I entered my email and

[flexcoders] text from a form into an e-mail?

2009-11-05 Thread Kearney Buskirk
Hi I'm trying to move text filled into a form in an app being built with Flash Builder beta2 into the body of an e-mail. I'm trying to do this via the default program on the user's computer because it seems potentially simplest. If there's a better basic strategy or a big problem my

[flexcoders] Trapping Control-A in webapp

2009-11-05 Thread Mike
I want to pass Control-A to a Flex app running in a browser. Seems the browser grabs Control-A and does not pass it to the Flex app. I tried adding this to index.template.html: script language=JavaScript type=text/javascript !-- function disableCtrlModifer(evt) { var disabled = {a:0, c:0,

[flexcoders] ObjectUtil.copy() and Dictionaries

2009-11-05 Thread seanmcmonahan
I have an AIR project setup in Flex Builder 3 that copies a subclass of flash.utils.Dictionary just fine with ObjectUtil.copy() when the target player is set to 9.0.28. However, when the target player is set to 10.0.0 I get the following error when attempting to make a copy: TypeError: Error

[flexcoders] Re: Forcing titlewindow redraw after includeInLayout set to true

2009-11-05 Thread Sébastien Tromp
Hi, Bump, in case someone who has an answer has missed the topic. Thanks, -- Sébastien 2009/11/1 Sébastien Tromp sebastien.tr...@gmail.com Hello, I have an MXML TitleWindow component that contains the following: popup:MajorImprovementClickableBoard id = board player = {player}

[flexcoders] Data Transfer between Viewstacks

2009-11-05 Thread Dan Pride
I am building an app that includes datagrids where when double clicking a record causes the ViewStack to change to a new view to present the data in a form for editing/creating. What is the best way to transfer data between two different view states? Bindable public variables? Where you dump

[flexcoders] Re: Make Flex AIR app demand more system resources

2009-11-05 Thread Tracy
Ironic, huh? Actually, we are not finding the AIR app to be unreasonably resource hungry. Yes, I am using the papervision cube to navigate between forms, and the animation is not always smooth(sometimes it is). However, the os memory monitor indicates that the air app is not taking the

[flexcoders] Re: Data Transfer between Viewstacks

2009-11-05 Thread Tracy
Use a central data model. Some folks use a singleton for this. Use binding, or events, or ChangeWatcher to update your UI pieces as needed. Tracy --- In flexcoders@yahoogroups.com, Dan Pride danielpr...@... wrote: I am building an app that includes datagrids where when double clicking a

[flexcoders] Re: text from a form into an e-mail?

2009-11-05 Thread Tracy
How does it not work? Where is the problem? Can you build and send body text without using the form data? I have done this a lot, but do not have my code in front of me right now. Do it one step at a time. Tracy --- In flexcoders@yahoogroups.com, Kearney Buskirk kear...@... wrote: Hi

Re: [flexcoders] Re: text from a form into an e-mail?

2009-11-05 Thread Kearney Buskirk
Thanks for your response. I re-wrote the code so at least I can send body text without the form data. private function sendEmail():void { navigateToURL(new URLRequest('mailto:kear...@gmail.com?body=some%20body%20text%20goes%20in%20here'),'_self') } Now the problem is how to specify the

RE: [SPAM] Re: [flexcoders] Re: text from a form into an e-mail?

2009-11-05 Thread Tracy Spratt
Ok, next, put that string into a variable and use the var in the url string. When that works, all you need to do is generate the string from the form, and put it in the var. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com