I can't run this example in flashbuilder4

hello. i'm newbie so i read some  example flex, but i'm usually meet error. for example this:
http://share.megaplus.vn/dl.php/2062988. i know it is flex3 file,but in flashbuilder 4 have support trasition automatic flex3 to flashbuilder4
i can't run it in flashbuilder4 and if i want it run , how do i make?
please help me. Thanks

Hi Phuong,
Have you tried the horizontal scrollbar at the bottom of the sample. If you slide that back and forth, the carousel will spin around. You can also click on any thumbnail in the carousel to spin it to make that the active selection.
Cheers,
Maile

Similar Messages

  • How can i run this query in BI Answers

    Hi,
    pls tell me how can i run this sql statement in BI Answers....???
    select abc_date,abc_asset_desc,sum(nvl(abc_market_val_lcy,0)+nvl(abc_accr_lcy,0)) "total balance" from abc
    group by abc_date,abc_asset_desc;any help would be appriciated.... :-)
    Regards

    Strange question this one.
    normally with Answers you pick the columns you want to report on and the BI server will construct the SQL for you.
    In this example you would need a star with the abc dimension logical table and a logical fact for abc (these can be in the same table), which has a calculated field for 'Total Balance'.
    You then pick the columns you require and Answer and the BI will automatically add the group by.
    Adrian
    Majendi

  • I have an old file that was made by macromedia flash,but I can't run this file in my Windows 7 64-bit ,while I can run it in Windows XP 32-bit

    I have an old file that was made by macromedia flash,but I can't run this file in my Windows 7 64-bit ,while I can run it in Windows XP 32-bit

    Hi momi macrom,
    Have moved your post to the Flash forum. Experts here are better placed to help you.
    Thanks,
    Preran

  • How  can i run this code correctly?

    hello, everybody:
        when  i run the code, i found that it dons't work,so ,i  hope somebody can help me!
        the Ball class is this :
        package {
        import flash.display.Sprite;
        [SWF(width = "550", height = "400")]
        public class Ball extends Sprite {
            private var radius:Number;
            private var color:uint;
            private var vx:Number;
            private var vy:Number;
            public function Ball(radius:Number=40, color:uint=0xff9900,
            vx:Number =0, vy:Number =0) {
                this.radius= radius;
                this.color = color;
                this.vx = vx;
                this.vy = vy;
                init();
            private function init():void {
                graphics.beginFill(color);
                graphics.drawCircle(0,0,radius);
                graphics.endFill();
    and the Chain class code is :
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        [SWF(width = "550", height = "400")]
        public class Chain extends Sprite {
            private var ball0:Ball;
            private var ball1:Ball;
            private var ball2:Ball;
            private var spring:Number = 0.1;
            private var friction:Number = 0.8;
            private var gravity:Number = 5;
            //private var vx:Number =0;
            //private var vy:Number = 0;
            public function Chain() {
                init();
            public function init():void {
                ball0  = new Ball(20);
                addChild(ball0);
                ball1 = new Ball(20);
                addChild(ball1);
                ball2 = new Ball(20);
                addChild(ball2);
                addEventListener(Event.ENTER_FRAME, onEnterFrame);
            private function onEnterFrame(event:Event):void {
                moveBall(ball0, mouseX, mouseY);
                moveBall(ball1, ball0.x, ball0.y);
                moveBall(ball2, ball1.x, ball1.y);
                graphics.clear();
                graphics.lineStyle(1);
                graphics.moveTo(mouseX, mouseY);
                graphics.lineTo(ball0.x, ball0.y);
                graphics.lineTo(ball1.x, ball1.y);
                graphics.lineTo(ball2.x, ball2.y);
            private function moveBall(ball:Ball,
                                      targetX:Number,
                                      targetY:Number):void {
                ball.vx += (targetX - ball.x) * spring;
                ball.vy += (targetY - ball.y) * spring;
                ball.vy += gravity;
                ball.vx *= friction;
                ball.vy *= friction;
                ball.x += vx;
                ball.y += vy;
    thanks every body's help!

    ok, thanks for your reply ! I run this code in the Flex builder 3!and the Ball class and the Chain class are all in the same AS project!
      and i changed the ball.pv property as public in the Ball class, and  the Chain class has no wrong syntactic analysis,but the AS code don't run.so this is the problem.
    2010-04-21
    Fang
    发件人: Ned Murphy <[email protected]>
    发送时间: 2010-04-20 23:01
    主 题: how  can i run this code correctly?
    收件人: fang alvin <[email protected]>
    I don't see that the Ball class has a pv property, or that you even try to access a pv property in the Chain class.  All of the properties in your Ball class are declared as private, so you probably cannot access them directly.  They would need to be public.  Also, I still don't see where you import Ball in the chain class such that it can use it.

  • I developed app in mac 10.6.8 with xcode 3.2.6.how can i run this app in ipad device

    i developed app in mac 10.6.8 with xcode 3.2.6.how can i run this app in ipad device

    actually i planned to get  provisioning profiles from apple by paying 99$ in following website
    https://developer.apple.com/programs/start/ios/ and followed by
    https://developer.apple.com/programs/start/standard/.
    but in last link,following thing were mentioned at bottom -
    Technical Requirements
    You must have an Intel-based Mac running OS X 10.8 Mountain Lion or later to develop and distribute iOS apps and Mac apps.
    but i\m using mac running OS X 10.6.8 snow leopard.
    Doubt:can't i run my app in ipad device?\
    Thank's in advance..

  • I created an application on a machine with Labview 6.01, can I run this application on another machine that has labview 5?

    In the development center we use Labview 6.01, in the testcenter we use labview 5.
    Additionally, in the development center we use a unix version of Labview and in the testcenter a Windows version.

    You can Save with Option to save VIs as version 5.
    Unless your VIs deal with system files in UNIX or Windows (ie. Registry...)
    then you have to develop your VI specificly on that OS, since UNIX and
    Windows have different ways to deal with system files. Mostly, LabVIEW is OS
    independent. I used to have VIs developed from LabVIEW v.3 on UNIX, I can
    still open these files from LV v.4 on Windows. Now I can still work with
    these VIs on LV 6 on Windows.
    Good luck,
    Nam.
    roybra wrote in message
    news:[email protected]..
    > I created an application on a machine with Labview 6.01, can I run
    > this application on another machine that has labview 5?
    >
    > In the development center we use Labview 6.01, in the testcenter we
    > use l
    abview 5.
    >
    > Additionally, in the development center we use a unix version of
    > Labview and in the testcenter a Windows version.

  • Getting a message that I can't run this app on my PC and to contact the pulisher to get a version that I can run

    getting a message that I can't run this app on my PC and to contact the pulisher to get a version that I can ru

    Which Adobe product?
    Which operating system?

  • Can't run DukesAgeResource examples (Your First Cup)

    Hello, I believe I have found a possible issue in the "Your First Cup: An Introduction to the JavaTM EE Platform", and wonder if it relates to the fact that I cannot manage to run the example. At page 21, step 12, is states "In the REST Resources Configuration dialog, uncheck Add Jersey Library and click OK.". However, after clicking Finish (Step 11) no such a dialog is displayed, instead, NetBeans shows the DukesAgeResource.java file right away. Once I have completed entering the example and try to run it, I get this error message on the browser
    HTTP Status 404 -
    type Status report
    message
    descriptionThe requested resource () is not available.
    GlassFish Server Open Source Edition 3.1.2.2
    I deleted my project and files and tried again half a dozen times, with the same result.
    I am starting out with Java EE, any clue about what I may be doing wrong? May be the issue is related to the discrepancy on the "Your First Cup" tutorial?
    Note that the ready-made example that comes packaged with NetBeans runs fine.
    Edited by: 966753 on Oct 21, 2012 6:25 AM

    Fanta wrote:
    Still, I believe I had followed all steps in the tutorial carefully.That's the sh1t with tutorials - they don't teach you anything, they just show you how to do stuff. So they can also show you how to do stuff badly and you'd assume it to be truth.
    Get a good book and begin by understanding it all, not by learning "what code to write".

  • How many computers can I run this software on?

    The laptop I am currently using is dying. Can I install this on a new computer?         

    Thanks for your help, but the drop down window you posted is nothing like mine. I am running windows 7, 64 bit. I am calling Adobe support tomorrow. My desktop dies completely and I lost Adobe Pro 9 and CS4 before I could deactivate them. I've read that Adobe will deactivate them for me when this happens. I'll ask about the Elements 10 too when I talk to them.
    My laptop is experiencing the same problems as my desktop was, so I know it is only a matter of time before it's gone too. I have Acrobat pro 10 on it, which I can deactivate. If Adobe deactivates Pro 9 and CS4, they'll go on another desktop, which is my workstation, when I get one . BTW, I tried to take a screen shot of my menu, but Adobe will not allow me to, so I can't show you what I was seeing.
    Again, thanks for everything.

  • Doubt in AXIS-Exception in thread "main" . how can i run this program

    hi
    I am new to axis., I done few webservice program using Jwsdp
    i can't resolve the reason for this exception.
    I have set all the classpath and other path variable that is necessary for axis .,
    I got this example from http://javaboutique.internet.com/tutorials/Axis/index.html
    Can any one help to solve this problem.,
    **************Code***************
    import java.util.*;
    public class NHLService {
      HashMap standings = new HashMap();
      public NHLService() {
        // NHL - part of the standings as per 04/07/2002
        standings.put("atlantic/philadelphia", "1");
        standings.put("atlantic/ny islanders", "2");
        standings.put("atlantic/new jersey", "3");
        standings.put("central/detroit", "1");
        standings.put("central/chicago", "2");
        standings.put("central/st.louis", "3");
      public String getCurrentPosition(String division, String team) {
        String p = (String)standings.get(division + '/' + team);
        return (p == null) ? "Team not found" : p;
    package hansen.playground;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import javax.xml.rpc.namespace.QName;
    import java.net.*;
    public class NHLServiceClient {
       public static void main(String [] args) throws Exception {
           Service service = new Service();
           Call call = (Call)service.createCall();
           String endpoint = "http://localhost:8081/axis/NHLService.jws";
           call.setTargetEndpointAddress(new URL(endpoint));
           call.setOperationName(new QName("getCurrentPosition"));
           String division = args[0];
           String team = args[1];
           String position =
             (String)call.invoke(new Object [] {new String(division), new String(team)});
           System.out.println("Got result : " + position);
    }************ classpath***************
    :/home/sujithkr/webservices/xml-axis/java:
    /home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/axis.jar
    /home/sujithkr/webservices/xml-axis/lib/activation.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/clutil.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/commons-logging.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/jaxrpc.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/log4j-core.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/tt-bytecode.jar
    ********************Error Report*******************************
    java hansen.playground.NHLServiceClient atlantic philadelphia
    Exception in thread "main" Error while compiling: /usr/local/tomcat/webapps/axis//NHLService.java
    at org.apache.axis.message.SOAPFaultBuilder.endElement(Unknown Source)
    at org.apache.axis.encoding.DeserializationContextImpl.endElement(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:633)
    at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanEndElement(XMLNSDocumentScannerImpl.java:719)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1685)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
    at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
    at org.apache.axis.encoding.DeserializationContextImpl.parse(Unknown Source)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at hansen.playground.NHLServiceClient.main(NHLServiceClient.java:21)
    suse-1:/home/sujithkr/webservices # clear
    suse-1:/home/sujithkr/webservices # java hansen.playground.NHLServiceClient atlantic philadelphia
    Exception in thread "main" Error while compiling: /usr/local/tomcat/webapps/axis//NHLService.java
    at org.apache.axis.message.SOAPFaultBuilder.endElement(Unknown Source)
    at org.apache.axis.encoding.DeserializationContextImpl.endElement(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:633)
    at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanEndElement(XMLNSDocumentScannerImpl.java:719)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1685)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
    at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
    at org.apache.axis.encoding.DeserializationContextImpl.parse(Unknown Source)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at hansen.playground.NHLServiceClient.main(NHLServiceClient.java:21)
    thank you for helping me in your hectic schedule....

    Please post your code using code tags.
    When I try to compile or build i cant.What is your question? Exactly what error message do you get?

  • Siebdev.exe  - Can I run this in batch mode?

    Just so you are aware, I know nothing about siebel. However, in conjuction with a siebel developer who should know; we are trying to invoke siebdev.exe from a CIB server (jenkins specifically).
    However, running the /batchimport option appears to launch a gui; which I'm fairly sure is causing the app to fail via the jenkins batch job on a windows server (we get an event log application fial)
    Can anyone tell me iif it is posisble to run siebdev.exe silently? or at least so it doesnt fire up the gui?
    Appreciate any help that you can offer.
    Many thanks
    dD

    so, further to this
    I setup a windows schedule job, and that appears to run the job fine.
    However, this runs as my admin account rather than as the service (which doesnt have admin access rights to the machine).....
    Do I need admin rights to run this?
    dD

  • Can we run this statement

    Can we use this SQL statement and create a sum
    select WHSE_DBA.FLIGHT_ACTIVITY.rental_cost,
    WHSE_DBA.FUEL_PURCHASE.actual_cost,
    WHSE_DBA.FUEL_PURCHASE.unit_cost,
    WHSE_DBA.FUEL_PURCHASE.total_cost,
    sum(WHSE_DBA.FLIGHT_ACTIVITY.rental_cost+
    WHSE_DBA.FUEL_PURCHASE.actual_cost+
    WHSE_DBA.FUEL_PURCHASE.unit_cost+
    WHSE_DBA.FUEL_PURCHASE.total_cost) as Total_Cost from
    WHSE_DBA.FLIGHT_ACTIVITY,
    WHSE_DBA.FUEL_PURCHASE
    where WHSE_DBA.FLIGHT_ACTIVITY.SRC_CONTROL_NO=WHSE_DBA.FUEL_PURCHASE.SRC_CONTROL_NO
    group by
    rental_cost,actual_cost,unit_cost,total_cost

    Hi,
    As Rkhtsen said, one of the columns you're trying to SUM is a VARCHAR2 or other string. If that's the case, and the column is supposed to contain the string representation of a number (a very bad idea because it causes this problem), then you have to figure out what the bad data is, and clean it up.
    This function can help.
    CREATE OR REPLACE FUNCTION  to_num
        in_num_text  IN  VARCHAR2,
        in_fmt_text  IN  VARCHAR2
                         DEFAULT NULL
    RETURN  NUMBER
    --  **  t o _ n u m  **
    --  to_num returns the value of in_num_text if it is a number in
    --    the format specified by in_fmt_text, NULL if it is not.
    --  If in_fmt_text is omitted, to_num will return a number if
    --    in_num_text is a number in ANY usual format, e.g. '5', '+5',
    --    '5.00', '.5e1' all return 5.
    IS
    BEGIN
        IF  in_fmt_text  IS NULL
        THEN
            RETURN  TO_NUMBER ( in_num_text );
        ELSE
            RETURN  TO_NUMBER ( in_num_text
                              , in_fmt_text
        END IF;
    EXCEPTION
        WHEN OTHERS
        THEN
            RETURN  NULL;
    END   to_num;
    /For example, say that you learn that flight_activity.rental_cost is a VARCHAR2 column. The following query will show all the values from that table that are not valid numbers:
    SELECT  rental_cost
    FROM    flight_activity
    WHERE   rental_cost         IS NOT NULL
      AND   to_num (rental_cost) IS NULL;If this query produces any rows, that's what's causing the problem. (The same problem may exist in other tables, too.) Either fix the rows shown, or, if it's legitimate to ignore them, use to_num (rental_cost) instead of rental_cost in your SUM.

  • How can i run the example programme without hardware

    Hi,
         We are using NI-9233 for our Project. We would like to run the example programme, the NI-9233 getting started(host).vi ... I would like to ask that how can i run the Programme without Hardware.& How shall i get the input signal (simulating signal)?because we would like to test it while we are waiting for the hardware to be delivered . 
    thanks
    Best regards

    As Mike indicated , " you can use MAX to simulate some (not all) DAQmx devices. There's a NI-USB-9233 device that you can probably use. Open MAX, then expand "My System", the expand "Devices and Interfaces", then right-click on "NI-DAQmx Devices" and select "Create New NI-DAQmx Device -> NI-DAQmx Simulated Device". Select the device from the list. See the online help for MAX for further help.
    If you don't see "NI-DAQmx Devices" in MAX you need to install NI-DAQmx. You can download it from NI here. "
    hi,
         the link you gave me to download is "NI-DAQmx Devices" ... There is no software to download for Labview 8.2.1. So should i use 8.1 or 8.3 instead of 8.2.1 ? If not, can you tell me the CD no. that includes the "NI-DAQmx Devices" folder of Labview 8.2.1 version? Because we can get the cd from our school's component store. Thank you so much.
    Best Regards,
    Su

  • Enable-MSDSMAutomaticClaim can't run this silently?

    Hi,
    I am trying to run the following command however, it always asks for a confirmation, but I am trying to run this in a script for automated configuration. is there any way i can run this "silently" which will accept the Yes or All confirmation?
    Enable-MSDSMAutomaticClaim –BusType iSCSI
    thanks
    Steve

    Hi,
    This appeared to work when I ran it as a command (both approaches whether it be separate lines or all in one) however, when i ran it as part of a script it still prompted me for an answer. I am therefore rather confused as to why it would work as a command
    but not in a script. You would have thought all commands which require an answer would include a -Confirm parameter but this appears to not have one.
    Steve
    It appears the documentation is a little sloppy.  
    According to this: 
    http://chinnychukwudozie.com/2013/11/11/configuring-multipath-io-with-multiple-iscsi-connections-using-powershell/
    That's actually a function, not a cmdlet.  And it appears they've not provided a parameter for Confirm.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • I can't run this file

    I tried running this file, but keep on getting this one error message.
    import java.util.*;
    import java.io.*;
    * My first print message for CS 170
    * @author (John Vu)
    * @version (September 11, 2009)
    public class PrintMessage
    // Program-wide input and output streams
    private PrintStream cout = System.out;
    private Scanner cin = new Scanner(System.in);
    * These are the actions my program will perform.
    public void run()
    System.out.println(
    "What is the difference between a ' and a \"?" +
    "Or between a \" and a\"?");
    System.out.println(
    "One is what we see when we're typing our program." +
    "The other is what appears on the \"console\".");
    * The standard Java entry point. DON'T MODIFY.
    * @param args the command-line arguments.
    @SuppressWarnings("null")
    public static void main(String...args)
    PrintMessage app;
    app.run(); (this is line 37)
    Exception in thread "main" java.lang.Error: Unresolved compilation problem:
         The local variable app may not have been initialized
         at PrintMessage.main(PrintMessage.java:37)
    can anyone help me?

    You can't use an object until you initialize it. So it's not:
        PrintMessage app;
        app.run(); // (this is line 37)but:
        PrintMessage app = new PrintMessage();
        app.run(); // (this is line 37)Also, when posting code here, please use code tags so that your code will retain its formatting and thus will be readable -- after all, your goal is to get as many people to read your post and understand your code as possible, right?
    To do this, highlight your pasted code (please be sure that it is already formatted when you paste it into the forum; the code tags don't magically format unformatted code) and then press the code button, and your code will have tags.
    Another way to do this is to manually place the tags into your code by placing the tag [cod&#101;] above your pasted code and the tag [cod&#101;] below your pasted code like so:
    [cod&#101;]
      // your code goes here
      // notice how the top and bottom tags are different
    [/cod&#101;]Welcome to the sun java forums.
    Edited by: Encephalopathic on Sep 12, 2009 1:02 PM

Maybe you are looking for

  • How can I compress an Imported Movie even further?

    I have a 20 second movie 230 x 129 size. The file size is 1.2 mb. I then imported it into Flash. After it's all said and done the finall SWF is 1.7 mb. I plan to put this on my homepage, but I want the file to be smaller. I reduced the flash .jpg and

  • Does anyone know why this happened ?

    i have an ipod touch 4th gen when i was downloading a app the screen went black.i tried to fix it by pressing the button but it made it worse red lines appeared on the screen and after a while it got fixed but i was just wandering why this happend an

  • SAP CIN SD Condition Types for NCCD, ECS, SECESS

    Hi, i have a question. what are the condition types i need for getting NCCD, ECS, SECESS inside my Pricing Procedure. I looked up the Pricing Procedure JINFAC standard and found only Condition Types for: BED AED SED CESS Why are they not inside the s

  • Free anti-virus ware for macbook?

    Can anybody recommend a good anti-virus program for my macbook air, i've surfed the net but theres so much conflicting advice and i'm no expert, help!

  • Wireless trackpad not working after lion update on May 15, 2012

    Right after OSX update on May 15, 2012, the pairing of my wireless trackpad to the desktop is no longer working. First the bluetooth found my trackpad.  After clicking "continue", the box showed: "No trackpad found  The pariing attempt was unsuccessf