Flex Application Only Compiles in Flash Builder

Hello,
    I am a newbie trying to become familiar with Flex.  I am starting by building and running some sample applications.  For some reason, the applications will execute inside of FlashBuilder, but I am getting a compile error when I compile them on my linux box. The I used the Flash Builder remote services finder to generate the code for the remote service.  The class that produces the error was generated by Flash Builder.  I have appended the class at the bottom of this post.  Any suggestions?  Thanks in advance.
--Marco
[mjmatch@mjmatch-linux flexsphi]$ ant
Buildfile: build.xml
compile-flex:
    [mxmlc] Loading configuration file /opt/tools/flex-sdk/4.1/frameworks/flex-config.xml
    [mxmlc] /opt/tools/blazeds/4.0.0/tomcat/webapps/flexsphi/src/client/services/_Super_Foo.as(20): col: 68 Error: The definition of base class RemoteObjectServiceWrapper was not found.
    [mxmlc] internal class _Super_Foo extends com.adobe.fiber.services.wrapper.RemoteObjectServiceWrapper
    [mxmlc]                                                                    ^
BUILD FAILED
/opt/tools/blazeds/4.0.0/tomcat/webapps/flexsphi/build.xml:16: mxmlc task failed
Environment
=========
Flex SDK 4.1
Flash Builder 4
ant compile tasks
============
    <property name="FLEX_HOME" value="/opt/tools/flex-sdk/4.1"/>
    <property name="DEPLOY_DIR" value="/opt/tools/blazeds/4.0.0/tomcat/webapps/flexsphi"/>
    <property name="CONTEXT_ROOT" value="flexsphi"/>
    <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"  />
    <target name="compile-flex">
        <mxmlc file="src/client/Main.mxml"
                services="${DEPLOY_DIR}/WEB-INF/flex/services-config.xml"
                context-root="${CONTEXT_ROOT}"
                output="${DEPLOY_DIR}/flexsphi.swf"/>
    </target>
_Super_Foo
=========
* This is a generated class and is not intended for modification.  To customize behavior
* of this service wrapper you may modify the generated sub-class of this class - Foo.as.
package services
import com.adobe.fiber.core.model_internal;
import com.adobe.fiber.services.wrapper.RemoteObjectServiceWrapper;
import com.adobe.serializers.utility.TypeUtility;
import mx.rpc.AbstractOperation;
import mx.rpc.AsyncToken;
import mx.rpc.remoting.Operation;
import mx.rpc.remoting.RemoteObject;
import valueObjects.Bar;
import mx.collections.ItemResponder;
import com.adobe.fiber.valueobjects.AvailablePropertyIterator;
[ExcludeClass]
internal class _Super_Foo extends com.adobe.fiber.services.wrapper.RemoteObjectServiceWrapper
    // Constructor
    public function _Super_Foo()
        // initialize service control
        _serviceControl = new mx.rpc.remoting.RemoteObject();
        // initialize RemoteClass alias for all entities returned by functions of this service
        valueObjects.Bar._initRemoteClassAlias();
        var operations:Object = new Object();
        var operation:mx.rpc.remoting.Operation;
        operation = new mx.rpc.remoting.Operation(null, "getBars");
         operation.resultElementType = valueObjects.Bar;
        operations["getBars"] = operation;
        operation = new mx.rpc.remoting.Operation(null, "addBar");
        operations["addBar"] = operation;
        _serviceControl.operations = operations;
        _serviceControl.convertResultHandler = com.adobe.serializers.utility.TypeUtility.convertResultHandler;
        destination = "foo";
         model_internal::initialize();
      * This method is a generated wrapper used to call the 'getBars' operation. It returns an mx.rpc.AsyncToken whose
      * result property will be populated with the result of the operation when the server response is received.
      * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.
      * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.
      * @see mx.rpc.AsyncToken
      * @see mx.rpc.CallResponder
      * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.
    public function getBars() : mx.rpc.AsyncToken
        var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("getBars");
        var _internal_token:mx.rpc.AsyncToken = _internal_operation.send() ;
        return _internal_token;
      * This method is a generated wrapper used to call the 'addBar' operation. It returns an mx.rpc.AsyncToken whose
      * result property will be populated with the result of the operation when the server response is received.
      * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.
      * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.
      * @see mx.rpc.AsyncToken
      * @see mx.rpc.CallResponder
      * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.
    public function addBar(arg0:String) : mx.rpc.AsyncToken
        var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("addBar");
        var _internal_token:mx.rpc.AsyncToken = _internal_operation.send(arg0) ;
        return _internal_token;

The SWC files are within the resource directory of LCDS.
For example:
C:\lcds31\resources\lcds_swcs\FlexSDK4\frameworks\locale\en_US
fiber_rb.swc
C:\lcds31\resources\lcds_swcs\FlexSDK4\frameworks\libs
fiber.swc and fds.swc
You can use the following within ANT.
<!-- Get default compiler options. -->
          <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
            <!-- List of path elements that form the roots of ActionScript
            class hierarchies. -->
            <source-path path-element="${FLEX_HOME}/frameworks"/>
          <!-- List of SWC files or directories that contain SWC files. -->
            <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                <include name="libs" />
                <include name="../bundles/{locale}" />
            </compiler.library-path>

Similar Messages

  • Library Projects compiled using Flash Builder and ANT have different outputs

    Hi Guys.,
    I am really having hard time to get something work right with RSL projects in Flex 3.2 SDK. Here is my weird problem.
    I have a library projects which has the following settings in Flash Builder
    Link Type : External
    airglobal.swc
    framework.swc
    datavisualization.swc
    rpc.swc
    utilites.swc
    applicationupdater.swc
    applicationupdater_ui.swc
    Link Type: Merged into code
    airframework.swc
    servicemonitor.swc
    Compiler settings
    -directory=true -output=../../lib/core -debug=true -optimize=false -define+=CONFIG::bindingdebug,false -define+=CONFIG::frameworkdebug,false -define+=CONFIG::flexspy,true -define+=CONFIG::debug,true -define+=CONFIG::release,false -define+=CONFIG::logtoconsole,false -allow-source-path-overlap=true  -keep-as3-metadata+=Metadata,DefaultProperty,Required,Event,AssignableTo,Inject,InjectCon structor,Publish,Subscribe,PublishSubscribe,Factory,Init,Destroy,Observe,AsyncInit,Managed Events,MessageDispatcher,MessageHandler,MessageBinding,MessageInterceptor,MessageError,Com mand,CommandComplete,CommandResult,CommandError,CommandStatus,ResourceBinding,Selector,Tar get,Autoremove,Internal,ObjectDefinition,DynamicObject
    When I compile my library projects I get a MyLibraryproject.swc. The SWC has the following files in it
    mx/controls/HTML.png
    mx/core/Windows.png
    library.swf
    Note: airframework.swc and servicemonitor.swc has a many png files and properties files in it. But these properties and png files are not included when compiled in Flash builder.
    But when the same project is compiled using ANT compc task, i get all the png and properties files from airframework.swc and servicemonitor.swc files into my library project SWC file.
    Here is the ANT version which is used to compile the library project
    <compc output="${project.output.dir}/${project.name}.swc"
       include-classes="${as} ${mxml}"
       use-network="false"
       directory="false"
       allow-source-path-overlap="true"
       incremental="${build.incremental}"
       debug="${build.debug}"
       locale="${build.locale}"
       optimize="false"
       >
    <define name="CONFIG::bindingdebug" value="${build.bindingdebug}" />
    <define name="CONFIG::logtoconsole" value="${build.logtoconsole}" />
    <define name="CONFIG::frameworkdebug" value="${build.frameworkdebug}" />
    <define name="CONFIG::flexspy" value="${build.flexspy}" />
    <define name="CONFIG::debug" value="${build.debug}" />
    <define name="CONFIG::release" value="${build.release}" />
    <keep-as3-metadata name="Metadata" />
    <keep-as3-metadata name="DefaultProperty" />
    <keep-as3-metadata name="Required" />
    <keep-as3-metadata name="Event" />
    <keep-as3-metadata name="AssignableTo" />
    <keep-as3-metadata name="Inject" />
    <keep-as3-metadata name="InjectConstructor" />
    <keep-as3-metadata name="Publish" />
    <keep-as3-metadata name="Subscribe" />
    <keep-as3-metadata name="PublishSubscribe" />
    <keep-as3-metadata name="Factory" />
    <keep-as3-metadata name="Init" />
    <keep-as3-metadata name="Destroy" />
        <keep-as3-metadata name="Observe" />
        <keep-as3-metadata name="AsyncInit" />
        <keep-as3-metadata name="ManagedEvents" />
        <keep-as3-metadata name="MessageDispatcher" />
        <keep-as3-metadata name="MessageHandler" />
        <keep-as3-metadata name="MessageBinding" />
        <keep-as3-metadata name="MessageInterceptor" />
        <keep-as3-metadata name="MessageError" />
        <keep-as3-metadata name="Command" />
        <keep-as3-metadata name="CommandComplete" />
        <keep-as3-metadata name="CommandResult" />
        <keep-as3-metadata name="CommandError" />
        <keep-as3-metadata name="CommandStatus" />
        <keep-as3-metadata name="ResourceBinding" />
    <keep-as3-metadata name="Selector" />
    <keep-as3-metadata name="Target" />
    <keep-as3-metadata name="Autoremove" />
    <keep-as3-metadata name="Internal" />
    <keep-as3-metadata name="ObjectDefinition" />
    <keep-as3-metadata name="DynamicObject" />
    <load-config filename="${air.config}"/>
    <compiler.include-libraries dir="${flex.frameworks.dir}/libs/air" append="true">
         <include name="servicemonitor.swc" />
         <include name="airframework.swc" />
    </compiler.include-libraries>
    <external-library-path dir="${build.compc.dir}" append="true">
         <include name="TriGeoFlexFramework/TriGeoFlexFramework.swc" />
         <include name="TriGeoLibrary/TriGeoLibrary.swc" />
         <include name="TriGeoRPCFramework/TriGeoRPCFramework.swc" />
         <include name="Degrafa_Beta3.1_Flex3" />
         <include name="parsley-flex3-2.4.0.swc" />
         <include name="spicelib-flex-2.4.0.swc" />
    </external-library-path>
    <external-library-path dir="${flex.frameworks.dir}/libs" append="true">
         <include name="framework.swc" />
         <include name="datavisualization.swc" />
         <include name="utilities.swc" />
         <include name="rpc.swc" />
         <include name="air/airglobal.swc" />
         <include name="air/applicationupdater.swc" />
         <include name="air/applicationupdater_ui.swc" />
    </external-library-path>
    <source-path path-element="${basedir}/src" />
    </compc>
    </target>
    </project>
    Any insights is greatly appreciated.!

    #1, If it compiles then you have no issue. There's no reason at this point not to use 4.6. You should bundle a captive runtime to assure the users computer won't need to have AIR installed at all.
    #2, Papervision is old. Use the Stage3D and/or a wrapper framework. As far as the generic "If I download lots of data will it take the user more time to load it", well, of course. Just don't make the loading experience painful. Entertain them while they way or find ways of displaying data sooner than later. If it's desirable on the web has more to do with the context of the app and the device displaying it. In other words, a phone user would find it easy but obviously not a desktop user.
    #3, Definitely referring you to Google on that one.
    #4, Size always matters, it's common sense. The more you process the harder it is. While I haven't done AR I've used the Microsoft Kinect SDK and ANE and tracking was extremely fast but limited. From what I've seen and your basic built in location and direction hardware on any mobile device you shouldn't have much trouble. Depends on what you're doing.
    #5, This discussion would be way too large for a forum. You'd need to consult a firm experienced in AR development.
    #6, "Applications using the commercial license do not have to provide source code, but must pay a licensing fee. Contact ARToolworks at [email protected] for more information." They will base your price on your product, there is no single price.
    #7, The models could be huge and elaborate or tiny and simple which changes the answer. Consult the answer in #4. Ultimately most people are getting on fast networks with mobile and excessively fast on desktop/wifi. Size matters a lot less than 3 years ago.
    #8, Depends on what you're doing. You have to explain it.

  • Flex 4.5 SDK in Flash Builder 4.0

    I am attempting to use the Flex 4.5 SDK in Flash Builder 4.0, as my company does not yet have FB4.5.  Everything seems ok, however whenever I try to use the <s:ViewNavigatorApplication>  or the <s:View> Flash builder does not seem to recognize them, I am not getting any code hinting. I undersand the design view would not work, but as far as code view, FB should not know the differnece.  Does anyone know why they might not be showing up in FB 4.0. I can't seem to find anything on the net about it.

    Just tried this out on an IIS server with Flash player 10.3.181.14 - it worked.
    Are you using the release version of Flash Builder 4.5 with the release version of Flex SDK (not a prior SDK build)?
    The URL you mentioned gives me a 403 forbidden error.
    -Anirudh

  • Incompatible version of the Flex SDK 4.6 in Flash Builder 4.5

    First: I just upgraded the whole CS to 5.5 last week, including Flash builder 4.5.3 Premium.
    To make that possible I had to use the Adobe cleaner, which resulted in manually resetting prefs in several apps.
    I imported Flex Projects which use the SDK 4.6, so I got the latest (4.6.0.23201B) from the adobe site today.
    In the trial version of Flash Ubilder 4.6, there's no problem, but in the FB4.5 Premium you can't use Design View.
    Trying to uninstall FB4.5 and then installing 4.6 trial doesn't work because even then, the installer says it has found an older version.
    So that's not an option!
    I just can' tbelieve that the official release CS5.5 just doesn't support the 4.6 SDK.
    It seems I'm not the only one with the problem, according to other posts, so Adobe:
    Please, solve this right away, because as a prof.user, this costs me and I do not appreciate that!

    Anything regarding Flex is pretty much at Apache these days.  There is no plan to distribute a Maven compatible Flex 4.6.  I hope Apache will make future Apache Flex builds work with Maven.

  • AS 3 project swf compiled in flash builder(on mac) does not run on windows 7 machine

    Hey there!!
    I have a as3 project that I'm building using flash builder 4.5. When I run or debug in FB it's fine, but when I move it to the windows 7 machine its going to live on nothing shows up. Not even the first function or any traces. I have tried to make the project into an air app but when I try to run it, the paths seem to be all messed up. I'm ok with dealing with the path issue later but for now and for testing I need to be able to just grab the swf that FB spits out and test it on the machine. Before you say use the flash ide the other developer uses only fb so if I can get it to work they will have to come to me everytime to compile if they just want to test something.
    Thanks
    Jorge

    ok guys get ready for this one!
    there where a couple of issues. yes it did help that i exported the project to the debug folder instead of  deploy folder we set up. but it still wasnt 100% right. so, one issue is that our asset swc was huge. we had everything under the sun in there. so, it would not compile correctly. how did i find this out you ask? i tried to run it in just the flash ide and it would compile so i knew something was super wrong. second, at some point somehow some of our text fields in the asset swc where converted to one of those new fangled tlf type text fields. we never added that swc to the compile path. somehow flash builder just ignored that and still built the swf but it mustve been corrupted to begin with.
    so the morale of the story keep an eye on your assets!!

  • Refresh Flex application only once.

    Hi All ,
      In my Flex Application i am calling a function  like :
    applicationComplete = "addPanel(999999);" , which will add a panel. 999999 is nothing but flag.
    But i should refresh application  Only Once .... how to do that..
    Thanks in Advance...

    The SWC files are within the resource directory of LCDS.
    For example:
    C:\lcds31\resources\lcds_swcs\FlexSDK4\frameworks\locale\en_US
    fiber_rb.swc
    C:\lcds31\resources\lcds_swcs\FlexSDK4\frameworks\libs
    fiber.swc and fds.swc
    You can use the following within ANT.
    <!-- Get default compiler options. -->
              <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
                <!-- List of path elements that form the roots of ActionScript
                class hierarchies. -->
                <source-path path-element="${FLEX_HOME}/frameworks"/>
              <!-- List of SWC files or directories that contain SWC files. -->
                <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                    <include name="libs" />
                    <include name="../bundles/{locale}" />
                </compiler.library-path>

  • Apache flex 4.8.0 with flash builder 4.7 beta 1

    Hi
    Just downloaded the Apache Flex 4.8.0 with their installer application and tried to use it with flash builder 4.7 beta 1.
    I created a new flex project and configured it to use the apache flex 4.8.0.
    Then try to run the project but hundreds of actionscript errors occur.
    VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
      at flash.display::MovieClip/nextFrame()
              at mx.managers::SystemManager/deferredNextFrame()[/Users/cframpto/dev/master/frameworks/proj ects/framework/src/mx/managers/SystemManager.as:286]
              at mx.managers::SystemManager/preloader_preloaderDocFrameReadyHandler()[/Users/cframpto/dev/ master/frameworks/projects/framework/src/mx/managers/SystemManager.as:2635]
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at mx.preloaders::Preloader/timerHandler()[/Users/cframpto/dev/master/frameworks/projects/fr amework/src/mx/preloaders/Preloader.as:523]
              at flash.utils::Timer/_timerDispatch()
              at flash.utils::Timer/tick()
    VerifyError: Error #1014: Class spark.components.supportClasses::SkinnableComponent could not be found.
    VerifyError: Error #1014: Class spark.components::Application could not be found.
    Does anyone had the same issue?
    cyrill

    Hi Crill,
    I don't see any error on creating new projects and running the same.
    Where did you get the installer from?
    What is the framework linkage type? You can check this in project properties -> flex build path. It should be Merged into code for Apache SDK.
    thanks,
    Sudhir

  • Problem signing application to BlackBerry from Flash builder 4.6 premium

    Hi,
    I would like generate "BlackBerry" version of my application with Flash Builder, for this i'm using this guide.
    http://docs.blackberry.com/en/developers/deliverables/37176/BlackBerry_Tablet_OS_SDK_for_A dobe_AIR-Getting_Started_Guide_for_Windows_Developers--1943146-1206065540-001-2.0_Beta-US. pdf
    First, i have uninstalled older flash builder versions, and i have installed Flash builder 4.6 premium.
    After, I have installed the BlackBerry Tablet OS SDK for Adobe AIR.
    Next, I have updated the BlackBerry Tablet OS SDK plug-in.
    But, my problem is using the deployment setup wizard.
    I tried with the BlackBerry Tablet Simulator started, but when I click "Run the BlackBerry Tablet OS Deployment Setup Wizard" to configure your development environment, the wizard is not showing.
    I would like generate my application, ".bar" file, signed with the reals certificates of BlackBerry. But i don´t know what is the problem.
    Somebody have tested if this wizard is working to Flash builder 4.6.
    Furthermore, i have tried to setting the reals certificates of BlackBerry, with the preferences window:
    Flash Builder > Preferences > Flash Builder > Target Platforms > BlackBerry Tablet OS > Signing.
    Such as at this url:
    http://www.adobe.com/devnet/air/articles/packaging-air-apps-blackberry.html
    But when i click Register button, the dialog is not showing.
    Any idea is wellcome.
    Thanks

    Hi all,
    I have found the problem
    BlackBerry Tablet OS search a path that don´t exist in my spanish Windows X.
    As my system is at spanish, BlackBerry Tablet OS installer create this path:
    %HOMEPATH%\Configuraci¾n local\Datos de programa\Research In Motion
    To resolve the problem, you must to create the path in english and copy the content of spanish path:
    %HOMEPATH%\Local Settings\Application Data\Research In Motion
    By default, code signing keys are stored in a central location in your profile directory and used by all BlackBerry Tablet OS development tools. The default locations of these files vary based on operating system and  are outlined in the following table.  
    Note: In a Windows XP environment, the default  %HOMEPATH% is C:\Documents and Settings\<username>.  In a Windows Vista and Windows 7 environment, the default %HOMEPATH% is  C:\Users\<username>.
    Windows XP
    %HOMEPATH%\Local Settings\Application Data\Research In Motion
    Windows Vista  and  Windows 7
    %HOMEPATH%\AppData\Local\Research In Motion
    Mac OS
    ~/Library/Research In Motion
    UNIX and Linux
    ~/.rim

  • Can i update flex 4.6 sdk to flash builder 4.5 for php ?

    well
    i already downloaded the 4.6SDK from http://www.adobe.com/cfusion/entitlement/index.cfm?e=flexsdk site but once i add the new sdk to flash builder and try to make a new project
    i cannot switch to design mode at all , gives me and erro rmessage: The Design mode is disabled as the project uses incompatible version of the flex SDK.
    What's the deal ?
    have to wait till Q1  / 12 ?
    Cheers
    Lare

    If you're using components specific to the Flex 4.6 release, then it would be a natural assumption that design view will not work.  If you're having this issue while using components that are not unique to Flex 4.6, then I don't have an answer.  On a good note, design view is completely useless anyway.  It's much faster to type than to drag stuff around with your mouse needlessly.

  • I get some trouble exporting  mobile  application with Android Adobe Flash Builder Burrito

    Hi, eveybody.
    I make a simple mobile application with Adobe Flash Builder Burrito, and it works well on windows.
    Then I want to export it as a .apk and install on android emulator. But I failed. I got some messages as follow:
    E:\android\a\android-sdk-windows\platform-tools>adb install Twitter.apk
    594 KB/s (875316 bytes in 1.437s)
            pkg: /data/local/tmp/Twitter.apk
    Failure [INSTALL_FAILED_INVALID_APK]
    Then, I download the AdobeAIRSDK2.6, unzip, and copy the files to the sdk(D:\Program Files\Adobe\Adobe Flash Builder Burrito\sdks\4.5.0).
    I change <application xmlns=http://ns.adobe.com/air/application/2.5> to <application xmlns="http://ns.adobe.com/air/application/2.6">.
    Then It can't export it as a .apk...
    Thanks!

    Thanks.
    But why I can't export a .apk as I update the sdk to air2.6?

  • Converting an AIR application developed using Adobe Flash Builder 4 to an .apk file for Android

    Hi,
    Is there anyone would could provide me a link or a simple guide on how to convert an AIR application I developed for the desktop  to an .apk file so I could test it on an Android device? Without using Adobe Flash Builder Burrito...Thx.

    Hi nerostealth
    These link should be able to help you:
    http://blog.omarfouad.com/?p=334
    http://blog.omarfouad.com/?p=365
    regards Mike

  • Adobe Air Applications Not launching. Flash Builder 4.5.1

    I had this issue before where only flash based applications would launch but not adobe air. The issue is when you click run on adobe air, in the task manager on windows 7, 64 bit you get: Adobe Air Debug Launcher. Killing that gives me: If the program is already running, close it before attempting to run.
    The program never launches hence why you have to kill it in the task manager.
    I tried cleaning out the PreloadSWF entry in the mmc.cfg file. This does nothing to help the cause.
    Ideas?

    Please read the OP on the stale pale loader. I already took out the line in mm.cfg and I set vsible to true (never had to before on any air application Oo)
    Tests:
    The setting to visible to true though worked..... (again with never had to set that before)

  • Error while compiling with Flash Builder [FlexSDK4]

    I'm new to Flex 4 .. I have a application which is developed in Flex 3..
    But I'm changing it to flex4.. I'm getting the following error.. Can any one help me how to resolve this..?
    The style 'paddingTop' is excluded by type 'mx.containers.Canvas'.
    Help me to resolve this..
    Thanks in advance,
    Vijay

    That style is not defined for the Canvas.
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/containers/Canvas.ht ml?filter_flex=4.1&filter_flashplayer=10.1&filter_air=2

  • Mobile development using Adobe Flex 4.5 SDK and Flash Builder 4.5 for Data Visualization

    Hi,
    I am currently looking at the feasibility of building Data Visualization chart/graph in Android mobile phones. I would like to enquire if the mentioned subject comes with the Data Visualization components as seen in the Tour De Flex.
    Cheers!

    If you're using components specific to the Flex 4.6 release, then it would be a natural assumption that design view will not work.  If you're having this issue while using components that are not unique to Flex 4.6, then I don't have an answer.  On a good note, design view is completely useless anyway.  It's much faster to type than to drag stuff around with your mouse needlessly.

  • MouseEvent not firing on DisplayObject click in AS only project in Flash Builder 4

    Hello,
    I'm having difficulty getting MouseEvents to fire in an ActionScript only project. It doesn't make any sense to me. My code is below and this object is the top most object on the stage.
    var click:Sprite = new Sprite();
    click.name = 'clickLayer';
    click.mouseEnabled = true;
    click.addEventListener(MouseEvent.CLICK, mouseClickHandler);
    addChild(click);
    function mouseClickHandler(e:MouseEvent):void{
    trace('click');
    var url:String = loaderInfo.parameters.clickTag;
    navigateToURL(new URLRequest(url), '_blank');
    My class extends Sprite.
    Everything else works fine. Something I found strange is that TextFields will fire MouseEvents when clicked if I add the EventListener, but not DisplayObjects.
    Thanks for your help.

    I just made the width & height the width & height of the container (Sprite), but still nothing.
    I also tried adding a "container" sprite to the main stage, and adding everything to that sprite - but that sprite won't instantiate and doesn't show on the stage, meaning anything added to that sprite doesn't show either.\
    Also: I've tried adding MouseEvent listeners to every display object I add to the stage and nothing will fire MouseEvents except TextFields.

Maybe you are looking for

  • Reading attributes of different context nodes

    Hello, I want to read attributes of BP_DATA/TaxNumberList Node: BUILHEADER from Node BUILTAXNUMBER. I have tried all without success. In GENIL Browser they are not related. What can i do? Best Regards JM

  • Headphone port never works

    Anyone have any problem with headphone port? Mine has never worked on my MacBook Pro Mid 2012.  Any fixes/suggestions out there?

  • Employee interaction centre - authorizations

    Hi, I have a problem with authorizations of employee interaction centre transaction code HREIC. Background of the issue: User executes the T-code HREIC in SAP. A new browser is open. User enters his username and password . The employee interaction ce

  • HT201210 Unknown error occurred (1015)

    Dear sir/madam, I don't know how to appear this message when I step by step when I update my IPhone from 3.1 to 4. OS. Please help me about this error. Thanks for your help. Tim

  • File Upload Scenario

    Hi All, Can anyone give me some resources for creating a File Upload application ?? TXT file to Internal Table. (new to BSP) Thanks in Advance Chemmanz