[flexcoders] Flash Builder 4 issues

2010-05-22 Thread Rick Genter
I'm developing an application using Flash Builder 4 and have encountered two issues: 1) If I turn on -keep-generated-actionscript=true, the generated ActionScript results in errors. The errors appear to stem from a strange placement of the generated folder: it's putting it in src/, not in bin/

Re: [flexcoders] Flash Builder 4 issues

2010-05-22 Thread Oleg Sivokon
The first one never happened to me before, but, if I had to work around that, I'd set it to compile with Ant and I would try to change the settings so that it wouldn't generate as files in the source folder. The error message may be somewhat ambiguous, but what it is trying to say is that it is

Re: [flexcoders] Flash Builder 4 issues

2010-05-22 Thread Rick Genter
On May 22, 2010, at 5:44 PM, Oleg Sivokon wrote: The first one never happened to me before, but, if I had to work around that, I'd set it to compile with Ant and I would try to change the settings so that it wouldn't generate as files in the source folder. The error message may be

Re: [flexcoders] Flash Builder 4 java heap space error.

2010-04-29 Thread Oleg Sivokon
It is possible that Flash Builder ignores the global JVM settings, there may be per Eclipse, or builder's own settings (sorry, in such case I'm not sure where to look for them). However you can try to compile with Ant + flexTask.jar Ant plugin to prove the problem is there. You can increase the

RE: [flexcoders] Flash Builder 4 java heap space error.

2010-04-28 Thread Christopher McArthur
on what our next steps should be? -ctm From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Oleg Sivokon Sent: Tuesday, April 27, 2010 1:01 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flash Builder 4 java heap space error. Increase

[flexcoders] Flash Builder 4 java heap space error.

2010-04-27 Thread Christopher McArthur
Flash Builder 4 is crashing constantly for me with a java heap space error when compiling. It is driving me nuts. Im running on Windows Vista 64bit and 4GB of RAM. When this error occurs FlashBuilder is using about 780MB of RAM, and I have about 1.5GB of ram still free Research online

Re: [flexcoders] Flash Builder 4 java heap space error.

2010-04-27 Thread Oleg Sivokon
Increase JVM memory *-Xms Am -Xmx Bm* * * (A is the initial memory size B is the maximum size in megabytes) you may do this globally in jvm configuration file, or per application run. I even think that MXMLC will accept -jvmargs parameter to pass arguments to jvm before it starts (MXMLC exe is a

[flexcoders] Flash Builder 4 Error 16

2010-04-24 Thread Shabir Gilkar
Hi All! I have just downloaded the 380 MB Standalone Win version of FB 4 trial. Before that i was having Flex Builder 3.0 and i uninstalled that first then i Installed the FB4, all the installation process is going on finely and completed. But when i try to launch it, it shows me ERROR 16. May i

[flexcoders] Flash Builder 4 dog-slow while editing MXML files

2010-04-06 Thread ettorepasquini
I am using the Flash Builder 4 on a Macbook Pro 2.4Ghz (pretty fast machine) and I noticed that the code editor has gotten extremely slow when editing MXML files. Slow as in 1-character-per-second slow. It's irritating and unusable. Slowness increases with the number of components in the MXML

Re: [flexcoders] Flash Builder 4 dog-slow while editing MXML files

2010-04-06 Thread Jake Churchill
I have seen this too. I'm on a Windows 2.6GHz machine with 4GB ram and Windows 7 and it's way slower than FB3 on the same machine. My actionscript is slower as well. It has something to do with matching text instances I think but I haven't figured out how to turn it off yet. If anyone knows,

[flexcoders] Flash builder 4 installation options

2010-03-24 Thread stephen_anson
Hi, I currently am working on Flex projects using flex builder 3, installed as a plugin to eclipse. I also do java server development using eclipse. I'm looking to upgrade to take advantage of the new tools in flash builder, but am concerned that this may give me issues. Anybody got advice in

Re: [flexcoders] Flash builder 4 installation options

2010-03-24 Thread Tom Chiverton
On Wednesday 24 Mar 2010, stephen_anson wrote: Anybody got advice in this area, as I've googled and found nothing helpful Backup your workspace and eclipse install. Make sure you on a recent Eclipse (3.5 or late 3.4) supported by FB, if not, upgrade Eclipse and your other tools. Uninstall the

[flexcoders] Flash Builder 4 - How to update?

2010-03-22 Thread Eduardo Dias
Hi Guys, Does anyone know how can i update the Flash Builder 4 from beta to the newest final release? Thanks ! -- Best Regards, Eduardo Dias

Re: [flexcoders] Flash Builder 4 - How to update?

2010-03-22 Thread Igor Costa
Unistall the existing beta. download the new one and install. Thats all you need Igor Costa www.igorcosta.com www.igorcosta.org On Mon, Mar 22, 2010 at 7:30 PM, Eduardo Dias eduardod...@gmail.com wrote: Hi Guys, Does anyone know how can i update the Flash

[flexcoders] Flash Builder 4

2010-03-09 Thread Eduardo Dias
Hi Everybody, Does anyone know if the Flash Builder 4 will be distributed in standard and professional version like the Flex Builder 3? If so, what will be the main differences between them in terms of features and price. In addition, i would like to know what will be the extra cost that I will

[flexcoders] flash builder 4 and Zend framework

2010-03-08 Thread Scott
I've built an application in Flash Builder 4 and am working on the final piece; the security. Not knowing much of anything about the zend framework, I've done a few searches on the Internet looking for examples on how to use zend_auth and zend_acl. All of the examples I found are written

RE: [flexcoders] flash builder 4 and Zend framework

2010-03-08 Thread Scott
...@yahoogroups.com] On Behalf Of Scott Sent: Monday, March 08, 2010 4:24 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] flash builder 4 and Zend framework I've built an application in Flash Builder 4 and am working on the final piece; the security. Not knowing much of anything about

RE: [flexcoders] Flash builder 4 List control (remove items)

2010-02-01 Thread Scott
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flash builder 4 List control (remove items) The List's dataprovider is an IList or ICollectionView. Ilist has a removeItem. On 2/2/10 3:56 PM, Scott h...@netprof.us wrote: I'm

[flexcoders] Flash builder 4 List control (remove items)

2010-01-31 Thread Scott
I'm using Flash Builder 4 with PHP. I've used lists before with no issue but I can't seem to find the removeItem() anywhere. Does anyone know if they changed the function for removing an item out of a list? Thanks. sj

Re: [flexcoders] Flash builder 4 List control (remove items)

2010-01-31 Thread Alex Harui
The List’s dataprovider is an IList or ICollectionView. Ilist has a removeItem. On 2/2/10 3:56 PM, Scott h...@netprof.us wrote: I’m using Flash Builder 4 with PHP. I’ve used lists before with no issue but I can’t seem to find the removeItem() anywhere. Does anyone know if they changed

[flexcoders] Flash Builder 4 HTML wrapper issue

2010-01-08 Thread kris range
I just started to try out FB4 the other day. When I uncheck the settings to Generate HTML Wrapper and place my own custom HTML in there and publish, it deletes my HTML file. This wasn't the functionality in FB3. Has anyone experienced this issue? Any clue how I can create custom HTML without it

[flexcoders] Flash Builder 4 Profiler and memory leak hunting

2009-12-22 Thread brett.adam
I've seen some older threads on this topic, but not a recent one given the recent release of FB4 b2 As Doug McCune noted some time back, the profiler in FB4 produces some confusing output in the Object References view on a (supposedly) un-GC'able object. In FB4b2 I'm still seeing many long,

RE: [flexcoders] Flash Builder 4 Profiler and memory leak hunting

2009-12-22 Thread 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 brett.adam Sent: Tuesday, December 22, 2009 8:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flash Builder 4

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-12-01 Thread Tom Chiverton
On Tuesday 24 Nov 2009, thomas parquier wrote: No item appears unless you uncheck group by category because packages are uncategorized, I think. Then you would be able to install fb4linux, great ! OK, I got it installed. Some oddness in the GUI. See the issue for the full details. -- Helping

Re: Re: [flexcoders] Flash Builder 4 for Linux

2009-11-29 Thread freak182
Hello, I try this flash4builder and it rocks. but the design mode is not working? thanks. cheers. Ek0 wrote: By the way, you don't have to use a 32bit Firefox to have it all running on 64 bits Linux systems. Just download the Linux debugger version, then run a locate libflashplayer.so

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-25 Thread thomas parquier
run is working but not debug... in the debug perspective, the app gets terminated before even being launched. I've installed air2 sdk. thomas parquier --- http://www.web-attitude.fr/realisations/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-24 Thread Tom Chiverton
On Tuesday 24 Nov 2009, feiy wrote: i don't know any issue about eclipse 3.5,and i work with eclipse 3.5,every work fine! I logged it in the issue tracker, but basically it wont install for me (Ubuntu 9,10). -- Helping to competently monetize enterprise-class essential cross-media content

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-24 Thread thomas parquier
I managed to install fb4linux with galileo, but installtion took a few tenth of minutes. thomas parquier --- http://www.web-attitude.fr/realisations/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-24 Thread Tom Chiverton
On Tuesday 24 Nov 2009, thomas parquier wrote: I managed to install fb4linux with galileo, but installtion took a few tenth of minutes. Please see the steps in the issue. http://code.google.com/p/fb4linux/issues/detail?id=5 What did you do differently ? -- Helping to enthusiastically

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-24 Thread thomas parquier
No item appears unless you uncheck group by category because packages are uncategorized, I think. Then you would be able to install fb4linux, great ! thomas parquier --- http://www.web-attitude.fr/realisations/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net

[flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-23 Thread feiy
this version fixed the can't run/debug air bug! more info:http://code.google.com/p/fb4linux/ 闲云孤鹤 - 清冷香中抱膝吟

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-23 Thread Tom Chiverton
On Monday 23 Nov 2009, feiy wrote: this version fixed the can't run/debug air bug! Any update on the Eclipse 3.5 issue ? -- Helping to economically participate unique end-to-end high-end markets as part of the IT team of the year, '09 and '08

Re: [flexcoders] Flash Builder 4 for Linux Apha3 Released!

2009-11-23 Thread feiy
Eclipse 3.5 issue ?! i don't know any issue about eclipse 3.5,and i work with eclipse 3.5,every work fine! 闲云孤鹤 - 清冷香中抱膝吟 On Mon, Nov 23, 2009 at 11:38 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Monday 23 Nov 2009, feiy wrote: this version fixed the can't run/debug air bug!

[flexcoders] Flash Builder 4 for Linux Apha2 Released!

2009-11-21 Thread feiy
more info :http://code.google.com/p/fb4linux/wiki/WhatIsNewAlpha2 闲云孤鹤 - 清冷香中抱膝吟

Re: [flexcoders] Flash Builder 4 for Linux Apha2 Released!

2009-11-21 Thread thomas parquier
Hi, First big thank you for your work !! Would there be any issue to self-upgrade ganymede to galileo after flashbuilder get installed ? Could you please upload the tar.gz to google code ? Have a good day, thomas --- http://www.web-attitude.fr/realisations/ msn : thomas.parqu...@web-attitude.fr

Re: [flexcoders] Flash Builder 4 for Linux Apha2 Released!

2009-11-21 Thread feiy
the package size:162M,but the google code has 100M limit! 闲云孤鹤 - 清冷香中抱膝吟 On Sat, Nov 21, 2009 at 9:23 PM, thomas parquier mailingli...@web-attitude.fr wrote: Hi, First big thank you for your work !! Would there be any issue to self-upgrade ganymede to galileo after flashbuilder get

Re: [flexcoders] Flash Builder 4 for Linux Apha2 Released!

2009-11-21 Thread thomas parquier
What a pity : besides google mail offers more than 7GB for storage... thomas parquier --- http://www.web-attitude.fr/realisations/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056 2009/11/21 feiy

[flexcoders] Flash Builder 4 for Linux

2009-11-17 Thread feiy
hi, i had ported the flash builder 4 to linux,more info: http://code.google.com/p/fb4linux/ 闲云孤鹤 - 清冷香中抱膝吟

[flexcoders] Flash Builder 4 project structure

2009-10-01 Thread gtb104
Does anyone know of a resource that specifies the best way to structure a very large Flex project? Our current Flex 3 project is comprised of 30 separate flex projects that each represent a 'display' within the overall application. So there's the main app project which is pretty small. It has

Re: [flexcoders] Flash Builder 4 project structure

2009-10-01 Thread Richard Rodseth
Couple of quick thoughts 1) Up the Eclipse/FB memory (Google for instructions) 2) Look into flex-mojos for maven-based builds 3) If you're sharing code you *are* going to need library projects as you describe, and in my experience a bunch of projects does slow down FB considerably. On Thu, Oct

[flexcoders] Flash builder 4 Slower Compilation

2009-09-20 Thread Everson Alves
Hello, I'm trying to use FB4 as main ide. Ok, I know it's beta! But everything that I want works. The problem is that the compilation time on the same workspace with a lot of big java and flex projects is much longer than the time when I'm using FB3. It's really weird but it's true. I have both

[flexcoders] Flash Builder 4 and WebServices: Error with CrossDomain?

2009-07-22 Thread Rogerio Gonzalez
Hi there! I am doing some tests with FB4 and Webservices, and got security errors, but when compiled on FB3, is all fine. The crossdomain is this: ?xml version=1.0? !DOCTYPE cross-domain-policy SYSTEM http://www.adobe.com/xml/dtds/cross-domain-policy.dtd; cross-domain-policy site-control

[flexcoders] flash builder 4 license error

2009-06-24 Thread Johannes Nel
Hi All I managed to install the plugin version of Flash Builder 4 without an issue, it gave me a license error but continued working, I installed the modeling plugin and then my actionscript editor stopped working. A lot of the jars that came with the modeling plugin were already part of my