Could not resolve sparks component with Air 3.6 Beta

Description
Resource
Path
Location
Type
Could not resolve <s:SolidColor> to a component implementation.
ExpandingItemRenderer.mxml
/ProjectTest/src/renderers
line 59
Flex Problem
Could not resolve <s:State> to a component implementation.
ExpandingItemRenderer.mxml
/ProjectTest/src/renderers
line 33
Flex Problem
Could not resolve <s:State> to a component implementation.
ExpandingItemRenderer.mxml
/ProjectTest/src/renderers
line 34
Flex Problem
Could not resolve <s:Transition> to a component implementation.
ExpandingItemRenderer.mxml
/ProjectTest/src/renderers
line 38
Flex Problem
Could not resolve <s:Transition> to a component implementation.
ExpandingItemRenderer.mxml
/ProjectTest/src/renderers
line 47
Flex Problem
This is what i get with the latest Air 3.6 Beta SDK with a mobile project !
FB 4.7 shows the <mx:Transition> potential match but not the <s:Transition>. Its the same for all the other errors it shows the potential matches
Can someone provide a solution I even tried to add sparks.swc as external SWC but it doesn t work.

I Still have theses errors :
Description
Resource
Path
Location
Type
Could not resolve <s:State> to a component implementation.
MessageBox.mxml
line 129
Flex Problem
Could not resolve <s:State> to a component implementation.
MessageBox.mxml
line 130
Flex Problem
Could not resolve <s:State> to a component implementation.
MessageBox.mxml
line 131
Flex Problem
Even if I added the spark.swc
But the other errors are gone !

Similar Messages

  • Could not resolve mx:Component to a component implementation

    Hi everyon
    I am trying to add a ItemRender to a datagrid column but the following compilation error comes up..
    Could not resolve <mx:Component> to a component implementation
    I am actually using the exact same code as in this web http://www.adobe.com/devnet/flex/quickstart/using_item_renderers
    Any ideas in what Im doing wrong?

    If you are using Flex 4, it is now fx:Component
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Error "Could not resolve s:ViewNavigatorApplication to a component implementation...", after overlaying with AIR SDK 13.0

    Just installed FB 4.7, overlayed with AIR SDK 13.0, started FlexMobileProject and I get this error "Could not resolve <s:ViewNavigatorApplication> to a component implementation...", which I can't get rid of. Tried 3-4 times, error stays.
    I overwrote the Flex sdk 4.6.0 with Air SDK 13.0.
    Is this a bug? Please help.

    Thanks for the reply. I tried changing to the airmobile-config.xml but then I got the same error with a different componenet.
    Error: Could not resolve <r:QContainer> to a component implementation. <r:QContainer id="d">
    Could this related to a missing SWC from my build path do you think?

  • Using AIR 15 (10/14/2014): Could not resolve s:ViewNavigator to a component implementation.

    Hi
    I want to update to the newest version of AIR so I can upload my ipa to App Store. Usually I get AIR from the Apache Flex SDK installer, but it only has the beta version of 15.0.0.183. I have instead downloaded the SDK from
    https://forums.adobe.com/thread/1603494
    (AIR SDK 15 (Compatible with Flex) for Windows)
    but when I compile, I get the following error:
    Could not resolve <s:ViewNavigator> to a component implementation.
    I have tried the following things:
    * Downloaded AIR 15 SDK from Apache Flex and merged the new files into this SDK (same error)
    * Downloaded AIR 15.0.0.183 beta from Apache Flex and merged the new files into this SDK (same error)
    * Downloaded AIR 15.0.0.183 beta from Apache Flex (no error, but I don't know if Apple will accept this version)
    Am I doing something wrong?
    Thanks in advance
    Mark

    I think I got it to work. Apparantly there is a secret link called "Download Windows" below the yellow download button which is for Flex users even though I already chose the Flex version on the previous page.

  • FABridge in AIR: Could not resolve fab:FABridge to a component implementation

    Hi all,
    I'm trying to use the FABridge in my HTML-based AIR app to communicate between a swf file and my JavaScript code. Browsing through the forums, it appears that ExternalInterface is not advisable in AIR, so I turned to FABridge instead. Can anyone on this forum advise me on whether FABridge is the correct route to take if I want to communicate betweeen flex and javascript.
    If FABridge is the recommended protocol, can someone please advise on how to include the FABridge.as file as part of a amxmlc compiler option. I've tried the following:
    seanosheas-macbook-pro:bin seanoshea$ ./amxmlc -sp+=${FLEX_3_HOME}/frameworks/javascript/fabridge/src/bridge ${PROJECT_HOME}/GMapsController.mxml
    but I keep getting this error:
    Error: Could not resolve <fab:FABridge> to a component implementation.
    Looking at Mike Chambers' blog post here: http://www.mikechambers.com/blog/2005/12/22/compiling-actionscript-3-and-mxml-on-mac-and-l inux/, it looks like the air-config.xml file could be modified to include the FABridge.as file. I've tried modifying the air-config.xml file to point at the fabridge/src/bridge directory, but no luck.
    Sean

    Hi Paul,
    Thanks for the reply. I was drawn to the FABridge because the documentation said it's useful if:
    "You want to use a rich Flex component in an Ajax application but do not want to write a lot of Flex code. If you wrap the component in a FABridge-enabled stub application, you can script it entirely from JavaScript, including using JavaScript generated remotely by the server."
    The rich Flex component I'm trying to control in my Ajax application is a Google Maps swf. The swf is pretty simple ... it just looks like this:
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
        <maps:Map xmlns:maps="com.google.maps.*" id="map" mapevent_mapready="onMapReady(event)" width="100%" height="100%"
            url="http://code.google.com/apis/maps/" key="ABQIAAAAirgZjEoCu9a3euq95spKkBR_S1ecsaBoILwOJWQZL62AsG_vrBT---yI8NYfu5nSGRvZPcpZobSH zA"/>
        <mx:Script>
            <![CDATA[
                import com.google.maps.LatLng;
                import com.google.maps.Map;
                import com.google.maps.MapEvent;
                import com.google.maps.MapType;
                private function onMapReady(event:Event):void {
                    this.map.setCenter(new LatLng(40.736072,-73.992062), 14, MapType.NORMAL_MAP_TYPE);
                public function setLocation(lat:Number, long:Number):void {
            ]]>
        </mx:Script>
    </mx:Application>
    I'm including the .swf file with an embed tag as outlined in the Google Maps for Flash API documentation:
        <div id="map_canvas">
            <object
              classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
              codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
              width="800px"
              height="600px">
                  <!-- <param name="movie" value="app:/flex/GMapsController.swf">  -->
                  <!-- <param name="movie" value="app:/GMapsController.swf">   -->
                  <param name="movie" value="http://mysite.eye.fi/GMapsController.swf">
                  <param name="quality" value="high">
                  <param name="flashVars" value="key=ABQIAAAAirgZjEoCu9f3eua95spKkBR_S1ecsaBoILwOJWQZL62AsG_vrBT---yI8NYfu5nSGRvZPc pZobSHzA">
                  <embed
                    width="800px"
                    height="600px"
                    quality="high"
                    flashVars="key=ABQIAAAAirgZjEoCu9f3euq95spKkBR_S1ecsaBoILwOaWQZL62AsG_vrBT---yI8NYfu5nSGR vZPcpZobSHzA"
                    pluginspage="http://www.macromedia.com/go/getflashplayer"
                    type="application/x-shockwave-flash">
            </object>
         </div>
    I'm not sure I can include it as a library of classes as you describe in your post.
    It would be really sweet if I could attach an id attribute to the embed tag and be able to call the functionality within the swf file in JavaScript.
    Do you know whether this is possible or not? I'm pretty new to flex (if you guys havent already guessed), so I could be missing something pretty simple.
    Any help is greatly appreciated
    Cheers
    Sean

  • AIR SDK 3.6 Could not resolve component

    I have Flash Builder 4.6 and the AIR SDK version is 3.5, Today i update the AIR SDK version to 3.6, However when i debug the appliction, the Flash Builder popup a error for "Could not resolve <s:ViewNavigatorApplication> to a component implementation." .
    I have downloaded AIR SDK3.6 from here: http://www.adobe.com/devnet/air/air-sdk-download.html

    Hi Jack,
    Please download AIR SDK from a small note below on http://www.adobe.com/devnet/air/air-sdk-download.html
    for flex users.
    Note : Flex users will need to download the original AIR SDK without the new compiler.
    Please let us know if this fixes your issue.
    Thanks,
    Krati

  • Problem with child tag - Could not resolve x to a component implementation.

    Hello.
    I am writing some chart component and got a problem setting property via child tag. Property is a custom class.
    My directory structure:
    Makefile  oxcharts  Session.vim  stats.as  stats.mxml  stats.swf
    ./oxcharts:
    ColumnChart.as MyTest.as
    stats.mxml:
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:oxcharts="oxcharts.*">
        <oxcharts:ColumnChart id="myChart" showDataTips="true" width="600" height="310">
            <oxcharts:test x="5"></oxcharts:test>
         </oxcharts:ColumnChart>
    </mx:Application>
    ColumnChart.as:
    package oxcharts {
        public class ColumnChart extends UIComponent {
            public var test:MyTest;
    MyTest.as:
    package oxcharts {
        public class MyTest {
            public var x:Number;
    I got this error:
    Error: Could not resolve <oxcharts:test> to a component implementation.
    I guess something wrong with imports. Setting Number property via child tag works just fine.

    I'm gonna give a clerear example, I hope it'll help you better understand what I mean let's say I have a custom class named Login:
    package ec
             [Bindable]
         public class Login
              public var ID:int;
              public var Role:String;         
              public function Login()
    And I need to use this class within MyAmazingCanvas, so my main app will be like this:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:oxcharts="ec.*">
         <mx:Script>
              <![CDATA[
                   import ec.Login;
                   [Bindable]
                   private var myLoginStatus:Login=new Login();
                   private function setLoginData():void{
                        myLoginStatus.ID=myID.text
                        myLoginStatus.Role=myRole.text;
              ]]>
         </mx:Script>
         <oxcharts:MyAmazingCanvas id="myCustomComp" myPublicNumber="323" LoginStatus="{myLoginStatus}" />
         <mx:TextInput id="myID" />
         <mx:TextInput id="myRole" />
         <mx:Button id="setData" label="Set Data" click="setLoginData()" />
    </mx:Application>
    When I said at the top level I meant outside the scope of any function, altough is not a requierement, you can as well set it at a function level.

  • Could not resolve s:ViewNavigatorApplication to a component  implementation firstView="views.MyApp

    Hi,
    Am getting an error message Could not resolve <s:ViewNavigatorApplication> to a component  implementation firstView="views.MyAppHomeView"> Am trying the following mxml code.
    [exec] Loading configuration file C:\Program Files\Adobe\Adobe Flash Builder 4.5\sdks\blackberry-tablet-sdk-1.0.1\frameworks\air-config.xml    
    [exec] C:\MyApp\src\MyPBApp.mxml(7): Error: Could not resolve <s:ViewNavigatorApplication> to a component implementation.    
    [exec] firstView="views.MyAppHomeView">
    Here's my MyApp.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:ViewNavigatorApplication
         xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx"
         firstView="views.MyAppHomeView">
         <fx:Style source="MyApp.css"/>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
    </s:ViewNavigatorApplication>
    and, here's the compile target of my build file
    <target name="compile">
             <!-- Run the AIR compiler to compile the application, including the PlayBook SDK AIR config -->
                       <exec executable="${playbook-sdk}/bin/amxmlc.bat" dir="${src.dir}">
                            <arg value="-load-config"/>
                            <arg value="${playbook-sdk}/frameworks/air-config.xml"/>
                        <arg value="-swf-version=10"/>
                            <arg value="-source-path+=${src.dir}"/>
                            <arg value="-compiler.library-path+=${playbook-sdk}/frameworks/libs"/>
                            <arg value="-compiler.library-path+=${lib.dir}"/>
                            <arg value="-compiler.debug=false"/>
                            <arg value="-output"/>
                            <arg value="${build-dir}/${app-swf}"/>
                            <arg value="${src.dir}/${app-name}.mxml"/>
                       </exec>
        </target>
    Any ideas why it cannot find that componenet?

    Thanks for the reply. I tried changing to the airmobile-config.xml but then I got the same error with a different componenet.
    Error: Could not resolve <r:QContainer> to a component implementation. <r:QContainer id="d">
    Could this related to a missing SWC from my build path do you think?

  • Could not resolve fx:Script (or fx: Declarations to a component implementation

    Hi,
    I am trying to compile a file into swf using mxmlc in command line.  When it is a very simple mxml, compile is successful. But when the file  contaion the fx name space, I get a compile error like: could not  resolve COMPONENT_NAME to a component implementation.
    I have to be able to do this, without the help of Flash Builder  because I am working on a project where I will need to generate swf  files from mxml files  which we generate the code of.
    I tried it with SDK version 4.0.0.,  version 4.1.0 build 16076 and 4.5.0. build 20967. And I also tried it in 3 different computers. Note: Our notebooks has Windows 7 OS - locale:Turkish.
     I read that this error is specific to some locales like Turkish here: http://forums.adobe.com/message/892431#892431, . But I couldnt find the solution.
    Any suggestions?
    The simple code I am trying to compile is(which is generated by Flash Builder 4 and can be compiled there):
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
    </s:Application>

    Could you please file a bug at http://bugs.adobe.com/jira with sample code that fails to compile on a Turkish system, so that we can track this problem and fix it in a future release?
    Gordon Smith
    Adobe Flex SDK Team

  • Could not resolve mx:AdvancedDataGrid to a component implimentation

       im trying to get this facebook application to work but i keep getting this error
    when i run the application: could not resolve <mx:AdvancedDataGrid> to a component implimentation
    it seems the namespaces are correct, what does this mean?
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
             xmlns:s="library://ns.adobe.com/flex/spark"
             xmlns:mx="library://ns.adobe.com/flex/halo" width="100%"
             height="100%" currentState="CONNECTING">
    <mx:AdvancedDataGrid id="adgFriends" dataProvider="{userFriends}"
                             designViewDataType="flat" horizontalCenter="0"
                             verticalCenter="19" includeIn="CONNECTED">
            <mx:columns>
                <mx:AdvancedDataGridColumn headerText="Name"
                                           dataField="first_name"/>
                <mx:AdvancedDataGridColumn headerText="Last Name"
                                           dataField="last_name"/>
            </mx:columns>
        </mx:AdvancedDataGrid>
    </s:Group>

    if i change the  xmlns:mx="library://ns.adobe.com/flex/halo" namespace to
    xmlns:mx="library://ns.adobe.com/flex/mx" i get 2 sets of these errors
    "access of undefined property AIR" and
    "access of undefined property FLEX" referring to these pieces of code.
    i am referencing the Facebook_library_with_AIRConnect_v3.4_flex.swc
               CONFIG::AIR
                    // DesktopSessionHelper import required for AIR and Facebook Connect
                    import com.facebook.utils.DesktopSessionHelper;
                    import com.facebook.session.DesktopSession;
                    // Session variable when running as AIR app
                    protected var session:DesktopSessionHelper;
                CONFIG::FLEX
                    // FacebookSessionUtil import required for Flex (browser) app
                    import com.facebook.utils.FacebookSessionUtil;
                    // Session variable when running as Flex (browser) app
                    protected var session:FacebookSessionUtil;

  • Error: Could not resolve s:states to a component implementation.

    So I am trying to setup states on a Flex application I'm building, but it doesn't seem to want to compile. I get this error:
    $ ./build.sh
    Loading configuration file /Applications/Adobe Flash Builder 4/sdks/4.1.0/frameworks/flex-config.xml
    uploader.mxml(24): Error: Could not resolve <s:states> to a component implementation.
        <s:states>
    Here is my build command nothing special ...
    $ cat ./build.sh
    #!/bin/bash
    mxmlc -output bin/uploader.swf src/uploader.mxml
    I have a class that extends the Spark application like so ...
    package com.uploader.controllers
        import spark.components.Application;
         dynamic public class FlashUploader extends Application
    Then in my main application mxml file I use it like so ...
    <?xml version="1.0" encoding="utf-8"?>
    <c:FlashUploader xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        xmlns:v="com.uploader.view"
        xmlns:c="com.uploader.controllers.*"
        minWidth="709" minHeight="400"
        skinClass="com.uploader.skins.UploaderApplicationSkin">
        <fx:Style source="styles.css" />
        <!-- states -->
        <s:states>
            <s:State name="default" />
            <s:State name="startup" />
            <s:State name="uploading" />
            <s:State name="normal" />
        </s:states>
    </c:FlashUploader>
    Now when I try to compile I get the states error. I've found several examples and even made a dummy app just using the spark application and it compiles fine. Not sure if I'm doing anything weird here but the few other flex devs I know don't seem to see anything wrong with what I'm doing that could cause this.

    When you define an object using a namespace you have to use the same namespace for its properties, so you will want to use "<c:states>" instead of "<s:states>" in this case.

  • Error - Could not resolve s:Script to a component implementation?

    Flex Builder 4.6, 60-day trial version. New  to MXML / AS, but familiar with Java, Javascript, XML, OpenLaszlo. Ooooold, sloooow Vista box.
    I want a bare-bones proof-of-concept class extending <s:Label> with a script responding to a click. Here's what I have:
    Ptile.mxml (in package com.blackbird):
    <?xml version="1.0" encoding="utf-8"?>
    <s:Label xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        xmlns:comp="com.blackbird.*"
        click="talkToMe()">   
        <s:Script>
            <![CDATA[
            private function talkToMe() : void {
                trace("I'm alive, sarge");
            ]]>   
        </s:Script>
    </s:Label>
    Calling application is :
    TileTest.mxml (also package com.blackbird):
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        minWidth="955"     minHeight="600"
        xmlns:comp="com.blackbird.*">
        <s:BorderContainer  width="100%" height="100%">
            <comp:Ptile x="40" y="200" />
        <s:BorderContainer/>
    <s:Application>
    Ptile.mxml won't compile - Error message in the editor is "Could not resolve <s:Script> to a component implementation". I've banged and hammered this around - namespaces, typos and syntax all checked, documentation, Google. No luck. For a bet, I'd guess it's a namespace problem - I'm a little shaky on that - but I'm sugared if I can find it.
    Using the <mx:Script> or <fx:Script> tags also fails.
    I've edited the Eclipse.ini file, as detailed here : http://forums.adobe.com/thread/449232. Nothing.
    Anybody? Thanks.

    There is no s:Script, it will be fx:Script and you will need the new Spark namespaces.
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"

  • Could not resolve s:ViewNavigatorApplication to a component implementation

    Hi,
    I am getting this error while building my Flex mobile project using ant build. It compiles preopely through flash Builder but gives the error : "Could not resolve <s:ViewNavigatorApplication> to a component implementation" when compiling with ant. I am using the config file airmobile-config.mxml . Here is my build script mcmlc task is below:
    <mxmlc file="${Src.dir}/${Application.name}.mxml" incremental="false" actionscript-file-encoding="UTF-8"
                 output="${Deploy.dir}/${Application.name}.swf" debug="${Debug.Boolean}" keep-generated-actionscript="false">
                 <load-config filename="${FLEX_HOME}/frameworks/airmobile-config.xml" />
                 <compiler.source-path path-element="${Src.dir}" />
              <source-path path-element="${externalLib.dir}/libraries/CommonMobile/src"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/mobile" includes="mobilecomponents.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/air" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/automation" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/mx" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/libs/player" includes="*.swc" append="true"/>
              <library-path dir="${FLEX_HOME}/frameworks/locale/en_US" append="true"/>
              <library-path dir="${externalLib.dir}/libraries/external/robotlegs/1.4.0/bin" includes="robotlegs-framework-v1.4.0.swc" append="true"/>
              <library-path dir="${tomcat.dir}/webapps/MobilityServer/WEB-INF/flex/libs" includes="fds.swc" append="true"/>  
              <library-path dir="${tomcat.dir}/webapps/MobilityServer/WEB-INF/flex/libs/air" includes="airfds.swc" append="true"/>
              <library-path dir="${tomcat.dir}/webapps/MobilityServer/WEB-INF/flex/libs" includes="fiber.swc" append="true"/>
              <library-path dir="${externalLib.dir}/libraries/CustomMobilelib/bin" includes="CommonMobile.swc" append="true"/>         
             </mxmlc>

    Thanks for the reply. I tried changing to the airmobile-config.xml but then I got the same error with a different componenet.
    Error: Could not resolve <r:QContainer> to a component implementation. <r:QContainer id="d">
    Could this related to a missing SWC from my build path do you think?

  • Problems with 3.6 could not resolve s:ViewNavigatorApplication

    Hi,
    I'm trying to use 3.6 and not having any luck...
    I have FB 4.7 (64-bit) on Windows.
    I have downloaded from here; http://www.adobe.com/devnet/air/air-sdk-download.html
    I have completed the steps here; http://helpx.adobe.com/flash-builder/kb/overlay-air-sdk-flash-builder.html
    I have merged the sdk as I would have done for 3.5,3.4 etc.
    Now, when I set the SDK to the 3.6 one, I get the error;
    "Could not resolve <s:ViewNavigatorApplication> to a component implementation."
    _MUST_ be something basic I'm doing wrong here!
    Help!
    G

    Now I'm confused.
    The text link you mention states that Flex users should take the SDK version without the compiler. BUT....
    the http://helpx.adobe.com/flash-builder/kb/overlay-air-sdk-flash-builder.html page says to download the SDK from
    http://labs.adobe.com/downloads/asc2.html
    but this page now redirects to:
    http://helpx.adobe.com/air/kb/archived-air-sdk-version.html
    which contains a large list of archived SDK's. So that help page never really says which version of the SDK to use - with or without the compiler. But other forum posts have implied its suppose to be the one with the compiler.
    Now since we're overlaying the ...plugins\com.adobe.flash.compiler_4.7.0.349722\AIRSDK folder that would make sense.
    So my questions are:
       Do we use the version with or without the compiler to do the overlay?
       Can we get Adobe to update that help page to reflect what we're really suppose to do?
      AND
       Does Flash Builder use this overlaid AIR SDK with any selected Flex SDK  as long as the project settings has the 'Include  Adobe AIR libraries' checkbox selected?
       What if I've configured the Apache 4.9.1 (Doesn't this have AIR SDK 3.4 embedded within it? - yeah I chose that option in the download installer) as my Flex SDK, then will the 'Include Adobe AIR libraries' checkbox still use the AIRSDK 3.6 I just overlaid?
    Is it just me, or is this just getting more and more confusing? Can we perhaps get a AIR SDK combo box to go beside the Flex combo box and when we check the 'Include Adobe AIR libraries' then we can select the AIR SDK we want? And get a 'configure AIR SDKs...' link too?

  • Error: Could not resolve s:SolidColor to a component implementation

    So I have a library project and in that project I have a CustomDataGridBackgroundSkin file which is as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx"
                 minWidth="25" minHeight="25">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <!-- layer 4: fill highlight -->
        <s:Rect left="0" right="0" top="0" height="100%" >
            <s:fill>
                <spark:SolidColor color="0x968f89" alpha="1" />
            </s:fill>
        </s:Rect>
    </s:SparkSkin>
    I am simply trying to get an ant task to compile this library to SWC, but I am getting a " Error: Could not resolve <s:SolidColor> to a component implementation" error during compile.  The only way to fix it is to add these lines of code (bold).
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx"
                xmlns:spark="mx.graphics.*"
                 minWidth="25" minHeight="25">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <!-- layer 4: fill highlight -->
        <s:Rect left="0" right="0" top="0" height="100%" >
            <s:fill>
                <spark:SolidColor color="0x968f89" alpha="1" />
            </s:fill>
        </s:Rect>
    </s:SparkSkin>
    I can also get this error to go away if I put this line in my build.xml file: "<include-sources dir="${src.dir}" includes="*"/>"
    But then I get this error => "[compc] Error: Unsupported file type: C:\dev_projects\features\flex4version\web\OneVoice\src\components.xml"
    components.xml is my manifest file.
    Anyone know what the issue is?  Why would I need the xmlns:spark="mx.graphics.*" namespace when I have xmlns:s="library://ns.adobe.com/flex/spark"?

    Curious. Which version of the Flex SDK are you using?
    Does this work if you try in a brand new project using Flex 4.1 or Flex Hero?
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx">
        <s:controlBarContent>
            <s:Button label="goto s1" click="currentState = 's1';" />
            <s:Button label="goto s2" click="currentState = 's2';" />
            <s:Button id="sdkVer" initialize="sdkVer.label = mx_internal::VERSION;" click="System.setClipboard(sdkVer.label);" />
        </s:controlBarContent>
        <s:states>
            <s:State name="s1" />
            <s:State name="s2" />
        </s:states>
        <s:Rect left="30" right="20" top="20" bottom="30" >
            <s:fill>
                <s:SolidColor color="0x968f89" color.s2="haloOrange" alpha="1" />
            </s:fill>
        </s:Rect>
    </s:Application>
    Peter

Maybe you are looking for

  • H323 Call Routing - 911

    I'm missing something here in this config.... If we dial 10 digits the call goes out the FXO port just fine, 911 gives us a fast-busy. configs below along w/ the debugs..   weird thing is on the 911 call it appears to be changing the called number an

  • To see the number of working days and leave of an employee for year

    HI SAP GURUS, I want to see the the number of working days and leave of all employees of the organisation for a year. Please tell me is there any report or any transaction code in sap to see the working days and leave for all employees. Thanks & Rega

  • Query on Enhancement Pack Upgrade/ Installation-Business Functions install

    I am working on an Enhancement Pack Upgrade. I have the following questions from the Client, can you please help answer u2013 Scenario u2013 Upgrade from ECC 6.0 to ECC 6.0 EhP4 1 Using Business Function Prediction service, assume SAP recommends 10 B

  • Connection Pool error

    Hello, I am getting the following error in Answers while trying to view the results Odbc driver returned an error (SQLExecDirectW). Error Details Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError

  • Display glitches after upgrading to OS 10.4

    Hello world- I recently updated the OS on my PB15 to 10.4. Ever since, my displays do very odd things, especially in Word: 1) When I try to scroll, the window produces repeating lines from the bottom line of text display 2) When I use dual monitors,