IE vs Firefox - Flash / Flex Problems?

I created just a page layout in Flex 2 and am hosting it on
my laptop. When
I send the link (IP address and location) to a remote person,
they can view
it fine in Firefox, but in IE it wont work. It keeps
prompting them (and
myself) to install Flash 8.
Now, the person who brought this to my attention already has
Flash 8 on his
computer and I have Flash 9.
Why is this and how can I make sure that this doesn't happen
in the future?
Wally Kolcz
Developer / Support

The reason for having the wrong version number in the error
message is related
to the fact that Flash 9 hasn't been released yet. The code
in the project
sees that the user doesn't have Flash 9, so it then loads
special code from
adobe.com, which prompts the user to upgrade.
But, the official download site on adobe.com obviously has
flash 8; thus the
upgrade swf on that site thinks they need flash 8, not flash
9.
In any case, the real problem is that for some reason the
ActiveX version of
Flash 9 didn't install correctly on his computer.
Mike Morearty
Developer, Flex Builder team
http://www.morearty.com/blog
Wally Kolcz wrote:
> I created just a page layout in Flex 2 and am hosting it
on my laptop. When
> I send the link (IP address and location) to a remote
person, they can view
> it fine in Firefox, but in IE it wont work. It keeps
prompting them (and
> myself) to install Flash 8.
>
> Now, the person who brought this to my attention already
has Flash 8 on his
> computer and I have Flash 9.
>
> Why is this and how can I make sure that this doesn't
happen in the future?
>

Similar Messages

  • Firefox / flash playback problem related to the trackpad or mouse. On flash sites, e.g. YouTube, video is halting while audio is continuous; influenced by moving touchpad on MacOSX. FF only problem as plugin works correctly on Opera and other browsers.

    Shockwave 10.3.183.10

    Try to disable the hardware acceleration in the Flash Player.
    See:
    * https://support.mozilla.com/kb/Cannot+view+full+screen+Flash+videos
    * http://www.youtube.com/swf_test.html (right-click the player: Settings)
    Flash "Display settings" window:
    * http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html

  • "Unknown Flex Problem" - 'flash.filesystem:File' is undefined.

    Hi,
    I have written an AIR ActionScript Library project using SDK 4.0.
    I had written code for most AIR components in the library, everything was working fine.
    I then needed to add code for components like FileSystemComboBox, FileSystemDataGrid, FileSystemList, etc.
    For this, I added airglobal.swc and airframework.swc to the library project.
    I am getting the following errors:
    'flash.desktop:Icon' is undefined.   Unknown    Flex Problem
    'flash.events:FileListEvent' is undefined.    Unknown    Flex Problem
    'flash.filesystem:File' is undefined.   Unknown    Flex Problem
    Im guessing that the flash package is present in both playerglobal.swc and airglobal.swc and this is giving rise to the problem internally.
    Can someone tell me how to overcome this?
    Thanks,
    Pradeep.

    I am writing a library for AIR based projects. Any AIR flex project should be able to integrate my swc into their project.
    The goal is automation.
    So, I am having trouble automating FileSystem components in SDK 4.0 only.
    The same is working fine in SDK 3.5 as it does not have a palyerglobal.swc included.
    Can I remove the dependency on playerglobal.swc in SDK 4.0?
    -Pradeep

  • Mac Firefox has a problem with dropdown menus over a flash

    I have notice a problem over the last couple of months when
    using drop down menus from P7, and Quckmenu. The drop down menus
    appears to clip any flash movies below them when using transparent
    settings in css. The recent case the transparent settings where
    apply as following: The wmode of the flash movie set to
    transparent, no problem with flash covering the menu. #qm0 is my
    sub container for the drop down. When commenting out the
    transparent settings, no problem on the Mac. The Firefox browser is
    2.0, and the Mac OS is OS 10, Flash Player 9. I am thinking this is
    Adobe Flash player problem.
    #qm0 div a
    color:#000000;
    padding:2px 20px 2px 5px;
    border-right: 1px solid #000000;
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
    background-color: #f9f9fb;
    filter:alpha(opacity=90);
    -moz-opacity:0.90;
    -khtml-opacity: .90;
    opacity: 0.90;
    My temp work around is to check the http_user_agent for Mac.
    If is a Mac, no transparent menus.
    David Pearson

    Some gestures have been removed in Firefox 4.
    You can restore the zoom feature by changing the values of the related prefs on the <b>about:config</b> page.
    browser.gesture.pinch.in -> <b>cmd_fullZoomReduce</b>
    browser.gesture.pinch.in.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.out -> <b>cmd_fullZoomEnlarge</b>
    browser.gesture.pinch.out.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.latched -> <b>false</b>
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />

  • Compiling an existing as3 packag with flex sdk (for a flash/flex/as beginner)

    Hi
    I am new to flash, flex, mxml, and actionscript (with a strong background in c, python, and scheme and some background in Java, VBA, and Javascript). I have a website for which I would like to develop some simple swf content. Basically, I would like to load esri shp files at runtime (and display a series of them as an animation) using these APIs.
    I have read through some flex getting started material, but I have found that there is no better way to learn a framework/language than to look at and modify existing code. Happily, I've found a sample that is both salient to my project and about the right level of complexity.
    I have the Flex SDK 3 and have created some simple movies. However, I haven't managed to compile the example as3 source code to a successful swf movie. I'd like to write mxml for layout/structure and as3 for functionality, and compile with mxmlc, period. Most examples I've found use of Flex Builder, Adobe Air plugins, other IDEs, etc and so they aren't very helpful.
    Here is a link to the content I'm interested in, and more importantly the as3 source packages (zip or browesable) that I'd like to compile. There are two: ManualCartogramTest.as and USStatesCartogramExample. I can use mxmlc to compile either one sucessfully, but the resulting swf file displays nothing. It seems that I should use the ManualCartogramTest class to create an instance of it, but none of my efforts have worked.
    Can anyone help out? How should I generate the swf movie given one of these packages? What key piece am I missing?
    Jeff
    For completeness, here is another example using the shp/dbf packages (from the creator) that I just can't figure out what to do with.

    1. Perhaps this wasn't the right forum.
    2. I had to use set -use-network=false to enter "local-with-filesystem" mode. Unfortunately, it took a while before I finally used a flash player that told me the problem instead of silently failing. The linux standalone or linux debugger from adobe was key! Gnash, swfdec, and my firefox plugin hid the problem.

  • Firefox Flash Plugin bug?

    Hi everyone,
    I have multiple Flex Applications (wrapped as portlets in
    Liferay) working on the same page at the same time in separate
    flash players, of course.
    When I access the page by Mosilla Firefox browser, all page
    portlets get reloaded after the last one is initialized.
    And the worst - each of them gets initialized again - it
    means that all data gets loaded again. This is proved by log
    records: in case of Firefox each portlet loads data twice, in case
    of using IE - once.
    Have you ever faced the same problem? Is it a Firefox Flash
    plugin bug or what?
    Thanks in advance.

    Updates:
    I've opened a bug with Adobe regarding this issue:
    http://bugs.adobe.com/jira/browse/FP-4362
    Also, the Cancel operation on a FileReference causes the same issue to happen as does loading.  I really think it's an operating system focus issue.
    UPDATE:
    Looks like this has already been tracked and is scheduled to be fixed:
    https://bugs.adobe.com/jira/browse/FP-2785

  • Firefox had a problem and crashed. We'll try to restore your tabs and windows when it restarts.

    do not know what's going on but the Firefox crashing, and is still crashing, and crashing back again ..
    This problem is not resolved for a long time 'and I wonder why not fix this problem so far?
    These details.
    We're Sorry
    Firefox had a problem and crashed. We'll try to restore your tabs and windows when it restarts.
    To help us diagnose and fix the problem, you can send us a crash report.

    I was having the same problem.... But I keep forgetting that when you upgrade firefox... or it updates automatically... you need to right click on the firefox start up icon, go into properties, click on the compatibilities tab, and put a check in the "Run This Program As An Administrator" box, then hit apply. Start Firefox, and it should work OK. Problem is...each time you upgrade firefox and/or I think Adobe flash... you need to make sure that box is checked. This is on Firefox 15.0.1 with Adobe Flash 11.4.402.278 all up to date, Windows 7 64bit. If Firefox has Adobe flash add-on, it needs to run in admin mode or it will crash.

  • How to use a Flash/Flex GUI for DW Extensions

    I am creating a DW extension for an image and flash gallery.
    The extension will be accessible from the Insert menu. Once
    clicked, it would present me with a Flash/Flex form to
    search/browse for images/swf by file name or tags. Once I select an
    image/swf and clicked OK, it would insert into my webpage the
    absolute URL associated with the image/swf. The problem is I am not
    aware of how to create an extension with a Flash/Flex GUI.
    Any suggestions would be greatly appreciated.
    Thanks,
    srtr4k

    You should check out the Flash panels and Dialogs section of
    the Dreamweaver API reference. Here is a link.
    http://help.adobe.com/en_US/Dreamweaver/10.0_API_Ref/WS4FB61645-9C4E-4667-B6D4-0E5F553BEF4 F.html
    This gives you direct access to Flash panels and dialogs from
    the Dreamweaver Javascript API. Adobe is working on a document for
    how to create CSXS based Flash Extensions. CSXS based extensions
    only work as a floating panel that surface themselves in the
    Windows, Extensions menu.
    -Scott Richards
    Dreamweaver Team

  • Flex problem - undefined method

    Hello!
    I was following the tutorial posted at http://www.adobe.com/devnet/livecycle/articles/lcdses2_mdd_quickstart.html but I'm getting an error just after I add the form. 
    I'm getting the following error message: 
    "1061: Call to a possibly undefined method commitRequiredOn through a reference with static type mx.data:DataService. ProductForm.mxml /FiberTest/src/FiberTest/forms line 89 Flex Problem" 
    This is in the code for ProductForm.mxml, and the same goes for lines 171, 178, 184 and 191. 
    Could anybody help me here?
    Thanks!!
    Marcos

    Hi saisri2k2,
    I'm using Flash Builder 4 Standard, build 272416.
    Thank you!
    Marcos

  • Issue with Firefox & Flash Player Installation

    This topic has probably already been brought up but I need
    some help, please! I can't seem to find anything that matches
    exactly what I'm going though here.
    Yesterday I did a clean install of Vista. (I had some missing
    .dll files for some reason). I re-installed Firefox, and went
    through with all the Windows updates, etc. and everything has been
    fine. Today, I have been trying to install Flash Player through
    Firefox (Flash player is working fine on IE). It goes through the
    motion of downloading it from the Adobe site, and it also states
    that the download is complete, but when I go to a website such as
    Facebook, it's giving me a couple of messages. The actual site's
    message is: "Flash Player upgrade required. You must download and
    install the latest version of the Adobe Flash Player to view this
    content." as well as I get the yellow bar up top from Firefox
    saying, "Additional plugins are required to display all the media
    on this page" and has a button to click saying "Install missing
    plugins". When I click on either this button or the "Download
    Flash" button on the actual webpage, again, it goes through the
    motion of downloading it, but that's as far as it goes. In my
    "downloads" window, it shows a bunch of times that I had downloaded
    the flash player, but it doesn't even give me the option to open
    the file.
    Up until yesterday, I did in fact have flash on Firefox.
    Another thing I noticed, was when I re-installed Firefox, the
    download scheme is a little different (I don't have the download
    box at the bottom of the window anymore and I'm not sure why or if
    this is just a new version of Firefox that I didn't have before.)
    In any event, when I would save the flash player during the
    download, I tried a couple of different locations (desktop and
    another location in C drive) but when I go to those locations,
    there is nothing there.
    Any help would be greatly appreciated.
    Carla

    I was having the same problem installing Flash 10 for Firefox
    and getting the "Insufficient Disk Space" message. I believe this
    happens to people whose main local disks have a name other than
    "C:" Mine is "G:" I think the problem is that its an install
    package that automatically tries to install it on a C: local disk
    directory. There is no option to manually install it to a different
    directory, so we seem to be out of luck.
    However, I did find a link explaining how to manually install
    it:
    http://www.varesano.net/blog/fabio/installing+flash+player+plugin+firefox+without+having+a dministrator+access+or+premissions
    At step 1. Right click the link and choose "Save Link As" and
    delete the ".xpi" extension and type ".zip" to save the file as a
    ".zip" file.
    Even though the instructions are for a different problem, I
    followed the steps and it worked fine for my problem as
    well.

  • Why does Flash/Flex Builder 4 Premium downgrade to Standard when I install Flash Player Debug?

    Why does Flash/Flex Builder 4 Premium downgrade to Standard when I install Flash Player Debug?
    I installed a corporate install of Flex/Flash Builder 4 Premium, and verified that it was the Premium version was installed.  The Start Page said that Flash Player was needed to display the text, so I installed Flash Player 10 Debug -- first download link from here:
    http://www.adobe.com/support/flashplayer/downloads.html
    When I then started Flex Builder 4, the splash screen showed Premium, but as soon as the Start Page was visible, it showed "FB Adobe Flash Builder 4 Standard" --- Help | About showed Standard, and the splash screen from then on showed Standard.
    A Google search showed a work around for this, but it requires a license for Premium, which I don't have because our corporate install has it built-in:
    http://bloginblack.de/2010/05/adobe-master-collection-cs5-breaks-flash-builder-4-premium-a nd-how-to-fix-it/
    1. Anyone know how to resolve this?
    2. Can Adobe fix this?
    Thanks!

    I had similar problem. I was involved in Flash Builder prerelease program and few months later I installed Adobe CS5 Master Collection. After that I had a same situation.  Best thing was, my Flash Builder Beta was Premium version but acted like Standard, and FB from CS5 was Standard but acted like Premium. I removed CS5 and beta version of CS5. used CS5 Cleaning Fix and then reinstalled my apps.
    I was lucky that I didn't have many big projects involved in FB beta or CS5 workspaces, I heard some guys had problems with migrated workspace configurations but I don't know what was the problem.

  • Youtube/Firefox/Flash player 10.3.181.34 bug

    Hi, i have a weird problem with flash player on youtube. If i press esc while watching a video on youtube the flash player plugin crash.
    Steps to reproduce:
    1. Open firefox.
    2. Open youtube.
    3. Open any youtube video
    4. Change to full screen.
    5. Press esc.
    Result: flash player crashes.
    I don't have this problem with embedded youtube videos, just with www youtube com.
    Downgrading to Flash Player 10.2.159.1 or disabling hardware acceleration fixes the problem.
    This problem started when youtube changed their video frame to black some weeks ago...
    So i'm confused i don't know if it is a Youtube problem, flash player problem, firefox problem or something else.
    Pc spec:
    Intel core 2 duo E7300
    nvidia 8400 gs

    Hi, surfing in the web i find a feasible workaround "A quick fix is to swap watch?v= with embed/ in the URL" from ubuntu forums "http://ubuntuforums.org/showpost.php?p=10516541&postcount=6".
    I follow your advice and filed a new bug report fp-7485 but i dont' know why(security reason maybe) it's flagged as private.
    I hesitate to upgrade the nvidia driver to the latest version 275.33 due a bug not fixed yet that messed up the nvidia control panel, the profiles, etc. But as soon as they fix it i will try.

  • Netscape/Firefox Flash-Plug-In

    Wer kann mir verraten, wo genau dieses Plug-In auf der Adobe-Seite herunterzulagen ist. Meine bisherige Suche war leider vergeblich. Ich hoffe, mir kann da jemand behilflich sein.
    Vielen Dank
    Wolfgang

    Vielen Dank für die schnelle Antwort, leider ist mein Problem damit nicht gelöst. Obwohl ich den aktuellsten Adobe-Flashplayer bereits installiert habe, kann ich die Live-Ansicht nicht öffnen. Es erscheint nach wie vor folgender Hinweis:
    Das Flash-Plug-In wurde nicht gefunden. Um SWF-Inhalte in der Live-Ansicht anzuzeigen, installieren Sie das Netscape/Firefox-Flash-Plug-In, das Sie unter www.adobe.com/de herunterladen können.
    Mit freundlichen Grüßen
    Wolfgang Schwabe (Prokurist)
    Saatzucht Flettmar-Wittingen eG                                
    Raiffeisen-Warengenossenschaft
    Am Bahnhof 18 - 38539 Müden/Aller
    Telefon:         05375/2061
    Telefax:         05375/20402
    E-Mail:          [email protected]
    Internet:         www.sfweg.de
    Genossenschaftsregister:                          Amtsgericht Hildesheim Nr. 100002
    Geschäftsführendes Vorstandsmitglied:   Henning Pistorius
    Vorsitzender des Vorstandes:                   Rudolf Müller
    Vorsitzender des Aufsichtsrates:               Hinnerk Bode-Kirchhoff
    Umsatzsteueridentifikationsnummer:        DE 115239468

  • Firefox is having problems in opening some Web Sites

    == Issue
    ==
    Firefox is having problems with certain web sites
    == Description
    ==
    When I open my Home Page, I get the following message: A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: http://04.nscdn.optusnet.com.au/common/js/30062010/app.main.js:1415
    == URL of affected sites
    ==
    http://optuszoo.com.au
    == Troubleshooting information
    ==
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Microsoft .NET Framework Assistant
    1.1
    false
    {20a82645-c095-46ed-80e3-08825760534b}
    ZoneAlarm Toolbar
    1.5.53.4
    false
    MSN Toolbar
    4.0
    false
    [email protected]
    Search Helper Extension
    1.0
    false
    {27182e60-b5f3-411c-b545-b44205977502}
    Adobe DLM (powered by getPlus(R))
    1.6.2.63
    true
    Modified Preferences
    Name
    Value
    browser.history_expire_days.mirror
    180
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage
    http://www.optuszoo.com.au/
    browser.startup.homepage_override.mstone
    rv:1.9.2.3
    extensions.lastAppVersion
    3.6.3
    network.cookie.prefsMigrated
    true
    places.last_vacuum
    1276732365
    privacy.cpd.formdata
    false
    privacy.cpd.sessions
    false
    privacy.sanitize.migrateFx3Prefs
    true
    security.warn_viewing_mixed
    false
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows Vista
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-getplusplusadobe16263
    *Google Update
    *Adobe PDF Plug-In For Firefox and Netscape

    I had posted the problem previously & accidently marked the problem as solved.
    I received the following message since:
    "I am not sure how my previous post solved the problem but since then I think I have found the answer.
    I simply enabled Shockwave Flash 10.0.32.18
    From the Firefox Homepage it is located under:
    Tools\Add Ons then select the PlugIns Tab
    Select Shockwave Flash then enable it.
    Regards,
    Phil "
    This has fixed the problem. Thanks Phil.

  • Another Compiler Bug (message: An internal build error has occurred... Unknown Flex Problem)

    I was fighting with this problem for a few days. Finally I've got it resolved. I want to describe it and fill in BUG in the bug report, but I am not sure about Adobe support options. So, I am putting bug report here.
    1. ASSUMPTION: All problems which compiler reports as unknown problem are the real compiler BUGs/Problems. Eventually MXML compiler/ActionScript compiler should be able to take C++ or FORTRAN code or an aribitrary text and nicely tell "Error: It is not ActionScript (Flex) code" or "the code is corrupted from Line so and so...". When compiler crashed, it is most probably due to one of the states not handled (or not handled correct). Keeping this in mind I assume, that my code has nothing to do with the compiler crash.
    2. PROBLEM Description.
         - I tried to port our internal project from Flex3.5/Flex Builder 3 to Flex4.1/Flash Builder 4.
         - After checking out and trying to build code I start getting weird problems like Error 1037: Packages cannot be nested.
         - After cleaning and compiling project by project, walking up dependency tree, I was able to get rid of this problem.
         - On last Project I've got another problem (An internal build error has occurred... Unknown Flex Problem). Which I stuck with for a while.
         - When I checked log file I found following messages:
    ============================================================
    !ENTRY com.adobe.flexbuilder.project 4 43 2010-12-21 15:45:24.353
    !MESSAGE Uncaught exception in compiler
    !STACK 0
    java.lang.ClassCastException: macromedia.asc.parser.InputBuffer cannot be cast to flex2.compiler.as3.CodeFragmentsInputBuffer
    at flex2.compiler.as3.AbstractSyntaxTreeUtil.lineNumberToPosition(AbstractSyntaxTreeUtil.jav a:1266)
    at flex2.compiler.mxml.ImplementationGenerator.generateBinding(ImplementationGenerator.java: 569)
    at flex2.compiler.mxml.ImplementationGenerator.generateBindingsSetupFunction(ImplementationG enerator.java:863)
    at flex2.compiler.mxml.ImplementationGenerator.generateBindingsSetup(ImplementationGenerator .java:812)
    at flex2.compiler.mxml.ImplementationGenerator.generateInitializerSupportDefs(Implementation Generator.java:1878)
    at flex2.compiler.mxml.ImplementationGenerator.generateClassDefinition(ImplementationGenerat or.java:1044)
    at flex2.compiler.mxml.ImplementationGenerator.<init>(ImplementationGenerator.java:206)
    at flex2.compiler.mxml.ImplementationCompiler.generateImplementationAST(ImplementationCompil er.java:499)
    at flex2.compiler.mxml.ImplementationCompiler.parse1(ImplementationCompiler.java:197)
    at flex2.compiler.mxml.MxmlCompiler.parse1(MxmlCompiler.java:168)
    at flex2.compiler.CompilerAPI.parse1(CompilerAPI.java:2871)
    at flex2.compiler.CompilerAPI.parse1(CompilerAPI.java:2824)
    at flex2.compiler.CompilerAPI.batch2(CompilerAPI.java:446)
    at flex2.compiler.CompilerAPI.batch(CompilerAPI.java:1274)
    at flex2.compiler.CompilerAPI.compile(CompilerAPI.java:1496)
    at flex2.tools.oem.Application.compile(Application.java:1188)
    at flex2.tools.oem.Application.recompile(Application.java:1133)
    at flex2.tools.oem.Application.compile(Application.java:819)
    at flex2.tools.flexbuilder.BuilderApplication.compile(BuilderApplication.java:344)
    at com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder$MyBuilder.mybuild(A SApplicationBuilder.java:276)
    at com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder.build(ASApplication Builder.java:127)
    at com.adobe.flexbuilder.multisdk.compiler.internal.ASBuilder.build(ASBuilder.java:190)
    at com.adobe.flexbuilder.multisdk.compiler.internal.ASItemBuilder.build(ASItemBuilder.java:7 4)
    at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.buildItem(FlexProjectB uilder.java:480)
    at com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.build(FlexProjectBuild er.java:306)
    at com.adobe.flexbuilder.project.compiler.internal.FlexIncrementalBuilder.build(FlexIncremen talBuilder.java:157)
    at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:633)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:170)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:201)
    at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:253)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:256)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:218)
    at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:360)
    at org.eclipse.core.internal.resources.Project.internalBuild(Project.java:516)
    at org.eclipse.core.internal.resources.Project.build(Project.java:94)
    at org.eclipse.ui.actions.BuildAction.invokeOperation(BuildAction.java:221)
    at org.eclipse.ui.actions.WorkspaceAction.execute(WorkspaceAction.java:162)
    at org.eclipse.ui.actions.WorkspaceAction$2.runInWorkspace(WorkspaceAction.java:483)
    at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:38 )
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    !SESSION 2010-12-22 09:48:27.766 -----------------------------------------------
    eclipse.buildId=M20100909-0800
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Framework arguments:  -product org.eclipse.epp.package.jee.product
    Command-line arguments:  -data C:\Client_Flex4 -os win32 -ws win32 -arch x86 -product org.eclipse.epp.package.jee.product
    ================================================
    3. RESOLUTION/WORK AROUND
         - I was able to get this problem cleared by putting compiler option for Flex Application projects:  -keep-generated-actionscript
    4. SIDE NOTE
      I do not really see putting this compiler option as the solution and living with the mistery is making me fill a bit bad.

    Hi Faser,
    I just tried it on Vista with our latest FB Plugin build but
    I was unable to reproduce your issue with the following setup:
    - FB Plugin build installed by Administrator account user
    under her Documents folder
    - Administrator account user can launch, create Flex projects
    under her own workspace without any problems
    - Standard account user can launch the FB Plugin build (need
    Admin's password) and create Flex project (default location) under
    his own workspace
    If your setup is different, can you please log a bug at
    http://bugs.adobe.com/flex.
    Be sure to include what build you are using, whether it's
    reproducible, the detail of the setup, etc...
    thanks,
    Sharon

Maybe you are looking for

  • Anyone use Adobe Media Player?

    Hi, i posted this question in that forum: http://forums.adobe.com/thread/593289?tstart=0 But to simplify, here're the questions: System: WinXP, CS4 1/ How do i clear the list of played or attempted to play clips from the left hand panel? 2/ There see

  • External Drive replacement for iMac "SuperDrive" ?

    From reading this forum, it seems some iMac SuperDrives (mine included) have serious problems with reading and/or scratching discs. Apparently the only real solution is to use an external drive. Can anyone recommend an external drive (USB or Firewire

  • Iconcertcal will not let you open Itunes through Front Row

    Itunes has not been opening through Front Row. I just got off the phone with tech support, and it was because of an Itunes download called iconcertcal. As soon as I removed it, everything worked fine! I don't see it listed on the Apple website anymor

  • CRM 4.0 and Partner Functions?

    As I understand it, they believe that there is a limitation on the number of partner functions that can be replicated between CRM 4.0 and ERP? And the limitation is a total of 999? But what if more than 999 are needed? I guess that these are created

  • Unwanted Eorror Message

    Whenever I first boot the computer I get an error message that I cannot get rid of: NONE OF YOUR TRUSTED WIRELESS NETWORKS CAN BE FOUND. DO YOU WANT TO CONNECT TO APPLE NETWORK f6A754?--- My connects are fine, but I constantly get this annyoying mess