Could someone tell me what is wrong with AS 3.0

I'm moving a movie clip that is off the stage and acts as a
popup window to the visible area. then i'm animating it to cover
the entire stage size. then moving a box in.
This thing is very very buggy. It works about 70% of the time
correct. I have the variables of the size traced and they are
ALWAYS correct. However the animation doesn't reflect this.
Sometime the box won't animate the width, sometimes the height, and
sometimes it doesn't show up at all. What is going on?
Thanks!

your code is correct (with the assumptions given above). you
can test it outside your current project and verify that it works.
i just finished a project where i ported an as2 application
to as3. that application used many tweens and i kept them in the
as3 version. i did run into some problems with the tweens that i
solved by giving the tweens different names.
for example, if you call layersWindowIn() twice, with the
second call occurring before the first has completed, you'll
probably run into problems. is that when the problems occur?

Similar Messages

  • Can someone tell me what's wrong with this LOV query please?

    This query works fine..
    select FILTER_NAME display_value, FILTER_ID return_value
    from OTMGUI_FILTER where username = 'ADAM'
    But this one..
    select FILTER_NAME display_value, FILTER_ID return_value
    from OTMGUI_FILTER where username = apex_application.g_user
    Gives the following error.
    1 error has occurred
    * LOV query is invalid, a display and a return value are needed, the column names need to be different. If your query contains an in-line query, the first FROM clause in the SQL statement must not belong to the in-line query.
    Thanks very much,
    -Adam vonNieda

    Ya know, I still don't know what's wrong with this.
    declare
    l_val varchar2(100) := nvl(apex_application.g_user,'ADAM');
    begin
    return 'select filter_name display_value, filter_id return_value
    from otmgui_filter where username = '''|| l_val || '''';
    end;
    Gets the same error as above. All I'm trying to do is create a dropdown LOV which selects based on the apex_application.g_user.
    What am I missing here?
    Thanks,
    -Adam

  • Can someone tell me what's wrong with my router?

    i was just using my router half-hour ago and it was working fine......i come back on a little bit and it is not working anymore........my wlan and dmz light in front of my WRT54G router won't light up and it keeps telling me that my connection is limited...i already reset both router and cable modems like 100 times already..is there any way i could fix this?

    okay...  if you are using cable internet connection, try restting the router back to factory default settings by pressing reset butoon on the back panel of router, power cycle the n/w by unplugging power cable of router and modem, wait for couple of minutes and power up the modem first once modem is rebooted power up the router, check internet works or not, if still doesn't work let me know which internet service are you using also tell me version no of WRT54G router so that i can tell you step by step configuration of router...

  • Can someone tell me what's wrong with this method

    public boolean drop(int col, int piece) {
              if (isLegalMove(col)) {
                   for (int r = 0; r < getNumRows(); r++) {
                        if (mySpaces[r][col] == EMPTY) {
                             mySpaces[r][col] = piece;
                             return true;
              } else
                   return false;
         }it always asks that I need to return something, what should I do??

    public boolean drop(int col, int piece) {
        if (isLegalMove(col)) {
            for (int r = 0; r < getNumRows(); r++) {
              if (mySpaces[r][col] == EMPTY) {
                mySpaces[r][col] = piece;
                return true;
        } //else <--- remove the else
        return false;
    }

  • Can someone tell me what's wrong with this code....

    I apologize in advance for anyone who isn't a Steelers fan...
    import java.awt.*;
    import javax.swing.*;
    public class myJPanel extends JPanel
         public myJPanel()
              setBackground(Color.white);
         JLabel label1 = new JLabel();
         label1.setText("Ben Roethlisberger #7 Age 23");
         add(label1);
         JButton jb1;
         ImageIcon imageBen = new ImageIcon("Ben.JPG");
         jb1 = new JButton(imageBen);
         add(jb1);
         JLabel label3 = new JLabel();
         label3.setText(whatIsUp());
         add(label3);
         for(i=0;i<20;i++)
         String whatIsUp()
              int n = 0;
              double nn = 0;
              String b = "......";
              nn = (Math.random() * 6);
              n = (int)nn;
              if (n == 0)
                   b = "Ben Roethlisberger throws a touchdown pass to Hines Ward.";
                   JButton jb2;
              ImageIcon imageHines = new ImageIcon("Hines.jpg");
              jb2 = new JButton(imageHines);
              add(jb2);
              if (n == 1) b = "Ben Roethlisberger throws a touchdown pass to Antwaan Randle El.";
              if (n == 2) b = "Ben Roethlisberger throws a touchdown pass to Heath Miller.";
              if (n == 3) b = "Ben Roethlisberger throws a touchdown pass to Cedrick Wilson.";
              if (n == 4) b = "Ben Roethlisberger throws a touchdown pass to Jerame Tuman.";
              if (n == 5) b = "Ben Roethlisberger hands off to Jerome Bettis for a touchdown.";
              return b;
    Everything is ok if i take the for loop out, but for some reason everything just gets screwed up if I have that for loop in there. And these are the error messages I'm getting.
    'illegal start of type (line 21)' and '<identifier> expected (line 48)'
    Thanks in advance for your help...

    Hey I'm sorry but this is only my second week doing
    Java. Do you think you could explain that more or
    give me an example??
    Bad Version (like yours but simplified)
    public class Sample{
      public static void main(String args[]){
        for(int i=0;i<20;i++){
          String whatIsUp(){
             return "Doc";
          System.out.println(?);// I am not even sure how to write this voodoo part
    }Good Version
    public class Sample{
      public static void main(String args[]){
        for(int i=0;i<20;i++){
          String aString = whatIsUp();
          System.out.println(aString);
      String whatIsUp(){
        return "Doc";
    }

  • Can someone tell me what's wrong with my threading code

    I got some code from a Java book on how to create a simple threading application. This is the exact code from the book but for some reason it gives me an error that non-static variables can not be referenced from static content. How can I reword this to work?
    <CODE>
    package multithread;
    import java.io.*;
    import java.util.*;
    public class MultiThread {
    class CountDownEven extends Thread {
    public void run() {
    for (int i = 6; i > 0; i -= 2) {
    System.out.println(this.getName() + " Count" + i);
    Thread.yield();
    class CountDownOdd extends Thread {
    public void run() {
    for (int i = 5; i > 0; i -= 2) {
    Thread.yield();
    public static void main(String[] args) {
    try {
    CountDownEven count1 = new CountDownEven();
    CountDownOdd count2 = new CountDownOdd();
    count1.start();
    count2.start();
    catch (Exception e)
    </CODE>

    One possible solution:public static void main(String[] args) {
         try {
              MultiThread m = new MultiThread();
              CountDownEven count1 = m.new CountDownEven();
              CountDownOdd count2 = m.new CountDownOdd();
              count1.start();
              count2.start();
         } catch (Exception e) {
    }

  • Could you tell me what is wrong with this code?

    import java.io.*;
    import java.lang.String;
    import java.util.*;
    import java.util.Properties;
    import java.io.InputStream;
    public class EStoreClient2 {
    private void insertTable (Vector value) {
         insertStmnt.setString(1, (String)value.get(0)
    public void static main (String args[]) {
         Vector argument = new Vector();
         if (args.length > 0) {
              for (int i=1; i < args.length; i++) {
                   argument.add(args);
                   System.out.println("<argument[]> = " + args[i]);
              EStoreClient2 estore = new EStoreClient2();
              if (args[0].equalsIgnoreCase("-insertitem"))
              estore.insertTable(argument);
    but it gives me
    EStoreClient2.java:18: Method get(int) not found in class
    java.util.Vector.
    insertStmnt.setString(1, (String)value.get(0));

    EStoreClient2.java:18: Method get(int) not found in
    class
    java.util.Vector.
    insertStmnt.setString(1,
    nsertStmnt.setString(1, (String)value.get(0));The method get(int) was introduced into the Vector class starting at JDK1.2. You must be using an earlier version of the JDK.

  • My macbook pro is running slow and I did the etrecheck for it could someone tell me what to do next ?

    My macbook pro is running slow and I did the etrecheck for it could someone tell me what to do next ?

    EtreCheck version: 2.1.8 (121)
    Report generated April 6, 2015 at 13:30:31 GMT+3
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Click the [Adware! - Remove] links for help removing adware.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Mid 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro9,1
        1 2.3 GHz Intel Core i7 CPU: 4-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 510
    Video Information: ℹ️
        Intel HD Graphics 4000
        NVIDIA GeForce GT 650M - VRAM: 512 MB
            Color LCD 1440 x 900
    System Software: ℹ️
        OS X 10.9.5 (13F1066) - Time since boot: 0:59:44
    Disk Information: ℹ️
        TOSHIBA MK5065GSXF disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (410.99 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-ST DVDRW  GS31N 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Adware: ℹ️
        Downlite [Adware! - Remove]
    Kernel Extensions: ℹ️
            /Library/Application Support/VirtualBox
        [loaded]    org.virtualbox.kext.VBoxDrv (4.3.20) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxNetAdp (4.3.20) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxNetFlt (4.3.20) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxUSB (4.3.20) [Click for support]
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.6.2 - SDK 10.6) [Click for support]
            /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
        [not loaded]    com.roxio.TDIXController (2.0) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [failed]    com.extensis.FMCore.plist [Click for support] [Click for details]
        [running]    com.f31898d9029420d2.agent.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_desktop.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [not loaded]    com.f31898d9029420d2.daemon.plist [Click for support]
        [running]    com.f31898d9029420d2.helper.plist [Click for support]
        [running]    com.mackeeper.MacKeeper.plugin.AntiTheft.daemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.quark.quarkupdate.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
        [not loaded]    org.virtualbox.startup.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.bittorrent.uTorrent.plist [Click for support]
        [failed]    com.jdibackup.JustCloud.autostart.plist [Click for support] [Click for details]
        [failed]    com.jdibackup.JustCloud.notify.plist [Click for support] [Click for details]
        [running]    com.mackeeper.MacKeeper.Helper.plist [Click for support]
        [not loaded]    org.virtualbox.vboxwebsrv.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
    Internet Plug-ins: ℹ️
        AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        Default Browser: Version: 537 - SDK 10.9
        AdobePDFViewerNPAPI: Version: 11.0.0 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    User internet Plug-ins: ℹ️
        RealPlayer Plugin: Version: Unknown [Click for support]
    Safari Extensions: ℹ️
        AdBlock
        Adblock Plus
        MacVeXe
        macfest
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Quark Update Preferences  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
            10%    WindowServer
             4%    mds_stores
             4%    Safari
             4%    mds
             1%    SystemUIServer
    Top Processes by Memory: ℹ️
        481 MB    Safari
        271 MB    MacKeeper Helper
        163 MB    Finder
        105 MB    mds_stores
        105 MB    com.apple.WebKit.WebContent
    Virtual Memory Information: ℹ️
        91 MB    Free RAM
        1.77 GB    Active RAM
        1.61 GB    Inactive RAM
        700 MB    Wired RAM
        861 MB    Page-ins
        3 MB    Page-outs
    Diagnostics Information: ℹ️
        Apr 6, 2015, 01:27:03 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_20 15-04-06-132703_[redacted].crash
        Apr 6, 2015, 12:28:23 PM    Self test - passed
        Apr 6, 2015, 01:27:16 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Plugin.64_201 5-04-06-132716_[redacted].crash
        Apr 4, 2015, 12:46:41 PM    /Library/Logs/DiagnosticReports/JustCloud_2015-04-04-124641_[redacted].hang

  • My iPhone 4S won't turn on it's been off for two days now. I tried charging it but it makes a noise every 8 seconds,holding the buttons down and also plugging it to a computer. I need help on what to do or if anybody can tell me what's wrong with my phone

    My iPhone 4S won't turn on it's been off for two days now. I tried charging it but it makes a noise every 8 seconds,holding the buttons down and also plugging it to a computer. I need help on what to do or if anybody can tell me what's wrong with my phone

    Yes ive tried a different charger and it also nothing shows when i plug it in just makes a noise

  • HT201401 my iphone screen has got line please tell me what's wrong with my phone

    i have bought recently iphone 5s from apple store but now my iphone screen has got line please tell me what's wrong with my phone

    It is not working cprrectly.
    Take it back.

  • Hello I'm on a Mac I did an update of my system and dreamweaver does not want to open I Error 150: 30 thank you for contacting support could someone tell me what to do

    hello
    I'm on a Mac I did an update of my system and dreamweaver does not want to open I
    Error 150: 30
    thank you for contacting support
    could someone tell me what to do

    What is the complete error message?
    If this is a licensing issue, try this:
    http://www.adobe.com/support/contact/licensing.html

  • I have i pad 2 ios 4.3.1 i want to update it to 4.3.3 but i get error msg 3194 can you tell me what's wrong with apple some people talking about apple don't veryfiy 4.3.3 anymore thanks alot

    i have i pad 2 ios 4.3.1 i want to update it to 4.3.3 but i get error msg 3194 can you tell me what's wrong with apple some people talking about apple don't veryfiy 4.3.3 anymore thanks alot

    4.3.5 is the current version, so that is the version that iTunes will download, not 4.3.3
    In terms of error 3194, have you got the latest version of iTunes on your computer ? - http://support.apple.com/kb/TS3694#error3194

  • HT4623 hi i have an iphone 4s and has not been a year yet no water damage but there is a white cloudy screen around the edges and will start going crazy with different colors and all someone please gel what is wrong with it?

    hi
    i have an iphone 4s and has not been a year yet no water damage but there is a white cloudy screen around the edges and will start going crazy with different colors and all someone please gel what is wrong with it?

    I switched the usb port and did the whole recovery holding of the buttons ect... And it worked, the computer detected the phone and i was able to click restore. However, the computer says preparing iphone for restore and it is still doing the restarting thing where the apple fades away and then comes back like it is restarting. If i can somehow get past this i will be able to go back to factory settings and resolve my problem, but this is where i am stuck.

  • Can someone please tell me what's wrong with the Inside of my iPad Charger? *Picture Included

    It won't charge my iPad. So I wanted to take a good look inside and see what's wrong with it. But I don't know anything about these wires. Here's the Pic of it.
    http://oi39.tinypic.com/2ed5yl2.jpg
    http://oi42.tinypic.com/5btptt.jpg
    http://oi39.tinypic.com/ih8rq1.jpg
    PLEASE HELP. It would be a Big Help

    That's unfortunate, because it would appear that the cable is pretty much toast. If it wasn't before, it pretty much is now that you've cracked it open.
    Either borrow one, or bite the bullet and buy one locally. You're not getting anywhere with that one.

  • Apple wants to charge for a repair but won't tell me what's wrong with my iPad

    So my iPad mini is 1 year and 5 days old, and it suddenly won't power on.  Nothing, even with a different charger and cable.  The Apple website said to send in for battery/power issues, so I filled in the form and gave them my credit card for a little over $100.00 and sent it to them via UPS.  That was 2 days ago, now I get an email saying they need to charge me $225.95+tax and I have 48 hours to either pay it or have them send the unit back.  Nothing on their repair status tells me what is wrong and why the sudden increase in price for an iPad mini repair.  I can call or chat online for another $19.00, but that seems like hiway robbery to me.  I mean, I already paid you $100+, can't you even tell me what you found that needs another $225?!?!?  On the repair status, there is an area called views of your product with a broken image file, so I can't even see what they are referring to.
    If I way the $19, will they even be able to tell me anything, or will they just read what I can see on the webpage?  I'm starting to think it will be cheaper to just buy another iPad mini at this rate.
    Has anyone any advice ?

    Well, I called Apple and talked to them last night.  They were surprisingly very friendly.  They emailed me a picture of the iPad with what they were concerned about.  Now there is a dent in a corner, that I know wasn't there before.  I take create care of the iPad and use a full bumper case.  I explained to the repair tech that this dent is new and was not there when I took the iPad in for UPS.  Actually, when I took the iPad to UPS, I had the unit in the original box (I'm OCD that way).  The guy at UPS told me to take the iPad out of the box and then he weighed the iPad, some bubble wrap and an empty box.  He then said it was good to go and I walked away with the original packaging.  I honestly suspect the damage happened at UPS.  Plus a small dent in a corner shouldn't affect battery, right?  Anyway, after talking with a few people at repair, they noticed that their records show the iPad being 1 day out of AppleCare. 
    The last guy was going to just charge me for the battery replacement, which I am good with.  But, guess what, Apple can't partial charge, it's either all or nothing.  So, after about an hour of being on the phone, they will repair or replace the iPad at no charge to me (just this once, only). 
    I have to admit, that calling and talking with these guys was very helpful.  Everyone was friendly and cheering.  Plus I wasn't calling India (no offence to India).  I am definitely going to continue purchasing Apple products if this how their support works.  If only Cisco could learn to work that way...

Maybe you are looking for