Re: [flexcoders] Flex Builder 3 Installation?

2010-07-26 Thread Sajid Hussain
I think it would work , because it shared different eclipse ide . Sajid From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Sun, July 25, 2010 8:55:32 AM Subject: [flexcoders] Flex Builder 3 Installation? Do you think if we can

Re: [flexcoders] Flex Builder won't use my changes

2010-03-21 Thread Lee Jenkins
Rick Genter wrote: I've been building an app with Flex Builder 3. All of a sudden when I run my app using the debugger I no longer see my changes reflected. For example, I have a class where I deleted several trace() calls and added another trace() call, yet when I run the app I'm

Re: [flexcoders] Flex Builder won't use my changes

2010-03-21 Thread kris range
Check the date of the debug swf flex builder is building to make sure they are the latest ones...if not that, I'm sure you've already tried this but a browser cache clear is also something to try. I tend to always use Firefox with web developer no-cache settings but whenever I test in Safari or

Re: [flexcoders] Flex Builder won't use my changes

2010-03-21 Thread Mike Chabot
Disable your browser cache. I have to do this when developing. -Mike Chabot On Sat, Mar 20, 2010 at 7:49 PM, Rick Genter rick.gen...@gmail.com wrote: I've been building an app with Flex Builder 3. All of a sudden when I run my app using the debugger I no longer see my changes reflected. For

Re: [flexcoders] Flex Builder won't use my changes (resolved, without explanation)

2010-03-21 Thread Rick Genter
On Mar 21, 2010, at 8:32 AM, Lee Jenkins wrote: Are they any linked projects? If so, try cleaning them as well or clean all when asked. I had the same problem with a main project which referenced custom library folders. Seems FB has a problem keeping everything in sync. Not sure if

RE: [flexcoders] Flex Builder Out of Memory Errors

2010-03-19 Thread Christopher McArthur
Yeah, I get this constantly too. I have 4GB of ram, and Flexbuilder never goes above 700Mb, but still get the errors constantly. Ive also tried everything I can find on google adjusting the memory settings, tried values all over the place, and nothing, constnatly out of memory crashes. Our

Re: [flexcoders] Flex Builder build and search functions die on Vista

2010-02-22 Thread Tom McNeer
Hi, First, let me apologize for the long delay in replying. Thank you, Peeyush and Lee, for offering your help. Lee, In my case, the only linked libraries are pre-compiled .swcs, not projects within the workspace. So I don't guess our problems are the same. Thank you, though. Peeyush, All the

Re: [flexcoders] Flex Builder build and search functions die on Vista

2010-02-20 Thread Lee Jenkins
Tom McNeer wrote: Very strange. Vista, 32-bit. Flex Builder 3 plug-in. Eclipse 3.4 Ganymede. Flex SDKs 3.4 and 3.5. A couple of days ago, I noticed that Flex Builder was not re-building projects before running them. I attempted to compile using Project Build Project, and nothing

Re: [flexcoders] Flex Builder build and search functions die on Vista

2010-02-19 Thread Peeyush Tuli
Does changing the workspace location and recreating it help? Do you have any source linkages in any of the projects to folders located outside the workspace? On Fri, Feb 19, 2010 at 10:00 PM, Tom McNeer tmcn...@gmail.com wrote: Very strange. Vista, 32-bit. Flex Builder 3 plug-in. Eclipse

Re: [flexcoders] Flex builder automation?

2010-02-12 Thread Mykola Dzyuba
Hi Nick, Yes, it is possible. What is the goal of the automation? If you want just a clean build done automatically, the ANT build would be a good option. If you want to automate Flash Builder UI, you can develop an Eclipse plugin that would do that. Or you can use Eclipse UI automation

Re: [flexcoders] Flex Builder 3 - A little to be desired [1 Attachment]

2010-02-06 Thread Clark Stevenson
I have not filed a bug yet because i dont really think im good enough to technically describe the issue. When i went to help new bug i just got a page saying the module is missing or deactive on jira. The best way i can describe it in both FB3 and FB4 is that the actionscript editor does not

Re: [flexcoders] Flex Builder 3 - A little to be desired

2010-02-05 Thread Lee Jenkins
Clark Stevenson wrote: Ugh i can totally appreciate your email. I have struggled pretty much constantly over the last 2 years with all kinds of problems. The more I work with this product, the more I'm convinced that it is a very buggy piece product in very core areas. All kinds

Re: [flexcoders] Flex Builder 3 - A little to be desired

2010-02-03 Thread Jochem van Dieten
On Tue, Feb 2, 2010 at 9:01 AM, Clark Stevenson wrote: I was particulaly depressed the other day when i tried FB4 under an I5 64bit system and ran into the whole forced clean after each build, its not filled me with alot of confidence. I have not experienced that with FB4. Which bug number

Re: [flexcoders] Flex Builder 3 - A little to be desired

2010-02-02 Thread Clark Stevenson
Ugh i can totally appreciate your email. I have struggled pretty much constantly over the last 2 years with all kinds of problems. My favorite one is the one that you describe. For no reason what so ever, pressing save all of a sudden does not work and you need to goto Project Clean. The first

RE: [flexcoders] Flex Builder 3 - A little to be desired

2010-02-01 Thread Gordon Smith
Have you tried the beta of FlashBuilder 4? (FlexBuilder was renamed to FlashBuilder.) http://labs.adobe.com/technologies/flashbuilder4/ Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Lee Jenkins Sent: Monday, February 01,

RE: [flexcoders] Flex Builder help system

2009-09-07 Thread Stephen Gilson
Sure, in the FB menu, select: -Window Preferences to open the Preferences dialog box - In the dialog box, select Help - In the Help pane, select the Use external browser checkbox - Below the checkbox, select Web Browser to pick your browser - Hit OK Stephen From: flexcoders@yahoogroups.com

Re: [flexcoders] Flex Builder 3 - Conditional Debugging

2009-08-27 Thread Wesley Acheson
what I do is something like this. if(shouldBreak){ trace(Break point); } I then put a break point on the trace line. Its the only way round I know about. Regards, Wesley Acheson. On Thu, Aug 27, 2009 at 8:20 AM, Michael Ridland rid...@gmail.com wrote: Hi Is is possible to have

Re: [flexcoders] Flex Builder 3 - Conditional Debugging

2009-08-27 Thread Andriy Panas
import flash.debugger.enterDebugger; if(ShouldBreak()) { enterDebugger() } -- Best regards, Andriy Panas

Re: [flexcoders] Flex Builder 3 - Conditional Debugging

2009-08-27 Thread Ivan Wang
It's impossible with FB3. But you can have it in Flash Builder 4, though it's still beta. Ivan - Original Message - From: Michael Ridland To: flexcoders@yahoogroups.com Sent: Thursday, August 27, 2009 2:20 PM Subject: [flexcoders] Flex Builder 3 - Conditional Debugging

Re: [flexcoders] Flex Builder vs Embedded Fonts - Partially solved

2009-08-06 Thread Warren
OK -- after some digging I think I know what's going on. I'm embedding Verdana font. I'm thinking the issue is that the vertical spacing in the font is different than the default font Flex Builder is using. As a result, the measurement routine is off. This feels like a bug to me -- I'll be

Re: [flexcoders] Flex builder Linux Adobe's Plans

2009-07-20 Thread Tom Chiverton
On Sunday 19 Jul 2009, nospam allowed wrote: http://bugs.adobe.com/jira/browse/FB-19053 For those of you using the Flex Builder on Linux please comment that you wish to see it stay on Linux. Please, *please*, **please* do not just comment ! Please *vote* as well. Adobe have repeatedly said

Re: [flexcoders] Flex builder Linux Adobe's Plans

2009-07-20 Thread Tom Chiverton
Ahh the power of bcc to confuse. Oops. Confused myself :-) This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose

Re: [flexcoders] Flex builder Linux Adobe's Plans

2009-07-20 Thread Tom Chiverton
On Monday 20 Jul 2009, Alan Burns wrote: Have you added me to the Flexcoders group in Yahoo then? How exciting! Ahh the power of bcc to confuse. -- Tom Chiverton Developer tom.chiver...@halliwells.com 3 Hardman Square, Manchester, M3 3EB

Re: [flexcoders] Flex builder Linux Adobe's Plans

2009-07-19 Thread Julien Nicoulaud
Good initiative ;) Julien Nicoulaud http://flex.aixo.fr 2009/7/19 nospam allowed nos...@advancedonsite.com http://bugs.adobe.com/jira/browse/FB-19053 For those of you using the Flex Builder on Linux please comment that you wish to see it stay on Linux.

Re: [flexcoders] Flex Builder, Flash Builder, Flash and Catalyst

2009-06-03 Thread mark . jonkman
Hi Bruce Flash Builder 4 replaces the product formerly known as Flex Builder. Flex know refers solely to the Flex SDK. No idea what so ever as to what they are planning on charging. Sincerely Mark R. Jonkman - Original Message - From: brucewhealton br...@futurewavedesigns.com

Re: [flexcoders] Flex Builder not rebuilding source

2009-05-26 Thread Jeffry Houser
I find this occurs if I re-compile with an active debug sessions. Close all your browser windows, and then clean your project. This does not appear to work every time, though. Cordova Aaron wrote: I've had this problem in the past and never got an answer. The problem is back. I'll be

RE: [flexcoders] Flex Builder not rebuilding source

2009-05-26 Thread Tracy Spratt
@yahoogroups.com Subject: Re: [flexcoders] Flex Builder not rebuilding source I find this occurs if I re-compile with an active debug sessions. Close all your browser windows, and then clean your project. This does not appear to work every time, though. Cordova Aaron wrote: I've had

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

2009-05-05 Thread Tom Chiverton
On Friday 01 May 2009, Sam Lai wrote: 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. Well, that's solved, because the Labs build has a debugger. As for the design view, they might be reaching out and using a

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

2009-05-05 Thread Tom Chiverton
On Friday 01 May 2009, john fisher wrote: FB != Flex - there's always the SDK - most people don't use the design view that much - do they? won't I lose the debugger too? as noted I have to try it... Linux doesn't have the Design View. The SDK comes with a command line debugger - 'fdb'. --

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

2009-05-04 Thread john fisher
I was thinking the same... thomas parquier wrote: As eclipse is java based, how does fb happen to be incompletely ported to linux ? What about opening source of fb ? There must be some java developers who will be able to work on fb.

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

2009-05-03 Thread thomas parquier
As eclipse is java based, how does fb happen to be incompletely ported to linux ? What about opening source of fb ? There must be some java developers who will be able to work on fb. thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone :

RE: [flexcoders] flex builder 3 blazeds and spring

2009-05-01 Thread Gregor Kiddie
Standard is fine, you do not need Pro. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our Internet Web site at www.inps.co.uk

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

2009-05-01 Thread john fisher
Paul Andrews wrote: A really difficullt viewpoint to understand. FB != Flex - there's always the SDK - most people don't use the design view that much - do they? won't I lose the debugger too? as noted I have to try it... Linux doesn't have the Design View. but you do seem happy

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

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

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

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] Flex Builder on Linux been scrapped ?

2009-04-29 Thread Tom Chiverton
On Tuesday 28 Apr 2009, Nick Collins wrote: out IntelliJ IDEA 8.1, which I'm told has pretty nice Flex development features. Just missing the design view and profiler, really... Do you know, does it do CFML/CFScript syntax highlighting ? -- Helping to efficiently incentivize infrastructures

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

2009-04-29 Thread Paul Hastings
Nick Collins wrote: Well, if you really want to develop Flex on Linux, you could always check out IntelliJ IDEA 8.1, which I'm told has pretty nice Flex development features. Just missing the design view and profiler, really... that's like telling me to bet on a race horse w/only 2 legs.

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

2009-04-29 Thread Tom Chiverton
On Wednesday 29 Apr 2009, Paul Hastings wrote: but i wish adobe would come out w/a linux version of FB. i think it's the last bit of desktop s/w holding me to XP. Did you give the release on Labs a go ? It's very nearly there, the bits of Builder it does do almost all work fine (occisonal AIR

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

2009-04-29 Thread Paul Hastings
Tom Chiverton wrote: Did you give the release on Labs a go ? It's very nearly there, the bits of Builder it does do almost all work fine (occisonal AIR app crashes and debug disconnects, for instance). no actually, i thought it was set to expire any day now. i'm very attached to editors (i

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

2009-04-29 Thread Tom Chiverton
On Wednesday 29 Apr 2009, Paul Hastings wrote: no actually, i thought it was set to expire any day now. December. want to have to start all over again, twice (went from cfstudio to eclipse because i upgraded my w/s couldn't find my cfstudio serial number). IDEA would feel close to Eclipse,

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

2009-04-28 Thread Johannes Nel
:( On Tue, Apr 28, 2009 at 4:43 PM, Tom Chiverton tom.chiver...@halliwells.com wrote: It looks like Builder on Linux might be a gonner (http://gruchalski.com/2009/04/22/flex-builder-3-for-linux-on-hold/) - register your support for the product by voting for

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

2009-04-28 Thread Nick Collins
Well, if you really want to develop Flex on Linux, you could always check out IntelliJ IDEA 8.1, which I'm told has pretty nice Flex development features. Just missing the design view and profiler, really... On Tue, Apr 28, 2009 at 10:55 AM, Johannes Nel johannes@gmail.comwrote: :( On

Re: [flexcoders] Flex Builder Compiler Performance Benchmarking

2009-03-25 Thread Matt Chotin
We clearly need to see your application and understand your system configuration. This is obviously something going very wrong, I can't imagine your compilation taking more than 30 seconds, and even that would hopefully be very high. Can you provide the source for your app to us (you can mail

RE: [flexcoders] Flex Builder Compiler Performance Benchmarking

2009-03-25 Thread Tim Rowe
With over 2,000 source and resource files in our application (just the client-side is 1k as, 500 mxml, there's another 8k8 .java on the server side), our compile time is under 30 seconds (on a C2D 2.33 w/4GB), so I would hazard a guess something's wrong. A few things to check/do: 0. Create a

RE: [flexcoders] Flex Builder hangs and I have to end the process when opening app in design view

2009-01-26 Thread Grant Davies
I had this problem when I upgraded my version of SVN client (tortoise) but did not upgrade the SVN plugin for eclipse, do you use SVN at all ? Cheers, Grant ... b l u e t u b e i n t e r a c t i v e. .: Development solutions for creatives :.

Re: [flexcoders] Flex Builder debugger problems

2009-01-23 Thread John McCormack
If the SWF takes a long time to build you will see that. I sometimes got that when it couldn't find the debugger, but not recently. It's sometimes slow waiting for something to be loaded/decoded, or even when waiting at a breakpoint. Because the two programs don't run independently IE may show

Re: [flexcoders] Flex Builder debugger problems

2009-01-23 Thread Mark Carter
I also experience this though it only happens about 5% of the time for me. I'm debugging my Flex app running in the standalone Flash Player 10. * Usually, my flex app takes a couple of seconds to launch once the workspace has finished building. * About 20% of the time, the flash player window

Re: [flexcoders] flex builder student version

2009-01-22 Thread Sam Lai
Check that your license.properties file exists in the right location with the right key - the locations are here, http://blogs.adobe.com/flexdoc/2008/04/extracting_data_visualization.html If it doesn't a reinstall of FB3 might help. 2009/1/22 Vivian Richard kanps...@gmail.com: But Sam I am

Re: [flexcoders] flex builder student version

2009-01-22 Thread Vivian Richard
reinstall worked. Thanks On Thu, Jan 22, 2009 at 8:38 AM, Sam Lai samuel@gmail.com wrote: Check that your license.properties file exists in the right location with the right key - the locations are here, http://blogs.adobe.com/flexdoc/2008/04/extracting_data_visualization.html If it

Re: [flexcoders] Flex Builder 3 + Eclipse plugins vs. MyEclipse + FB3 plugin?

2009-01-21 Thread s.m.srinivas
Hi Aswin, can you please send me screen shot error message. Assuming that you have followed steps correctly and when you click on Run Run As Flex Application in the right click menu or on Menu's on top, you see the message I believe. Am I wrong? Correct me if I am. The message clearly

Re: [flexcoders] flex builder student version

2009-01-21 Thread Sam Lai
Yes - I've built an app using a student license from flexregistration.com and it has no watermarks on the charting components. Even better, there is no limitation if you wish to commercialise your creation - no need to buy a copy of Flex Builder for commercial purposes. 2009/1/22 hworke

Re: [flexcoders] flex builder student version

2009-01-21 Thread Vivian Richard
But Sam I am getting the water mark!!! Do you know why? I put the serial number on help-Manage Flex licenses and I thought it should take care of it. But it did not!!! On Wed, Jan 21, 2009 at 11:47 AM, Sam Lai samuel@gmail.com wrote: Yes - I've built an app using a student license from

RE: [flexcoders] Flex Builder 3 crashes (Vista)

2009-01-17 Thread Kevin Benz
Been there, done that. OK.. There are two paths for you. Eclipse Errors: Eclipse makes mountains of log entries so you need to isolate Flex issues from Eclipse Issues. Go through the eclipse logs looking for errant components and Null Pointer Exceptions. Although the openness of

Re: [flexcoders] Flex Builder 3 + Eclipse plugins vs. MyEclipse + FB3 plugin?

2009-01-08 Thread s.m.srinivas
Hi, I have posted an article in my http://riawanderer.blogspot.com/ blog which explains how to install Flex Builder on MyEclipse. This post has Video, Text Images showing you the steps to achieve it. Hope it's helpful. Thanks, Srinivas gers32-3 wrote: Hi, I've been using MyEclipse +

Re: [flexcoders] flex builder could not publish the project source: null

2009-01-06 Thread Joseph Balderson
This just happened to me on a Flex project in FB 3.0.1. What cleared it up was I had downloaded a linked folder from a repository which was broken because I didn't have the same reference as the person who created it. Once I deleted the linked folder it exported the source just fine.

Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content

2009-01-02 Thread li wenzhi
Leader http://www.ultrapower.com.cn From: Rick Schmitty flexc...@gmail.com To: flexcoders@yahoogroups.com Sent: Wednesday, December 31, 2008 10:54:10 PM Subject: Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content There are indeed a bunch

Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content

2009-01-02 Thread Rick Schmitty
...@gmail.com To: flexcoders@yahoogroups.com Sent: Wednesday, December 31, 2008 10:54:10 PM Subject: Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content There are indeed a bunch of examples, but none mention the use of Flex Builder debuging in IE that I've seen. I've tried

Re: [flexcoders] flex builder 3 on mini notebooks

2009-01-02 Thread Ralf Bokelberg
I had one (1.8 Atom) for a day and decided to send it back. It was too weak to scroll large websites, so i don't even bothered to install something like FlexBuilder. Ralf. On Fri, Jan 2, 2009 at 7:09 PM, hworke kanps...@gmail.com wrote: Hi now a days the stores are full of those $300 to $500

RE: [flexcoders] flex builder 3 on mini notebooks

2009-01-02 Thread Jim Hayes
I've got an eee901 with that spec, and it's an OK little machine for when I'm out and about and want low weight, small size and long battery. Performance is not so bad for what it is, but I've never bothered running flexbuilder on it. When I started with flexbuilder 2 I ran it on a 1.6 single

Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content

2008-12-31 Thread Rick Schmitty
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Rick Schmitty Sent: Monday, December 29, 2008 9:08 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content Sorry.. confused

RE: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content

2008-12-30 Thread Tracy Spratt
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content Sorry.. confused... isn't that what my html is doing? SWFObject is instantiating FlashPlayer afaik? On Mon, Dec 29, 2008 at 3:10 PM, Tracy Spratt tspr...@lariatinc.com mailto:tspratt

RE: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content

2008-12-29 Thread Tracy Spratt
The way around that IE thing is, instead of directly declaring the Object/embed tag, use javascript to instantiate the FlashPlayer. That is why the generated wrapper calls the function in the .js file. Tracy From: flexcoders@yahoogroups.com

Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content

2008-12-29 Thread Rick Schmitty
Sorry.. confused... isn't that what my html is doing? SWFObject is instantiating FlashPlayer afaik? On Mon, Dec 29, 2008 at 3:10 PM, Tracy Spratt tspr...@lariatinc.com wrote: The way around that IE thing is, instead of directly declaring the Object/embed tag, use javascript to instantiate the

RE: [flexcoders] Flex Builder caching PNGs

2008-12-09 Thread Jim Hayes
From what I can tell FB will not detect changes in files (images, and I believe css files) by itself, so if you change one then run/debug it will think nothings different and just show the last compiled version. When I'm doing stuff like that, I've got into the habit of just adding/deleting a

Re: [flexcoders] Flex Builder caching PNGs

2008-12-09 Thread Fotis Chatzinikos
Hi Tom, I had the same problem, did not really found a good solution... It seems that flex does some kind of trancoding and this does not pick up changed... What worked is to delete all images, recompile the project, get some errors on missing resources and then paste the new images and

Re: [flexcoders] Flex Builder caching PNGs

2008-12-09 Thread Jon Bradley
On Dec 9, 2008, at 8:26 AM, tom s wrote: How do I get Flex Builder to not cache the PNGs / to check for changes on each compile? I think there's a bug there somewhere. What I do is go into the class where the embed tag is and make a change to the embed tag, then save, then make the

Re: [flexcoders] Flex builder 2 standalone - plugin wouldn't show up

2008-11-03 Thread Tom Chiverton
On Sunday 02 Nov 2008, rviswanathan wrote: I think I am missing something. Can someone please help? Have you attempted any debugging yourself ? -- Tom Chiverton Helping to preemptively innovate performance-oriented CEOs This email is

Re: [flexcoders] Flex builder annoyance - library projects

2008-10-29 Thread Michael Schmalle
Hi, I can say ANT is your answer, build the SWC using it. I have very complex libraries, and all I maintain is a simple ant xml included file (that is imported from the master build file, this includes multiple project library builds at once) that lists the front end class clients, the linker

Re: [flexcoders] Flex builder 3 pro debugging doesn't work any more.

2008-10-29 Thread Tom Chiverton
On Wednesday 29 Oct 2008, gr33neye501 wrote: Perhaps there is a way to use Flex builder 3 pro and the flash10 debug. If so how to i configure this. I have little experience in this. Yes, install it. The list archives and/or Google have endless instructions. -- Tom Chiverton Helping to

Re: [flexcoders] Flex builder annoyance - library projects

2008-10-29 Thread Farid SALAH
Le 29 oct. 08 à 17:06, Michael Schmalle a écrit : Hi, I can say ANT is your answer, build the SWC using it. I have very complex libraries, and all I maintain is a simple ant xml included file (that is imported from the master build file, this includes multiple project library builds

RE: [flexcoders] Flex builder 3 pro debugging doesn't work any more.

2008-10-29 Thread Blake Barrett
You need to find and download the debug version of the flash player. The standard install that you get while surfing the web is the normal player version. Blake From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gr33neye501 Sent: Wednesday,

Re: [flexcoders] flex builder interface

2008-10-27 Thread Michael Schmalle
Hi, That is the Flex Builder Plugin that gets installed into the Eclipse version. You are using the stand alone version of Flex Builder which uses Adobe's look and feel. Mike On Mon, Oct 27, 2008 at 4:58 AM, elliotwilliams77 [EMAIL PROTECTED] wrote: does anyone know how to change the flex

Re: [flexcoders] flex builder 3 and ganymede

2008-10-23 Thread Kurt Wiersma
I was able to get the latest version of the FB3 plugin to work in Eclipse 3.4. The first thing I did was make sure I had the latest FlexBuilder 3 Plugin installer (version 3.0.1 I believe). Then I ran the installer which told me it couldn't complete the install which is fine because all you have

RE: [flexcoders] Flex Builder 4?

2008-10-10 Thread Dimitrios Gianninas
No one from Adobe has said anything yet, but one must assume it will be out at the same time as Flex 4, which is most likely sometime in 2009. Dimitrios Gianninas RIA Developer Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Flex Builder 4?

2008-10-10 Thread Battershall, Jeff
To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex Builder 4? No one from Adobe has said anything yet, but one must assume it will be out at the same time as Flex 4, which is most likely sometime in 2009. Dimitrios Gianninas RIA Developer

Re: [flexcoders] Flex Builder 4?

2008-10-10 Thread Michael Schmalle
[mailto:[EMAIL PROTECTED] *On Behalf Of *Dimitrios Gianninas *Sent:* Friday, October 10, 2008 9:09 AM *To:* flexcoders@yahoogroups.com *Subject:* RE: [flexcoders] Flex Builder 4? No one from Adobe has said anything yet, but one must assume it will be out at the same time as Flex 4, which

Re: [flexcoders] Flex Builder Does Not Compile Module

2008-09-29 Thread Ralf Bokelberg
Hi Ilike Can you make sure, that AutoInsurance is added as a application to the project properties? Cheers Ralf. On Mon, Sep 29, 2008 at 7:37 PM, ilikeflex [EMAIL PROTECTED] wrote: Hi I am using module to create application.I have taken sample from

Re: [flexcoders] Flex Builder Does Not Compile Module

2008-09-29 Thread Jason Reynolds
In flexbuilder -- right click your project-click properties, go to 'Flex Modules' and add the module to the list. It should compile with the rest of the app now. Hope that is what you needed - Original Message - From: ilikeflex To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Flex Builder Help on Mac falls a bit short

2008-09-11 Thread Nik Derewianka
On 12/09/2008, at 3:08 AM, Troy Gilbert wrote: Now, I'm using FB on Mac (v3). The help is far less useful. When I hit F2, the help goes to the class's page, but doesn't jump to the function/property/style. Worse, the help uses my default web browser, so if I'm in the middle of debugging (a

RE: [flexcoders] Flex Builder compilation : include-libraries possible?

2008-09-04 Thread Gregor Kiddie
Additional Compiler Options in the compiler tab is where I can put the include-libraries options, but I still don't know what this is relative to... The main source path? The root of the project? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread

Re: [flexcoders] Flex Builder

2008-08-27 Thread Howard Fore
No you didn't miss it: https://bugs.adobe.com/jira/browse/FB-11842 On Wed, Aug 27, 2008 at 10:34 AM, George [EMAIL PROTECTED]wrote: Am I missing something? I can't find the ability to create my own code complete templates. If this isn't available, I hope the Adobe team thinks seriously about

RE: [flexcoders] Flex Builder Professional

2008-08-22 Thread Jim Hayes
: [flexcoders] Flex Builder Professional I have used Mylyn with FB, to hit both bugzilla and trac repositories. As soon as I get past some paperwork I'm going to try the connector to Telelogic Change. On Fri, Aug 22, 2008 at 1:31 PM, George [EMAIL PROTECTED] wrote: Which version of Eclipse

Re: [flexcoders] Flex Builder 3.0.1 and Eclipse 3.4 classic not working together

2008-08-19 Thread Howard Fore
Is FB supposed to work with 3.4? I thought it was 3.2/3.3 only. On Tue, Aug 19, 2008 at 11:08 AM, stephen.smithstone [EMAIL PROTECTED] wrote: I downloaded a fresh copy of classic 3.4 and the new FB 3.0.1 from the adobe trail page, the install was successful, how ever there is no flex

Re: [flexcoders] Flex Builder 3.0.1 and Eclipse 3.4 classic not working together

2008-08-19 Thread Douglas Knudsen
http://www.adobe.com/devnet/flex/articles/sdk3_fb301.html 3.0.1 FB is supposed to support Eclipse 3.4 now. FWIW, I too saw the required compatibility notices from Eclipse 3.4 that bombed out. I was trying to install the plugin by pointing Eclipse 3.4 to the *C:\Program Files\Adobe\Flex Builder

Re: [flexcoders] Flex Builder 3.0.1 and Eclipse 3.4 classic not working together

2008-08-19 Thread Douglas Knudsen
jazzamin! I have not tested all functionality yet, I do have work to do after all, but here is how to get FB 3.0.1 into Eclipse 3.4 Ganymede. These are steps using what used to be called a extension point to install plugins externally, a nicer way to enable easier Eclispe upgrades. 1) Help

Re: [flexcoders] Flex Builder Speed-ups?

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Sherif Abdou wrote: with SP1 for Vista. Even ColdFusion takes up to 600,000K on startup I've tuned down the JVM settings on my local dev. environment, as the apps I write don't need all that heap(?). -- Tom Chiverton

Re: [flexcoders] Flex Builder Speed-ups?

2008-07-27 Thread Mike Chabot
You can turn off the Build Automatically option under the project menu. -Mike Chabot On Sun, Jul 27, 2008 at 10:21 AM, tudsy [EMAIL PROTECTED] wrote: My Flex Builder can run extremely slow, almost every keypress sends javaw.exe CPU usage over 50% and this causes an unacceptable lag for even

Re: [flexcoders] Flex Builder Speed-ups?

2008-07-27 Thread Shiva Kumar
use  -incremental option in flex compiler. --- On Mon, 7/28/08, Mike Chabot [EMAIL PROTECTED] wrote: From: Mike Chabot [EMAIL PROTECTED] Subject: Re: [flexcoders] Flex Builder Speed-ups? To: flexcoders@yahoogroups.com Date: Monday, July 28, 2008, 5:09 AM You can turn

Re: [flexcoders] Flex Builder Speed-ups?

2008-07-27 Thread Sherif Abdou
is happening. Running Eclipse+ColdFusion =99% ram used. - Original Message From: Mike Chabot [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 28, 2008 12:09:07 AM Subject: Re: [flexcoders] Flex Builder Speed-ups? You can turn off the Build Automatically option under

Re: [flexcoders] Flex Builder Debug Issue

2008-07-08 Thread Tom Chiverton
On Monday 07 Jul 2008, jonese wrote: everything installs fine. code runs fine will talk to my CF Server etc. BUT the debugging will not connect. And you are sure you've got the debug player in the web browser Builder launches ? And with FireFox, you've disabled all plugins and used a clean

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread Tom Chiverton
On Thursday 03 Jul 2008, jonese wrote: Still looking for anyone who can help fix this issue Firewall in the way ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread jonese
I'm running this all from localhost windows XP Pro, built in IIS. jonese http://www.jonese.us http://twitter.com/jonese On Mon, Jul 7, 2008 at 10:06 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 03 Jul 2008, jonese wrote: Still looking for anyone who can help fix this issue

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread jonese
i've also uninstalled in reinstalled flex builder today. still no joy. next i'll uninstall flash players, flex builder and let flex builder install the player and see if that works jonese http://www.jonese.us http://twitter.com/jonese On Mon, Jul 7, 2008 at 11:23 AM, jonese [EMAIL

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread Tom Chiverton
On Monday 07 Jul 2008, jonese wrote: I'm running this all from localhost Doesn't stop a software firewall from getting in the way. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited

Re: [flexcoders] Flex Builder Debug Issue

2008-07-07 Thread Sherif Abdou
ESET anti-virus/NOD 32 blocks out the flash port. if you have it then it will not work. - Original Message From: jonese [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 10:23:31 AM Subject: Re: [flexcoders] Flex Builder Debug Issue I'm running this all

  1   2   3   4   >