Folding in flash builder

I love the folding feature in flash builder but was wondering if theres a way to have code folding 'remembered' so when I re-open my mxml file it persists?
Thanks

Adobe Flex 4: Training from the Source, Volume 1
this book is in color or "black and white"?

Similar Messages

  • How can I open a local folder using flash builder or AS3?

    I need to open a local folder get the zip file and unzip it.
    I know that i cannot open a folder using flash builder, i did it using air app. now i do not know how do i integrate it with my flex program.
    Please help me with this issue.
    Thanks

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script source="Asset/folder.as" />
    <mx:Button x="10" y="10" label="My Button" width="122" height="31" id="myButton" click="folder()"/>
    <mx:ComboBox x="10" y="49" id="cbobx" dataProvider="{}"  ></mx:ComboBox>
    </mx:Application>
    and .as code is:
    // ActionScript file
    import flash.display.*;
    import flash.events.*;
    import flash.net.FileFilter;
    import flash.net.FileReference;
    import flash.net.FileReferenceList;
    import mx.controls.Alert;
    import mx.controls.ComboBox;
    private var fr:FileReferenceList;
    private var cmbobx:ComboBox = new ComboBox();
        private function folder():void
    fr = new FileReferenceList();
    fr.browse([new FileFilter("Zip Files", "*.zip")]);
    fr.addEventListener(Event.SELECT, listZipFiles);
    private function listZipFiles(e:Event):void
    Alert.show("selectHandler: " + fr.fileList.length + " files");
            var fls:Array = new Array();
            var file:FileReference;
            for (var i:uint = 0; i < fr.fileList.length; i++)
                file = FileReference(fr.fileList[i]);
                //Alert.show("File Name: " + fr.fileList[i]);
                Alert.show("File Name: " + file.name);
                fls.push(file);
                cmbobx.selectedItem = fls;
    private function getShpFiles(event:MouseEvent):void

  • Output folder in Flash Builder 4.6 refuses to be anything but relative

    I just updated from Flash Builder 4.5 to 4.6. Things seemed to be going ok in terms of importing all my projects etc. (why can't there be a simple upgrade process rather than a complete uninstall/reinstall process?)
    But then I got to setting the Output Folder within the Flex Build Path section of the properties of my project.
    Now, as our dev environments we run glassfish servers locally on our testing machines and build our apps directly into them so our testing process is very quick. This was working fine in Flash Builder 4.5, I point my app's output folder to a location of the form:
    C:\Users\myUserName\glassfish3\glassfish\domains\domain1\eclipseApps\appname
    And that works fine, set by pasting in from an explorer window or Browsing there via the Browse button next to the field.
    Now when I try to do this within Flash Builder 4.6 I get nothing at all appearing if I use the browse button. No error, nothing saying it failed, just an empty field. If I try to paste in anything I get an error from Flash Builder saying '"Paste" did not complete normally."
    If I try to just type in the path it fails, it strips the leading C:\ and turns it into a relative path, which is completely useless.
    This is getting really annoying!
    Log file output after I tries to browse to the folder:
    !ENTRY org.eclipse.ui 4 0 2012-02-07 14:54:00.474
    !MESSAGE Unhandled event loop exception
    !STACK 0
    java.lang.NullPointerException
        at com.adobe.flashbuilder.launching.multiplatform.contributor.MultiPlatformDebugUtilLocalePa thVariable.resolvePath(MultiPlatformDebugUtilLocalePathVariable.java:68)
        at com.adobe.flexbuilder.project.PathVariableResolver.wrapPath(PathVariableResolver.java:198 )
        at com.adobe.flexbuilder.project.PathVariableResolver.makePathVariableRelative(PathVariableR esolver.java:283)
        at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.makeRelativeOutpu tPath(AbstractBuildPathsPropertiesPane.java:946)
        at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.makeRelativeOutpu tPath(AbstractBuildPathsPropertiesPane.java:931)
        at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.browseForOutputFo lder(AbstractBuildPathsPropertiesPane.java:910)
        at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane$12.widgetSelected (AbstractBuildPathsPropertiesPane.java:805)
        at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:240)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
        at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
        at org.eclipse.jface.window.Window.open(Window.java:801)
        at com.adobe.flexbuilder.editors.derived.ui.navigator.FlexPackageExplorerPropertyDialogActio n.run(FlexPackageExplorerPropertyDialogAction.java:41)
        at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
        at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:584)
        at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
        at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :411)
        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
        at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
        at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
        at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2696)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2660)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494)
        at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1410)

    me too
    !ENTRY org.eclipse.jface 4 0 2012-05-18 10:40:39.212
    !MESSAGE java.lang.NullPointerException
    !STACK 0
    java.lang.NullPointerException
              at com.adobe.flashbuilder.launching.multiplatform.contributor.MultiPlatformDebugUtilLocalePa thVariable.resolvePath(MultiPlatformDebugUtilLocalePathVariable.java:68)
              at com.adobe.flexbuilder.project.PathVariableResolver.wrapPath(PathVariableResolver.java:198 )
              at com.adobe.flexbuilder.project.PathVariableResolver.makePathVariableRelative(PathVariableR esolver.java:283)
              at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.makeRelativeOutpu tPath(AbstractBuildPathsPropertiesPane.java:946)
              at com.adobe.flexbuilder.project.ui.utils.AbstractBuildPathsPropertiesPane.updateOutputFolde r(AbstractBuildPathsPropertiesPane.java:1218)
              at com.adobe.flexbuilder.project.ui.properties.BuildPathsPropertyPage.applyProjectSettings(B uildPathsPropertyPage.java:444)
              at com.adobe.flexbuilder.project.ui.properties.AbstractFlexProjectPropertyPage.performOk(Abs tractFlexProjectPropertyPage.java:117)
              at com.adobe.flexbuilder.project.ui.properties.BuildPathsPropertyPage.performOk(BuildPathsPr opertyPage.java:586)
              at org.eclipse.jface.preference.PreferenceDialog$13.run(PreferenceDialog.java:964)
              at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
              at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49)
              at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175)
              at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:944)
              at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDial og.java:447)
              at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:233)
              at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:624)
              at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:240)
              at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
              at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
              at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
              at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
              at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
              at org.eclipse.jface.window.Window.open(Window.java:801)
              at com.adobe.flexbuilder.editors.derived.ui.navigator.FlexPackageExplorerPropertyDialogActio n.run(FlexPackageExplorerPropertyDialogAction.java:41)
              at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
              at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:584)
              at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
              at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :411)
              at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
              at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
              at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
              at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
              at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2696)
              at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2660)
              at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494)
              at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674)
              at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
              at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667)
              at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
              at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)
              at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
              at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
              at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
              at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
              at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
              at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
              at org.eclipse.equinox.launcher.Main.run(Main.java:1410)

  • Flash Builder 4.7 with Extension Builder 2.1

    A have license of Creative Cloud but in Flash Builder 4.7 the Extension Builder 2.1 wont work, in install say to me this "Adobe Extension Builder 2.1 includes Flash Builder 4.6", see image:
    A pay for 4 Creative Cloud license and 4 Extension Builder license for my team and just anybody work...
    All is using Windows 7, Creative Cloud (updated) and Extension Builder 2.1. I see Extension Builder create folder for Flash Builder 4.6 but just don't work, i search in forum and don't have solution, some guys seeing work installing 4.6, in Creative Cloud don't have Flash Builder 4.6 for download like is in Photoshop, see:
    If just add this combo in Flash Builder with option of download 4.6 working for Creative Cloud fix this problem.

    So, i try this and more...
    1° Download my version:
    2° CleanUp all registry for "Extension Builder", "ExtensionBuilder", "Extension_Builder", "Flash Builder", "FlashBuilder" and "Flash_Builder", after this, CCleaner...
    3° Install, error:
    4° Link file? Interesting, look in depth... Try install manually:
    5° Works, now install Extension Builder 2.1 and... Error! Look the guy "link file" here, is name of a class in *.as too big, why you do this adobe! O_O
    6° Ok, maybe work, because i never use this classes, so look more if i have serial number, oh! I Have serial number for my Extension Builder 2.1! @_@
    7° A light at the end of the tunnel! Insert in Flash Builder and...
    You just fu** kidding of me...

  • Flash Builder 4.5 + AIR 3.0 RC1 does not output modules to correct location

    Hello
    I'm having some trouble with Flash Builder 4.5 and Flex SDK 4.5.1.21328 with AIR 3.0 RC1. Flash Builder does not appear to compile modules into the location set in the "Edit module" dialog.
    The screenshots below show that the output path of a module is set to a specific folder, yet Flash Builder compiles the module into the default sub-folder.
    #1. Project properties showing application modules
    #2. Dialog showing the path to the module. Not the "Output SWF" location. The default location is the same as the package namespaces, eg: "d6/v3/banners/Banners.swf". After removing the path the module should compile into the output folder (set to bin/debug), however as the next screenshot shows, the module still compiles into the default sub-folder.
    #3. The module is compiled into a sub-folder of the output folder, instead of into the "root" of the output folder.
    #4. The output folder contains only the main application, with a sub-folder for the module.
    #5. Project pproperties showing the output folder.
    There is a workaround - move the module source file into the "Default package" in the package explorer.

    I experienced this problem today, and kind of "solved" it. There may be an underlying bug, though.
    My project compiled fine last Thursday, but I opened it up on Monday (unchanged) and this error showed up in several files. I tried quitting and restarting Flash Builder to no avail. I could not replicate the problem in a new project.
    For me, each occurence of the error was at a private function definition, so I thought I would try changing "private" to "public" on one of the functions. The error immediately went away in all 3 locations (not just the one I edited). I then changed it back to "private" with no error.
    I hope that will help the Adobe team track down the problem.

  • Source Attachment Settings in Flash Builder

    Hello everyone,
    I am facing an issue with debugging. I don't want to step through the framework code in the debug mode. To avoid that, I removed the Source attachments, by selecting that node in the tree and clicking on remove. But it doesn't save the change settings. When I debug after saving these settings, it jumps to framework classes e.g. UIComponent etc. After looking at it again, I can again see the Source attachments. I tried looking at the entire checked out source, but not able to find out, how this Source attachment setting is working in Flash Builder. I don't want to jump through framework classes. Is it possible to do this ?
    Note: After the experiments above, I removed the Flex SDK and then copied all the swc classes and put them in a separate folder, still Flash Builder is able to find out the source attachment. Any light on how it works
    Thank you
    Chetan Sachdev

    Hi Chetan,
    Please use the Labs forums for questions regarding the beta release, as the Builder team won't find your post here. These forums are used for discussing development on the Flex framework and other Flex open source related discussions.
    Thanks,
    Vera

  • Best practices for Flash CS5 and Flash Builder 4 integration?

    With Flash CS5's new XFL file structure/format, what's the best way to structure project files for Flash CS5 integration with Flash Builder 4? Flash CS5 autocreates a folder named after the xfl file as the outer container, and then all the assets/xfl within it. Should this folder be used as the project folder for Flash Builder 4, or better to nest the xfl container folder in a "real" project folder? I would presume the latter, since you might have multiple XFL files in one project. I was hoping to see some automatic linkages between document class of the Flash CS5 XFL file and any default ActionScript class created by Flash Builder, but so far I seem to need to specify a document class directly in Flash CS5's environment and making sure that the path to a default class created by Flash Builder is correct.
    Thanks in advance for any suggestions...

    Most likely, you know that, but just in case, you can integrate new Flash project into existing Flex 4 project  from within the Flash Builder by choosing either Flash Component or Flash Container from the FB Design view. In such workflow Flash Builder opens the Flash CS 4 (I assume that should be the same for CS5) and takes care of the integrating the newly created Flash project into original Flex 4 project.
    FTQuest

  • Flash builder 4 installation somehow broke my flex builder 3 debuggin/running/profiling launch.

    After installing flash builder 4 neither it nor flex builder 3 has been able to launch swf:s from flex. After hitting run or debug flex gives a prompt saying "Flash Player not Found. Flex builder cannot locate the required version of Flash Player. You might need to install Flash Player 9 or reinstall Flex Builder. Do you want to try to run your application with the current version?". The popup itself happened before installing flash builder 4. But normally I would just hit yes and it would use whatever flashplayer is default.
    Now if I click yes it launches command prompt with a path to flex builder 3 installation folder. When running from flash builder 4, same happens except the path is the installation folder for flash builder 4. Flex then starts waiting for connection from debugger and after a while it prompts a timeout message. The command prompts title is ...\workspace\project\bin-debug\filename.swf.
    When opening the swf files directly from windows they open fine.
    I used the uninstaller software for flash player and then fetched both fp9&10 and reinstalled them. Which didn't help. When launching to browser everything works just fine, the problem occurs only when launching to standalone player. I tried to check registry settings if there would be something wrong, but all the paths for flashplayers seem to be ok.
    Is there any other hope to fix this than reinstalling flex builder 3 & flash builder 4 from scratch?

    You need content debugger FP installed
    http://www.adobe.com/support/flashplayer/downloads.html download it from there and install and you should see the problem go away
    Download the Windows Flash Player 10 ActiveX control content debugger (for IE) (EXE, 2.03 MB)

  • Flash Builder 4 - The selcted wizard could not be started - FlexApolloProjectWizard

    Hello,
    I have a brand new eclipse installation. I downloaded the eclipse-jee-galileo-SR2-win32.zip from the eclipse website. And I downloaed the FlashBuilder_4_Plugin_LS10.exe from the Adobe Website.
    After unzipping the eclipse to d:\devide\eclipse35 and installing the Flash Builder into d:\devide\FlashBuilder4Plugin with the option to integrate it into the existing eclipse installation, it finished with no errors.
    Having Java 1.5 and FlashPlayer 10 installed I get this error here when I try to create a new FlexProject
    I also tried to install the Standalone version of the Flash Builder 4. I get the same error there.
    Also copying a working installation (Eclipse Folder and Flash Builder 4 Folder) from a computer where it works, I get the same error on my machine.
    Do I have to install AIR? Upgrade the FlashPlayer or what? I really dont know what else to try. Any suggestions on how to fix this?
    Thank you for any help.
    Carsten

    Hi,
    thanks for your anwser. I am trying to get hold on an Adobe engineer for over 2 weeks now. Non available on the phone. Whatever.
    I have that file in place. It is 26KB big and in the directory you pointed to.
    But I still get the error. Btw, we did a reinstall with local admin rights, the path is not FlashBuilder4Plugin. But still not working. And AIR 2.0 is not installed yet. The admins are still cheking if it is ok to install.
    Here is the screenshot
    The file on the laptop, where the FlashBuilder4Plugin installation works is slightly bigger. Its around 31kb. Both systems are WindowsXP.
    I try to copy the file from the laptop use that one on the PC. Maybe that helps. More on that later.
    Carsten

  • Adobe flash builder 4 stops at 92%

    Hi,
    The installer for flash builder 4 fails at 92% everytime. I have tried multiple times and have downloaded the installer 3 times, so it's not a bad download. It doesnt come up with any 'failed message' it just becomes unresponsive saying 'Please wait while the downloaded files are being extracted.' at the file 'AdobeFlashPlayer10_plDbg_mul.msi'. Any ideas?
    Adobe support advisor says nothing.

    Hi,
    Since it seems to be hanging up while installing the Debug Flash Player, try this instead:
    - deselect the Flash Player portion of the installation, in the install screens that come up prior to beginning installation
    - if installation completes successfully this way, you can install the Debug Players manually afterwards.
    Here's where you can find the Debug Players afterward in your target install folder:
    \Adobe Flash Builder 4\player\win\
    Or, for newer versions of the Debug Players (e.g. 10.1 and up), you can find them online here:
    http://www.adobe.com/support/flashplayer/downloads.html
    -Chris

  • What's the difference between these to Adobe Air SKD folder locations in flash Builder 4.7?

    So I can drop AIR SDKs inside the Adobe Flash Builde 4.7 (64 Bit)/sdks folder (under 4.6.0) - as per instructions in the Starling adobe.tv tutorials, or, as per the Adobe labs docs, place them in eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK
    Which is right? What's the difference? Should I do both to hedge my bets?
    Thanks in advance for un-confusing me!

    As far as I know, Flash Builder uses the Flex SDK to compile applications.
    I do know that updating to certain versions of the AIR SDK (i.e. from 3.4 to 3.8), I had to copy the AIR SDK + compiler into the 'AIRSDK' folder, instead of just the AIR SDK like the download page says.
    Someone please correct me if I'm wrong.

  • Flash Builder 4 - Folding

    Flash builder 4 - Where is the option to collapse (fold) all code... I can do it for a function, but I want to collapse all code.

    Hello,
    Data Mangement expects unique values for id property.This issue may occur when you select 'Identity' property in Data Mangement wizard which is not unique in the Table.For eg:, you have selected 'name' field as identity property. And your MySQL database table has multiple rows with identical values for 'name' column.
    Can you verify if you have similar setup?
    Thanks,
    Radhakrishna

  • Flash Builder 4.7 becomes unresponsive when trying to add 5-6 source folder under Flex build Path

    Hi,
    I am facing issue with Flash Builder 4.7.
    Whenever I am trying to open any mxml or .as file after project setup, flash Builder 4.7 becomes unresponsive without showing any error message or popup.
    At the initial project setup, I am able to open file but when I try adding 5-6 source folder under Flex build path->source path, it’s become unresponsive.
    Everything works fine in Flash builder 4.6, but I have license key only for flash builder 4.7 and want to use Flash Builder 4.7.
    Please help me to solve this issue.

    Fixed: In Project prefs: Flex Build path: added the similar swc folder called "local" from FB 4.6 eclipse/plugins directory and removed the 4.7 one.
    For some reason the 4.7  eclipse/plugins/com.adobe.flexbuilder.project_4.7.0.345990/dcradS wcs/4.5/locale folder has localisation folders in it and not swc's like in FB 4.6..

  • Flash Builder custom code folding

    I've just donwloaded the new CC versions and will possibly be buying the subscription at the end of this month.  I was previously using CS4 versions.
    One thing I noticed though, is that the custom code folding options in the Flash CC actionscript editor are gone, you can now only collapse entire functions.  This remains true for flash builder as well.
    So is there any way to collapse custom regions in flash builder instead of just entire functions?  I'm working on a flash MMO and I've got over 10,000+ lines of code.  Being able to collapse only functions simply doesn't cut it.  It really hinders my development time as I have to scroll through masses of code in order to get to what I need.  It's also much much more confusing looking at thousands of lines of code that I don't need to see at the moment.  Visual studio has a way of defining regions by typing "#region" and "#endregion" in the area you wish to collapse.  Is there anything I can do about this?  This is a very very important feature (at least for me) that I'm not sure why it was left out, or I am unable to find it.
    Thanks.

    I've just donwloaded the new CC versions and will possibly be buying the subscription at the end of this month.  I was previously using CS4 versions.
    One thing I noticed though, is that the custom code folding options in the Flash CC actionscript editor are gone, you can now only collapse entire functions.  This remains true for flash builder as well.
    So is there any way to collapse custom regions in flash builder instead of just entire functions?  I'm working on a flash MMO and I've got over 10,000+ lines of code.  Being able to collapse only functions simply doesn't cut it.  It really hinders my development time as I have to scroll through masses of code in order to get to what I need.  It's also much much more confusing looking at thousands of lines of code that I don't need to see at the moment.  Visual studio has a way of defining regions by typing "#region" and "#endregion" in the area you wish to collapse.  Is there anything I can do about this?  This is a very very important feature (at least for me) that I'm not sure why it was left out, or I am unable to find it.
    Thanks.

  • Problem with working in Flash Builder 4

    Hi there,
    I am working on the develepment of a new kind of website in 3D.
    For this I am using Flash Builder 4 AS3 Project and the 3D program Away3D.
    The problem is that I created a SWF in one AS3 project called PoloSWF.
    In another project I created a plane with the SWF as material.
    For this I copied PoloSWF from the original bin release directory and pasted it in the assets folder of the plane project.
    When running the plane project, the SWF is not visible.
    Any idea where the bug is?

    I tried it in Internet Explorer, Firefox, and Chrome. I was able to get the Akamai download manager but that was all I could download. Currently with firefox the download is stuck at waiting and will not continue any further.

Maybe you are looking for

  • ITunes Match won't recognize my MBA equipped with a new SSD

    Hi, Here's the situation: I replaced the SSD in my late 2010 MBA to add storage space. Everything went perfectly well and I have been using it for weeks, no problem whatsoever with any of my iCould stuff - calednar entries, contacts etc. as everythin

  • Setting up a wireless network in my home

    We recently switched our IP service from sbc to Comcast.  I am in the process of trying to set a wireless network with all of our computers.  This is the equipment I have:  The old modem used from sbc, the new modem from Comcast and a Linksys wireles

  • Using Apple Earphones with Mic and Remote with Ipod Nano (3rd generation)

    Hi, I'm just wondering if there is any way i can make the Ipod Nano(3rd generation) compatible with the Apple Earphones with Mic and Remote. I know on the box it says the earphones are only compatible with a few ipods, like the 4th generation ipod na

  • Secure LDAP lookup with 2005Q4 Outlook Connector 7 not working

    Hello all, I have Sun Java(TM) System Directory Server/5.2_Patch_4 B2005.230.0041 (64-bit) installed and the latest 2005Q4 Calendar, Messaging and UWC Server. When testing the Outlook Connector, I can get the 2005Q1 version 7 connector to work just f

  • ExecuteQueryForCollection override works in 10.1.2, not 10.1.3EA

    I've overridden executeQueryForCollection in a ViewObjectImpl and it was working in JDev 10.1.2. I'm experimenting with 10.1.3, so I copied my Application and imported it. I'm getting the following error: oracle.jbo.JboException: JBO-29000: Unexpecte