Dont understand what is wrong in code

Task of my code that movieclip added on stage, change its size - height when change size of browsers(player) window thus height movieclip = height rowsers(player) window.
That is my code:
package
import flash.display.*;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
public class ZhMenu extends Sprite
public var menubg:MovieClip;
public function ZhMenu()
var menubg:  = new menuGrad();
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
stage.addEventListener(Event.RESIZE, onResize);
this.addChild (menubg);
menubg.x=0;
menubg.width = 150;
menubg.height = stage.stageHeight;
public function onResize (event:Event):void
var sh:Number = stage.stageHeight;
menubg.x=0;
menubg.width=150;
menubg.height=sh;
In the issue MovieClip menubg added on stage but when i change size of window i get error:
TypeError: Error #1009: It is not possible to cause property or a method referring to object "null".
at ZhMenu/onResize()
And menubg dont change its size of course.
I dont understand what is wrong.
Plize help me if u know Action Script 3.0 better.

Because you do not have an instance of the object... open a new fla and try these lines...
// this will fail
var menubg:MovieClip;
menubg.x = 0;
// this will not fail
var menubg2:MovieClip = new MovieClip();
menubg2.x = 0;

Similar Messages

  • Errors dont know what is wrong!

    Errors dont know what is wrong!
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.awt.event.MouseListener;
    import java.awt.event.*;
    public class SquareShape extends Piece
    {private Rectangle2D.Double _square1, _square2, _square3, _square4;
    private int xLoc=80, yLoc=0, size=19, space=1;
    private smallPiece [][] rectangle;
    public SquareShape(smallPiece[][] rect)
    {super(Color.red);
    _square1 = new Rectangle2D.Double(xLoc,yLoc,size,size);
    _square2 = new Rectangle2D.Double(xLoc,yLoc+size+space,size,size);
    _square3 = new Rectangle2D.Double(xLoc+size+space,yLoc,size,size);
    _square4 = new Rectangle2D.Double(xLoc+size+space,yLoc+size+space,size,size);
    rectangle= rect;}
    public void setXLocation(int x)
    {_square1.setFrame(xLoc+x,yLoc,size,size);
    _square2.setFrame(xLoc+x,yLoc+size+space,size,size);
    _square3.setFrame(xLoc+size+space+x,yLoc,size,size);
    _square4.setFrame(xLoc+size+space+x,yLoc+size+space,size,size);
    xLoc=xLoc+x;}
    public void setYLocation(int y)
    {_square1.setFrame(xLoc,yLoc+y,size,size);
    _square2.setFrame(xLoc,yLoc+size+space+y,size,size);
    _square3.setFrame(xLoc+size+space,yLoc+y,size,size);
    _square4.setFrame(xLoc+size+space,yLoc+size+space+y,size,size);
    yLoc=yLoc+y;}
    public boolean moveOneStep()
    {if(_square2.getY()+size>=440||_square4.getY()>=440)
    return false;
    else
    if(rectangle[21-((int)(_square2.getY()+1))/20][9-((int)(_square2.getX()+1))/20]!=null || rectangle[21-((int)(_square4.getY()+1))/20][9-((int)(_square4.getX()+1))/20]!=null)
    {return false;}
    else
    {setYLocation(20);
    return true;}}
    public int[][] getLocs()
    {int[][] locs= new int[4][2];
    locs[0][0]= ((int)(_square1.getY()+1))/20;
    locs[0][1]= ((int)(_square1.getX()+1))/20;
    locs[1][0]= ((int)(_square2.getY()+1))/20;
    locs[1][1]= ((int)(_square2.getX()+1))/20;
    locs[2][0]= ((int)(_square3.getY()+1))/20;
    locs[2][1]= ((int)(_square3.getX()+1))/20;
    locs[3][0]= ((int)(_square4.getY()+1))/20;
    locs[3][1]= ((int)(_square4.getX()+1))/20;
    System.out.println(locs[0][0]+" "+locs[0][1]+" "+locs[1][0]+" "+locs[1][1]+" "+locs[2][0]+" "+locs[2][1]+ " "+locs[3][0]+" "+locs[3][1]);
    return locs;}
    public boolean contains(int x, int y)
    {if(_square3.contains(x,y)||_square4.contains(x,y))
    return true;
    else
    return false;}
    public void fill(Graphics2D g2)
    super.fill(g2);
    g2.fill(_square1);
    g2.fill(_square2);
    g2.fill(_square3);
    g2.fill(_square4);}
    import java.awt.geom.*;
    import java.awt.*;
    import javax.swing.JPanel;
    import javax.swing.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import java.awt.event.*;
    public class TetrisPanel extends JPanel
    {private Factory _pieceFact;
    private Piece currentPiece;
    private Timer _timer;
    private int Interval =500;
    private smallPiece [][] locationArray;
    public TetrisPanel()
    {setBackground(Color.white);
    locationArray = new smallPiece[22][10];
    _pieceFact = new Factory(locationArray);
    currentPiece = _pieceFact.newPiece();
    _timer = new Timer(Interval, new TimerListener());
    _timer.start();
    public void paintComponent(Graphics g)
    {super.paintComponent(g);
    Graphics2D g2 = (Graphics2D)g;
    currentPiece.fill(g2);
    for(int row =0; row<22; row++)
    for(int col =0; col<10; col++)
    if(locationArray[row][col]!=null)
    {locationArray[row][col].fill(g2);}}
    public void createPiece()
    {currentPiece =_pieceFact.newPiece();
    repaint();}
    public class TimerListener implements ActionListener{
    public void actionPerformed(ActionEvent e)
    if(currentPiece.moveOneStep()==true)
    {repaint();
    currentPiece.getLocs();}
    else
    {int[][]ar = currentPiece.getLocs();
    for(int rows=0; rows<ar.length; rows++)
    {locationArray[22-ar[rows][0]][10-ar[rows][1]] = new smallPiece(ar[rows][1]*20,ar[rows][0]*20, currentPiece.getColor());}
    createPiece();
    repaint();}
    }the error
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 22
         at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:51)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 22
         at SquareShape.moveOneStep(SquareShape.java:38)
         at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:45)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    Errors dont know what is wrong!You read the stack trace from the top down, looking out for the first line that refers to your code.
    java.lang.ArrayIndexOutOfBoundsException: 22This means that you are using something as an array index (some variable, perhaps) and it has a value of 22, but the array itself is not that big.
    at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:51This tells you exactly where the bad array access is taking place. Only you know which line 51 is - and it's good form to tell the rest of us when you post - but, at a wild guess, I'd say it was that line within the for loop that assigns new values to the locationArray.
    Use System.out.println() to check the values of the variables (or expressions) you use to access the array. Also check the length of the various arrays involved.
    (If I were you, I'd consider using a bit more indentation in your code. Especially where constructs are nested.)

  • I am trying to download a plug in called adobe flash player 10.1.102 and error shows up that says instalation encountered errors sign in under administraive privileges and try again and i dont understand what that is or what to do. help please!

    im tryin to down load this plugin like it keeps suggesting because none of the video clips or games of any sort is showing and it wont download. it keeps saying theres an error and i need to sign in under administrative privileges but it doesnt give me that option. i dont understand what to do> help please!!!

    Follow the instructions below. Note the part about "Windows 7 and Vista".
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "Download..." page below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*Download and information: http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    <br />
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post.
    *Adobe Shockwave for Director Netscape plug-in, version 11.0
    *Adobe PDF Plug-In For Firefox and Netscape
    **New Adobe Reader X (version 10) with Protected Mode just released 2010-11-19
    **See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.

  • HT204406 itunes crashes my computer (windows 7) while trying to upload my music. Its happened multiple times now and I have no songs which are more than 200 mb. Dont understand what is breaking it

    My itunes keeps crashing while trying to upload music ti icloud using match. I have checked my collection and there are no songs more than 200 mb. The problem is getting so bad that now my OS (windows 7) is crashing. Dont understand what is breaking itunes....

    My itunes keeps crashing while trying to upload music ti icloud using match. I have checked my collection and there are no songs more than 200 mb. The problem is getting so bad that now my OS (windows 7) is crashing. Dont understand what is breaking itunes....

  • My ipad automatically jumps from one app to other. it automatically types things randomly. i dont know what it wrong. Have shown it in a service center. they have done factory reset but problem still persist.

    my ipad automatically jumps from one app to other. it automatically types things randomly. i dont know what it wrong. Have shown it in a service center. they have done factory reset but problem still persist.

    Likley a defective touchscreen.

  • Because I want to check my location after they said Actions will take effect when this iphone connects to the internet I dont understand what happen

    because I want to check my location after they said Actions will take effect when this iphone connects to the internet I dont understand what happen

    One post is enough, no need to create 3 threads on the same subject.

  • I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition and the DiskU

    I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition and the DiskUtility. The Apple Logo and the Progress Indicator will continue to spin and I have literally no idea what to do. i am in desperate need of help. help me pls

    Turn it off.
    Start it up again and (at the sound of the chime) press and hold the command and the R keys, hold them down until Recovery loads. When it does you will select Disk Utility and you should be on the First Aid tab when it opens, if you are not please select it. Then select the partition (in the side bar, 2nd entry on the list, see picture).
    Yours is probably called Macintosh HD.
    Once you have selected it go to the lower righthand corner of the First Aid dialog and press Repair Disk.
    This will take 10 minutes approximately. Post back when it is finished and tell me what it says.

  • I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition

    I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition and the DiskUtility. The Apple Logo and the Progress Indicator will continue to spin and I have literally no idea what to do. i am in desperate need of help. help me pls

    Reboot hold the command R for recovery.

  • Dont understand what i should put down for host name for creating an email account?

    Dont understand incoming and outcoming server. dont know what to put for host name.
    can someone help?

    Do you have your email account set up on your computer e.g. on Outlook on a PC or Mail on a Mac ? If you have then you should be able to sync the settings from that to your iPad via the Info tab when connected to your computer's iTunes. Or you could just look at the settings for the account on your computer's email program and copy them over to the iPad manually.
    The incoming and outgoing server names are the servers that your email provider uses for your account to recieve (incoming) and send (outgoing) emails. A lot of accounts should be covered by the options that are listed on the 'Add Account' screen - for my Yahoo based accounts I just chose Yahoo! and the settings were set for me. If you have an account that isn't covered by those types then you could try logging into your account via a browser and see if they have any help for what settings you need to use. Different account providers have different settings, so if your can't find anything on your provider's site if you say on here who your provider is there might be somebody else here who has the same provider and can tell you what settings to use.

  • HT1926 downloading jackson 5 cd 3 days ago and its still running , dont understand what to do

    downloading jackson 5 cd 3 days ago and its still running, dont understand how to fix it

    Ok, I will remove every USB device I have. (or mix it up)
    1 UPS
    1 ReadyBoost
    1 mouse
    1 keyboard
    To test if each beep is caused by USB.
    I should have expected something like this as the beeping started after upgrading bios to 1.4.
    Is there any ETA on a 1.5?
    And anyone know a way to see the POST_LED in windows?
    Also ive read some of http://www.xtremesystems.org/forums/showthread.php?t=221303 but after 20 pages i gotten a bit dizzy.

  • TS1440 Clicking sounds. No entry on start up. Slow. Error code 36. Finally question mark folder. I don't understand what's wrong with the thing I barely use it. Can you help?

    Iv been having multiple issues with my mac. This comes as a surprise as I rarely use it.
    Symptoms-
    Clicking noises
    Slow
    Unresponsive
    (Error code 36)
    Question mark folder
    I used single user mode to try and repair the disk through utilities but the option wasn't available. I then verified the disk and it came up with few error messages
    -invalid leaf record count
    -invalid directory item
    -found corrupt and needs to be repaired
    Unfortunately I don't have an instillation disk, I didn't get one when I bought the computer. I don't know what else to do.

    If the Mac is running v10.7 Lion or v10.8 Mountain Lion ..
    Startup your Mac while holding down the Command + R keys so you can access the built in utilities in OS X Recovery
    From there you can repair the startup disk.

  • I have been shut down from my previous email address as I left my company's email system, I am now on gmail and have changed my Apple Id and password successfully unfortunately I dont understand what I need to do to change my ICloud, IFace etc...ID?

    I have bene shut down from my previous Apple email ID as i left my company email' server. I have move to gmail and have successfully reset my Apple ID accordingly. My iCloud, IFace etc...unfortunately pop up with the previous email address and I dont remember the password, so I cant get in and change it to gmail! Anyone out there knows what to do, i would be very grateful, thanks. M

    First thing to try is just to sign out on all your devices. If you can do that you can just sign in with the new ID. However if you've set up 'Find My iPhone' you won't be able to.
    In that event go to http://iforgot.apple.com and sign in with your iCloud login. A new password will be sent to your associated email address. If this doesn't work you will have to contact Support. Go to https://getsupport.apple.com . Click' See all products and services', then 'More Products and Services, then 'Apple ID', then 'Other Apple ID Topics' then 'Lost or forgotten Apple ID password'. If you have any problems with that try this form: https://www.apple.com/emea/support/itunes/contact.html

  • I do not understand what is wrong with this function

    the error says that I need a ; in fromt of the public void action performed
    because it is an illegal start of an expression, but it is clearly not an expression.
       class EnterSerial implements FocusListener, ActionListener
              public void focusGained(FocusEvent fe)
                    { System.out.println("Focus gained");
              public void focusLost(FocusEvent fe)
                    { System.out.println("Focus Lost");
              public void actionPerformed(ActionEvent e)
                    {  public void actionPerformed(ActionEvent e)
                           SerialRead s;
                           String serialString;
                           int newline1,newline2;
                           String line1,line2,line3,linetmp;
                           String spindle,torque1,torque2,torque3,angle1,angle2,angle3;
                           serial_no=serial_text.getText();
                           s=new SerialRead();
                           s.findPort();
                           waitForSerial=true;
                           s.openConnection();
                           blank_l1.setText("Waiting for data from Pass #1");
                           while(waitForSerial)
                           blank_l1.setText("Data Received.  Please verify data!");
                           s.closeConnection();
                           serialString=serialBuffer.toString();
                              System.out.println(serialString);
                              System.out.println(":" + serialBuffer.toString() + ":");
                           line1=serialString.substring(0,(serialString.indexOf("ZZZ")));
    System.out.println("here???");     
                           linetmp=serialString.substring((serialString.indexOf("ZZZ") + 3));
    System.out.println("linetmped");
                           line2=linetmp.substring(0,(linetmp.indexOf("ZZZ")));
                           line3=linetmp.substring(linetmp.indexOf("ZZZ") + 3);
    System.out.println("afterlines");
                              torque1=line1.substring(32,37);
                           torque2=line2.substring(32,37);
                           torque3=line3.substring(32,37);
                              angle1=line1.substring(40,45);
                           angle2=line2.substring(40,45);
                           angle3=line3.substring(40,45);
                           torque1=line1.substring(1,6);
                           torque2=line2.substring(1,6);
                           torque3=line3.substring(1,6);
                           angle1=line1.substring(9,14);
                           angle2=line2.substring(9,14);
                           angle3=line3.substring(9,14);
                              int tval1 = Integer.parseInt(torque1);
                              int tval2 = Integer.parseInt(torque2);
                              int tval3 = Integer.parseInt(torque3);
                              int aval1 = Integer.parseInt(angle1);
                              int aval2 = Integer.parseInt(angle2);
                              int aval3 = Integer.parseInt(angle3);
                            serialBuffer.delete(0,((int) serialBuffer.length()));
    // beginning of button color changing if statements
                   outputs[0].setText(torque1);
                       if ((tval1 <= 45.00) || (tval1 >= 200.00))
                           { accept_1.setBackground(Color.red);
                             reject_1.setBackground(Color.green);
                           else
                               { accept_1.setBackground(Color.green);
                   outputs[1].setText(angle1);
    System.out.println("Set output 1");
                       if ((aval1 <= 170.00) || (aval1 >= 270.00))
                           { accept_1.setBackground(Color.red);
                             reject_1.setBackground(Color.green);
                          else
                               { accept_1.setBackground(Color.green);
                   outputs[2].setText(torque2);
                       if ((tval2 <= 45.00) || (tval2 >= 200.00))
                         { accept_1.setBackground(Color.red);
                           reject_1.setBackground(Color.green);
                         else
                             { reject_1.setBackground(Color.green);
                   outputs[3].setText(angle2);
                        if ((aval2 <= 170.00) || (aval2 >= 270.00))
                         { accept_1.setBackground(Color.red);
                           reject_1.setBackground(Color.green);
                          else
                               { accept_1.setBackground(Color.green);
                   outputs[4].setText(torque3);
                      if ((tval3 <= 45.00) || (tval3 >= 200.00))
                        { accept_1.setBackground(Color.red);
                         else
                             { reject_1.setBackground(Color.green);
                   outputs[5].setText(angle3);
                       if ((aval3 <= 170.00) || (aval3 >= 270.00))
                         { accept_1.setBackground(Color.red);
                           reject_1.setBackground(Color.green);
                          else
                               { accept_1.setBackground(Color.green);
                   accept_1.addActionListener(a1);
                   reject_1.addActionListener(r1);
    }

    hi
    what u have written is
    public void actionPerformed(ActionEvent e)
    {  public void actionPerformed(ActionEvent e)
    it is impossible that method contains a method inside it
    so u r doing a fundamental mistake
    and what do u want by ,making 2 actionPerformed
    I couldnt understand the logic
    Anyway Its not possible
    Bye

  • I just installed photoshop but I dont know what is wrong it keep shutdown itself.

    dunno whats wrong. keep shutdown itself.

    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • HT1490 i dont understand what apple is saying!

    Plug in the power adapter and fully charge your PowerBook's battery until the light ring or LED on the power adapter plug changes to green and the onscreen meter in the menu bar indicates that the battery is fully charged.
    Allow the battery to rest in the fully charged state for at least two hours. You may use your computer during this time as long as the adapter is plugged in.
    Disconnect the power adapter while the computer still on and start running the computer off battery power. You may use your computer during this time. When your battery gets low, the low battery warning dialog appears on the screen.
    QUESTION!
    i dont really get no. 2.
    So, we allow the battery to rest in full state for at least two hours and we may use the computer during that time? Are we suppose to use it while it is resting or leave it to rest?
    and does it mean that, once it has been fully charged, with the adapter still plugged in, we can use it as long as we want ?

    tmxuan wrote:
    so , what is the right way of maintaining a battery? i should let it run dead right? what is the right time for me to plug my charger in? once it hits 10 percent?
    No NEVER let it run down to Zero. That is very bad for the battery. Other then that use it as you like.

Maybe you are looking for

  • Hp x360 won't start

    Computer will not power on, nothing occurs at all minus blue led next to charger plug. No fans, no blinking, unresponsive after 30 second hold down as well.

  • Extended Classic - Purchase Order Number Ranges

    We are using Extended Classic EBP. When a PO is created in SRM the PO replicated into R/3 does not have the same number. The backend PO document type is ECPO. We have assigned an internal and external number range to this document type. When an SRM P

  • Version mgmnt for RFQ and PO

    Dear gurus, pls explain about version management for RFQ and PO pls explain in detail

  • Approval-request for "following other users"

    Hi, I would like to implement SP2013 for a more community-like platform. Users that collaborate within this platform do not want other people to follow them unless they have "approved" their following-request. Is it possible to hook into the process

  • Data element on structure for interface

    Hi all, I'm working on the development of one interface from a non-sap system to SAP where on a first step SAP will capture a flat file into one structure "ZZZ" but I'm doubting about how to create this structure. At first I was thinking on identifyi