Flex beta 2 - ComboBox not working

it seems like ComboBoxes are not working with sdk 4.0.0.10485; while they were with 4.0.0.7219
i simply click and nothing happens..
code is this:
    <mx:ComboBox>
        <mx:ArrayCollection>
            <fx:String>AK</fx:String>
            <fx:String>AL</fx:String>
            <fx:String>AR</fx:String>
        </mx:ArrayCollection>       
    </mx:ComboBox>
but also using other kind of dataProviders it's the same..
am i mistaken?
Thanks!

ok, round 10,
this last round triggered my memory about a caching issue in lists that was resolved about 2 months ago its starting to smell a little like that so I need to do a search in jira and see if it is the same thing. In the mean time this is using the spark component, see if it gets closer to what you are chasing.
(it only works for item 1 and item 2 - i'm lazy )
David.
<?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/halo" minWidth="1024" minHeight="768" creationComplete="appInit()">
<fx:Script>
<![CDATA[
import spark.events.IndexChangeEvent;
import mx.collections.ArrayCollection;
[Bindable] private var myStates:ArrayCollection= new ArrayCollection([
{Key:1,state:'ACT',name:'Australian Capital Territory'},
{Key:2,state:'NSW',name:'New South Wales'},
{Key:3,state:'NT',name:'Northern Territory'},
{Key:4,state:'QLD',name:'Queensland'},
{Key:5,state:'SA',name:'South Australia'},
{Key:6,state:'TAS',name:'Tasmania'},
{Key:6,state:'WA',name:'Western Australia'},
{Key:7,state:'VIC',name:'Victoria'}]);
[Bindable] private var myACT:ArrayCollection= new ArrayCollection([
{Key:1,state:'ACT',name:'Kingston'},
{Key:2,state:'ACT',name:'Manuka'},
{Key:3,state:'ACT',name:'Narrabundah'},
{Key:4,state:'ACT',name:'RedHill'}]);
[Bindable] private var myNSW:ArrayCollection= new ArrayCollection([
{Key:1,state:'NSW',name:'Cronulla'},
{Key:2,state:'NSW',name:'Gymea'},
{Key:3,state:'NSW',name:'Miranda'},
{Key:4,state:'NSW',name:'Yowie Bay'}]);
[Bindable] private var myInfo:ArrayCollection= new ArrayCollection();
private function appInit(): void
myInfo=myACT;
protected function cb1_changeHandler(event:IndexChangeEvent):void
switch(cb1.selectedIndex)
case 0: myInfo=myACT;
break;
case 1: myInfo=myNSW;
break;
cb2.selectedIndex=-1;
]]>
</fx:Script>
<s:DropDownList id="cb1" x="37" y="97" dataProvider="{myStates}" change="cb1_changeHandler(event)" labelField="name" width="180" prompt="select something" enabled="true" selectedIndex="-1"></s:DropDownList>
<s:DropDownList id="cb2" x="249" y="97" labelField="name" width="180" dataProvider="{myInfo}" prompt="select something" selectedIndex="-1" enabled="true"></s:DropDownList>
</s:Application>

Similar Messages

  • Flex 3 App not working in with ColdFusion 9

    We have a Flex 3 application that uses flash remoting to connect to ColdFusion.   This app was working great with ColdFusion 8,  but will not work after installing ColdFusion 9.
    I am looking for any suggestions on what I might look for to fix this issue.

    Hey Tikis,
    There are a few factors that could be throwing this thing
    through a loop. I've had this exact same thing happen to me once
    before and the culprit for me was that my crossdomain.xml file
    wasn't 100% perfectly formed. Apparently Firefox didn't care enough
    and went on with it's life however IE decided it wasn't going to
    read it and I received that error, so that would be the first thing
    I would check.
    The next thing is what version of PHP are you running on the
    server, it seems to me that the newest release of 5.2.2 is throwing
    this error more often then ever before, something I might suggest
    is upgrading to AMFPHP 1.9. RemoteObjects natively send data in
    what's called the AMF3 format which is much speedier then it's
    predecessor of AMF0. Only AMFPHP 1.9 has the ability to receive /
    send the data back in AMF3 format, where as with the 1.2 version
    it's sending the call, converts it down to AMF0 sends the data (at
    a slower pace) and generates a result. The other advantage to being
    able to use AMF3 is having true type casted results such as if PHP
    returns a number you can check it by if(event.result == 0) where as
    AMF0 everything is converted into a string and then sent back to
    Flash / Flex. So aside from all of these advantages the last one is
    less code, you no longer need to use the RemotingConnection to
    convert everything down to AMF0. I would make a copy of amfphp on
    your linux of the 1.9 version and send the remote object at that
    first and see what happens, if you are still receiving the same
    error then the problem lies in something else.
    Hope this helps.

  • Flex Print Job not working with custom component

    Hi All,
    I have to print pages with header, body and footer. So the thought process was to create a custom component fro header, footer and body. Header component is based on Box, Body is a renderer (which will have fix value of items - and will decide the number of possible pages) and footer is again based on Box.
    But when i created a simple Custom component like this for header
    <?xml version="1.0" encoding="utf-8"?>
      <mx:VBox  xmlns:fx=http://ns.adobe.com/mxml/2009
      xmlns:s="library://ns.adobe.com/flex/spark"
      xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:HBox>      <mx:Label id="testLabel" text="Test Container"/>
    </mx:HBox> 
    </mx:VBox>
    Then when i try to add this to FlexPrintJob, and save it as 'xps' to see the print output, i get error message that this file is in use or damaged.
        var myPrintJob:FlexPrintJob = new FlexPrintJob();
      if(!myPrintJob.start()){
          return;
    var header:Header = new Header();
    header.width = myPrintJob.pageWidth;
    header.visible = false;
    FlexGlobals.topLevelApplication.addChild(panierPrintHeader);
    myPrintJob.addObject(header);
    myPrintJob.send();
    FlexGlobals.topLevelApplication.removeChild(panierPrintHeader);
     But this does not work and i get the above mentioned exception. Now when i not use the custom component and just have a label or HBox or anything on stage before the print functionality is invoked, it works fine. And this too haapens only if you have a mxml component, i tried by creating a new Label component using actionscript and then provide the same to the printJob, which did not work either. I need help on this, else i will have to take print functionality to server side(Java) which has some business implications, the reason why i am spending time on flex for printing. 
    Thanks and Regards,
    Jigar
    Looks like custom component print is not working fine with flex or i am doing something terribly wrong.
    Looking forward for help.

    Is there nobody in flex community who can help on this....
    Looks like a toothless class that adobe actionscript team has provided, which is not liked across much

  • ComboBox not working correctly

    Hi there,
    I am developing a small Flash (AS2) application, using Flash
    CS3, and have run into a problem with the ComboBox componet.
    I am loading another movie into the main movie with the
    following code:
    var container = _level0.createEmptyMovieClip("ui_slider",
    _level0.getNextHighestDepth());
    trace("On last frame");
    container.loadMovie("ui-sliderv2.swf");
    ui_slider._x = 60;
    ui_slider._y = -382
    everything works fine, but none of the comboBoxes are
    working. I can see the first item that can be selected, but the
    pull-down selection is not working. Nothing happens when I click
    it.
    the ui-sliderv2.swf movie works as expected when run on its
    own.
    Here are the links to the SWF.
    http://www.rmp-consulting.com/chomonicx/Chomonicx.html
    The menu SWF on it's own:
    http://www.rmp-consulting.com/chomonicx/ui-sliderv2.html
    Any suggestions?

    apply _lockroot = true to the movie clip that the SWF is
    loaded into.

  • Combobox not working using pdk 2.0

    Hello,
    I had developed iViews using pdk 1.0. I just installed pdk 2.0 and now my comboboxes do not work.  Am I missing something?
    thanks,
    David

    As well as updating your web.xml to 2.4, you need to update the URI so that you use JSTL1.1 instead of JSTL1.0
    If you are using JSP2.0 you should use JSTL1.1
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>[read this post reply #6 for more information|http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0]

  • Ideapad (Flex 15) touchscreen not working on upgrade to Windows 10

    I  have an Ideapad Flex 15.
    Since I upgraded yesterday to Windows 10, I have lost the touchscreen ability I had up to that point on Windows 8.1. On search for pen and touch, I was given this message on a system information page: "No pen or touch input is available for this display." I have looked in device manager under Human Interface Devices. Expanding the view to show hidden devices, I see "HID compliant touch screen." When I click to get device status, this is the message:
    "Currently, this hardware device is not connected to the computer. (Code 45) To fix this problem, reconnect this hardware device to the computer."
    How do I do that? I note a similar problem in Windows 8.1 on this posting:
    http://answers.microsoft.com/en-us/windows/forum/windows8_1-hardware/touchscreen-not-working/c48cda23-93f2-4a9a-b6da-f7f47e67de0a
    Does anyone have any idea how to reconnect the hardware device -- or at least to solve this problem? Thanks!
    Mod's Edit: Added model to Subject line for clarity

    I took this in to a shop, and two technicians tried to solve the problem to no avail. One of them did as suggested, and uninstalled the touchscreen driver under Mice and other devices, but that only disabled the mouse touchpad.  So it was reinstalled, and the driver for the touchscreen under Human Interface devices was reinstalled, but none of it helped, and I still lack the touchscreen capacity I had before.  I cannot scroll except on the side ribbon, and I cannot use the touchscreen to zoom in and out, which I could do on Windows 8 and 8.1.  So it seems there is no new Lenovo driver for the  IdeapadFlex 15 that is compatible with Windows 10.  I am told to wait and see, and to hope that Lenovo addresses this problem.  BTW, I previously had two Microsoft tech people remote control my computer to fix this, and they both failed.   I am disappointed with Microsoft and Lenovo.  Any computer that was bought within the last couple of years fitted with Windows 8 should upgrade no problem to Win 10. 

  • AIR SDK 17 (BETA) is not working with Flash CS6

    Hi,
    The latest AIR SDK 17 is not working with Flash CS6.
    I tried to publish and install an iOS app to my connected device via USB but I always get an error "Check if iTunes is installed".
    The latest stable AIR SDK 16 is working fine, and yes, iTunes is installed on my PC.
    DETAILS:
    - Flash CS6
    - AIR SDK 17
    - System: Windows 8,1
    - iPodTouch with iOS 8.1
    REPRODUCE:
    Open new AIR iOS template and publish/install it to a USB connected iOS 8.1 device.
    Anyone else got that error?

    I was getting this intermittently.   Not a super problem.   A remove and install in iTunes gets it loaded (after you tell ITunes where it is).

  • Flex/AMFPHP App NOT working in IE but works in FireFox...

    Hello I am beginning to develop Flex applications. I am
    working with PHP in a Symfony environment.
    The error below was appearing before in FireFox but
    disappeared after I uninstalled the Flash Player plugin and
    reinstalled the Flash debug player for FireFox. I also uninstalled
    the IE Flash Player and replaced it with the Flash debug player for
    IE (i believe it comes with Active X). I have the exact same
    version of Flash player for both browsers, 0.0.47.0). This is the
    error:
    [object RemotingConnection]
    Error #2044: Unhandled NetStatusEvent:. level=error,
    code=NetConnection.Call.BadVersion
    at sample/initApplication()
    at sample/___Application1_creationComplete()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/set initialized()
    at mx.managers::LayoutManager/::doPhasedInstantiation()
    at Function/
    http://adobe.com/AS3/2006/builtin::apply()
    at mx.core::UIComponent/::callLaterDispatcher2()
    at mx.core::UIComponent/::callLaterDispatcher()
    Again this error was appearing in FF before but now ONLY on
    IE. The same error arrises if I try to open the SWF file localed in
    the bin/ directory in the Flex project. My flex project is located
    on my Desktop and the server I am trying to connect to is on a
    Linux box. AGAIN, this project displays the data perfectly on FF
    but NOT on IE. It just displays several rows from a DB table in a
    datagrid in Flex.
    I have no idea how to approach this! Here is my ".mxml" file:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*" creationComplete="initApplication()">
    <mx:DataGrid dataProvider="{phpData}">
    <mx:columns>
    <mx:DataGridColumn headerText="User ID"
    dataField="userid"/>
    <mx:DataGridColumn headerText="User Name"
    dataField="username"/>
    <mx:DataGridColumn headerText="Email Address"
    dataField="emailaddress"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:Script>
    <![CDATA[
    [Bindable]
    public var phpData:Array;
    import flash.net.Responder;
    public var gateway:RemotingConnection;
    public function initApplication():void
    gateway = new RemotingConnection("
    http://project_dev_environment/web/backend_dev.php/gateway/amfphp");
    gateway.call("Sample.getUsers", new Responder(onResult,
    onFault));
    public function onResult(result:Array):void
    trace(phpData);
    phpData = result;
    public function onFault(fault:String):void
    trace(fault);
    ]]>
    </mx:Script>
    </mx:Application>
    Here is the required ".as" file:
    package
    import flash.net.NetConnection;
    import flash.net.ObjectEncoding;
    public class RemotingConnection extends NetConnection
    public function RemotingConnection(sURL:String)
    objectEncoding = ObjectEncoding.AMF0;
    if (sURL) {
    connect(sURL);
    public function AppendToGatewayUrl(s:String):void
    I have given a differnt URL because this is an internal
    application and wont be accessible by outside users.
    Again, this app works when loaded on FF but not IE! HELP
    please I have been trying to figure this out since 7 am this
    morning and I'm desperate!
    Just FYI AMFPHP is set up correctly, although its version 1.2
    - could this be causing problems?
    Please, PLEASE help me! or at least a hint. Thank you!

    Hey Tikis,
    There are a few factors that could be throwing this thing
    through a loop. I've had this exact same thing happen to me once
    before and the culprit for me was that my crossdomain.xml file
    wasn't 100% perfectly formed. Apparently Firefox didn't care enough
    and went on with it's life however IE decided it wasn't going to
    read it and I received that error, so that would be the first thing
    I would check.
    The next thing is what version of PHP are you running on the
    server, it seems to me that the newest release of 5.2.2 is throwing
    this error more often then ever before, something I might suggest
    is upgrading to AMFPHP 1.9. RemoteObjects natively send data in
    what's called the AMF3 format which is much speedier then it's
    predecessor of AMF0. Only AMFPHP 1.9 has the ability to receive /
    send the data back in AMF3 format, where as with the 1.2 version
    it's sending the call, converts it down to AMF0 sends the data (at
    a slower pace) and generates a result. The other advantage to being
    able to use AMF3 is having true type casted results such as if PHP
    returns a number you can check it by if(event.result == 0) where as
    AMF0 everything is converted into a string and then sent back to
    Flash / Flex. So aside from all of these advantages the last one is
    less code, you no longer need to use the RemotingConnection to
    convert everything down to AMF0. I would make a copy of amfphp on
    your linux of the 1.9 version and send the remote object at that
    first and see what happens, if you are still receiving the same
    error then the problem lies in something else.
    Hope this helps.

  • Flex Application does not work outside of the default dir

    Hi,
    I have developed a flex application which calls a http
    service and displays the contents in a text area.
    This works fine when I execute it from the flex builder or
    from the directory where the flex builder stores it.
    If I copy the files to any other dir or the server, after
    making http call no result is displayed in the text area.
    Is there any thing else i need to do other building
    application in flex builder for deployment.
    Please help,
    Thanks in advance,
    Chintan

    "rtalton" <[email protected]> wrote in
    message
    news:gjlmvm$hrv$[email protected]..
    > Stubborn, aren't we? Ok, let me try again:
    > You only use "loadPolicyFile" to load a non-default
    policy file. remove
    > that
    > line from your code.
    > Also you do not need this line:
    > flash.system.Security.allowDomain("*");
    > ...in your code. Remove it. This is used when you have
    two SWFs on two
    > different servers. You do not.
    >
    > Again, read this page:
    >
    >
    http://livedocs.adobe.com/flex/3/html/help.html?content=deployingoverview_12.htm
    > l
    >
    > Your answer is there.
    > Hint: all you need is to *properly* deploy a
    cross-domain policy file.
    > Really.
    > I'm being very honest here. Have I ever lied to you
    before? No, I haven't.
    > So
    > you're buying the first round tonight after work, ok?
    Some people will do anything for a date ;-)

  • XtremeGamer Flexi-Jack Microphone Not Working: SOLUT

    Hey Gents,?Several threads have people with basically this problem:?- Cant get the microphone to work or be detected in the flexi-jack- Choose input type greyed out- Microphone works elsewhere?I have a brand new Xtreme Gamer card and Turtle Beach 5. earphones with mic and got them working after having this problem. Basically, in a nutshell, the front panel plug is detected as a microphone which disables the flexi-jack to be used for a microphone. Even if you have no devices plugged in the front panel, just the extra cord and circuit makes your sound card "think" the mic is there (using the plug on the corner of the card inside the case). To use the microphone in the flexi-jack, you must unplug the front panel from the sound card. (Turn off computer, open the case, pull the plug out, tie it back or tuck it back somewhere.)? Then the flexi-jack will work with the mic and you can go on to do various other settings. Before starting this, try your microphone in your front panel. If it works there but not in the flexi jack where you want it to* then this may help you. I, being an enthusiastic new owner of an XtremeGamer card plugged all the stuff in and cleaned the case and all that even though I didn't plan on using the front panel. * All the plugs for my earphones and mic come off one cable, and the front panel on my case does not have the 5. so I needed the back flexi-jack to work. I hope this helps you guys figure out how to get your cards working the way you need. And I hope to shoot you with my Engineer Jackhammer Shotgun in BF2.

    Try switching the card to another PCI slot. There was some sort of IRQ conflict that was causing mine not to work. Switched slots and it worked perfectly.

  • Flex Mode - Speed not working on all files

    Hello,
    I've recently been working on a rather large session and when the ver9 came out I was very excited to see and play with the flex mode, finally a destructive pitch that is easier than the "Time Pitch tool".
    I've been using it a lot in this project and then a few days ago getting it to use speed mode got a bit flakey. For a short time I was able to set it back to one of the other modes then back to speed and have it work, but that isn't working anymore. I can still use speed mode on files I set back when it was working, but any new files I import and try to use it won't work.
    This is one of the biggest sessions I've ever had, 100+/- tracks with quite a lot of dsp going on, is it possible that has something to do with it?
    I have plenty of HD space free (600+GB), 6Gb Ram, and a dual 2.8Ghz quad core.
    Any ideas please, I really miss my brand new cool Flex mode tool.
    I can still go in to the Time and Pitch machine and do it there, but that takes a whole lot more time, especially when I'm trying to line up with other tracks.
    So frustrating when the "speed" mode of pitch shifting is the easiest of all the modes, computationally speaking, just resample, no math at all, but its the mode I as a sound designer use the most.
    Thanks,
    james

    Thanks for the response but no, I'm talking about the new "Flex Mode" pitch shift in LogicPro 9. It has multiple modes for different types of pitch shift and the "speed" mode is the mode I'm trying to use and not having any luck.
    Sound Toy's? How is that used in Logic? Is it through the "Time and Pitch Machine"? If not I'd love to hear how its used and if it can do the basic faster/slower pitch shift? Otherwise the basic "Classic" shift does what I want there, but that is really hard to line up when sync is more important than pitch or even tempo. Most of the time I just want to pitch stuff way down, 2 or 3+ octaves and not get all the artifacts that come with trying to match pitch or tempo, just your basic resample pitch shifting:).

  • FIrefox 4 beta does not work anymore. Directly after start-up (my homepage is showing) is firefox hanging, showing an hour glass. No button, URL or whatever can be used, except for the close button. But even after closing firefox, it keeps on running.

    Even after closing down the application, the firefox task remains running in the background and must be killed with Windows Task Control.
    Even deinstalling and installing the latest beta version does not solve it. Unfortunately I have to use Google Chrome Now.

    Ok. I disabled hardware acceleration. The only extension is the McAfee Scriptscan for Firefox 15.1.0, which was already disabled. I then disabled all plugins (Acrobat, Google Update, Intel Identity Protection (2x), Java Deployment Toolkit, Java Platform, MS Office 2013, Quicktime, Shockwave, Silverlight), which were all up to date.
    Normal or safe mode still has same result. No startup, no option button and no customize.
    Thanks for your help. Got any other suggestions?

  • Why does the beta version not work with Norton password verifiaction

    After installing Beta 4 and launching the program the auto fill-in of passwords provided by Norton Security no longer functions. I remove the beta version and launched the older 3.0 version and all worked as it should.

    Norton doesn't support pre-release beta versions of web browsers, and with Firefox it has taken 6 to 8 weeks '''after''' to get their stuff compatible and then fixed & compatible with some Firefox major releases. It's almost like they were surprised by Mozilla releasing a new version of Firefox. It was like they waited until the release and customer's started complaining about the lack of support, before they even started working on their updated version for Firefox.

  • 'Using ColdFusion with Flex – sample does not work

    Hi, I am having problems with Tom Jordahl's article on 'Using
    ColdFusion with Flex – Part 1: Creating and running a contact
    manager application' found on link '
    http://www.adobe.com/devnet/flex/articles/coldfusionflex_part1_02.html'
    I do not understand his instruction. In step 4, it states:
    "Copy the channel definition from the example Flex
    configuration files found in resources/config (default location:
    C:\fds2\resources\config\). "
    In that folder, I have the following files:
    data-management-config.xml, messaging-config.xml, proxy-config.xml,
    remoting-config.xml. So which file in this folder am I supposed to
    copy from. And where am I supposed to paste it to? Is it into
    WEB-INF/services-config.xml file ?
    When I ran the test,
    http://localhost:8700/samples/dataservice/cfcontact/contactmgr.mxml,
    I get the following errors:
    4 Errors found.
    Error /dataservice/cfcontact/contactmgr.mxml:31
    Definition samples.contact could not be found.
    30: import mx.rpc.events.*;
    31: import samples.contact.*;
    32:
    I am very new at Flex and trying hard to understand this sw.
    Can someone pse help. Thanks a million.

    What he means is to copy the channel section from the
    C:\fds2\resources\config\services-config.xml file:
    <!-- ColdFusion specific RTMP channel -->
    <channel-definition id="cf-dataservice-rtmp"
    class="mx.messaging.channels.RTMPChannel">
    <endpoint uri="rtmp://{server.name}:2048"
    class="flex.messaging.endpoints.RTMPEndpoint"/>
    <properties>
    <idle-timeout-minutes>20</idle-timeout-minutes>
    <serialization>
    <!-- This must be turned off for any CF channel -->
    <instantiate-types>false</instantiate-types>
    </serialization>
    </properties>
    </channel-definition>
    <!-- ColdFusion specific HTTP channel -->
    <channel-definition id="cf-polling-amf"
    class="mx.messaging.channels.AMFChannel">
    <endpoint
    uri="
    http://{server.name}:{server.port}/{context.root}/messagebroker/cfamfpolling"
    class="flex.messaging.endpoints.AMFEndpoint"/>
    <properties>
    <serialization>
    <!-- This must be turned off for any CF channel -->
    <instantiate-types>false</instantiate-types>
    </serialization>
    <polling-enabled>true</polling-enabled>
    <polling-interval-seconds>8</polling-interval-seconds>
    </properties>
    </channel-definition>
    To the file
    C:\fds2\jrun4\servers\default\samples\WEB-INF\flex\services-config.xml.
    The resources directory contains just templates for
    development, the samples
    directory is a fully-deployed flex app.
    Jorge Hernandez
    "watsonValu" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi, I am having problems with Tom Jordahl's article on
    'Using ColdFusion
    > with
    > Flex ? Part 1: Creating and running a contact manager
    application' found
    > on
    > link
    > '
    http://www.adobe.com/devnet/flex/articles/coldfusionflex_part1_02.html'
    > I do not understand his instruction. In step 4, it
    states:
    > "Copy the channel definition from the example Flex
    configuration files
    > found
    > in resources/config (default location:
    C:\fds2\resources\config\). "
    > In that folder, I have the following files:
    data-management-config.xml,
    > messaging-config.xml, proxy-config.xml,
    remoting-config.xml. So which file
    > in
    > this folder am I supposed to copy from. And where am I
    supposed to paste
    > it to?
    > Is it into WEB-INF/services-config.xml file ?
    > When I ran the test,
    >
    http://localhost:8700/samples/dataservice/cfcontact/contactmgr.mxml,
    I get
    > the
    > following errors:
    > 4 Errors found.
    > Error /dataservice/cfcontact/contactmgr.mxml:31
    > Definition samples.contact could not be found.
    > 30: import mx.rpc.events.*;
    > 31: import samples.contact.*;
    > 32:
    >
    > I am very new at Flex and trying hard to understand this
    sw. Can someone
    > pse
    > help. Thanks a million.
    >
    >

  • Is flex build will not work in iOS3(upgraded to 4)

    We have an iOS3 upgraded to 4...
    when trying to install the ipa file,  getting a message "cannot be installed as it is not compatible..." .

    I think Joe, and the Adobe web pages, may be wrong about it needing iPod Touch 4th generation. See here, that the two use the same processor:
    http://en.wikipedia.org/wiki/IPod_Touch#Specifications
    and here, where in one thread someone tried it on a 3rd generation iPod, and it worked:
    http://forums.adobe.com/message/3778614

Maybe you are looking for

  • How to import a transport from one SAP system to another SAP System?

    We have a requirement where the same security report needs to be made avialble across the whole SAP landscape - comprising of ECC6, PI7, BW, HR , SRM, CRM etc. To reduce the time and effort, is it possible to create the report in ECC6 attach it to a

  • How many Library folders are there???

    I'm thoroughly confused. I copied all my websites from my PC to my MacBook Pro. I can access them by opening Finder and clicking my name (next to the house icon, between Desktop and Applications, then clicking Library > Webserver > sites. But when I

  • Port 32 error in windows 7

    Hello; I  am a new user of labview. I want to use a .VI that properly works in windows xp.But when I run this .VI in windows 7, an error at port 32 is displayed. (This .VI is a driver for a hardware that controls some laboratory instruments. Also my

  • Error in Custom "Non Po Invoices" module

    Hi All, I did migrate the oracle 11i custom "Non Po Invoices" module into R12. I'm able to run the "Create Non Po invoice page" without any error, but when I try to submit the invoice, I'm getting error like "Invoice Number - Set method for attribute

  • Why you remove the bone tool from adobe flash cc

    Hi, I wonder why you remove the bone tool from flash cc . it was a very useful tool for animation. I hope that you fix this problem and return it back.