Scroll bar on this site awkward to use with mouse or pen pad?

I am quite used to using a Wacom pen to drag the blue bubble on most mac windows to scroll down to the part of the page I want to be on.
WHy has this site reverted to what I see as a DOS SHELL scroll bar - which causes the pages to flip around up and down.
Along with the layout for extra wide screens - this is a major pain in the neck.
Was hoping the latest update would at least fix the scrolling,

Following the instructions in Eric's link (or my explanation) and those instructions are by Apple, take a screenshot. It will be shown on your desktop. Sign in here, start a reply, and hit the little camera icon in the toolbar of the reply window. You'll get this:
Next, click on browse. In the next window, choose (highlight) the screenshot you just saved and click on Open. After that (back in the original window), click on Insert Image. The image will be pasted here in your reply window.

Similar Messages

  • Scroll bars for this code...

    Hai All,
    Here is the problem i am placing .. when ever there are no.of records to display i want to put the scroll bars to view.... and i am adding my code ... can any one please give me the solution how to add vertical scroll bar to this code....
    import java.util.*;
    import java.awt.*;
    import java.sql.*;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import java.lang.ArithmeticException;
    import java.sql.DriverManager;
    import java.sql.Connection;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import java.sql.CallableStatement;
    import java.sql.SQLException;
    import java.awt.BorderLayout;
    import java.awt.event.AdjustmentEvent;
    import java.awt.event.AdjustmentListener;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollBar;
    public class MyExample extends Frame {
    Thread t;
    Frame f ;
    Label bat_result,proc_reply,tot_records,tot_aft_records,dtrs_label,vrs_label1,vrs_label2,vrs_label3,or,dateformat,fileno,fname,fdcode,fdob,fappdate;
    Button b1,dialup,b2,report,b5,vrs,dtrs,dtrs_search,vrs_search;
    ActionListener a;
    TextField value,value1,vrs_fileno,vrs_fdate,vrs_tdate,dtrs_date,fileno_result,fdcode_result,fname_result,fdob_result,fappdate_result;
    Image image,icon;
    Toolkit tool;
    JProgressBar progress;
    JButton button;
    JLabel label1;
    JPanel topPanel;
    Random random;
    MediaTracker mTracker,mTracker1;
    public MyExample()
    setLayout(null);
    setSize(900,600);
         setResizable(true);
         setBackground(new Color(223,224,194));
         setTitle("Menu Window!");
         icon = Toolkit.getDefaultToolkit().getImage("");
         setIconImage(icon);
    setVisible(true);
         tool = Toolkit.getDefaultToolkit();
    image = tool.getImage("");
    mTracker = new MediaTracker(this);
    mTracker.addImage(image,0);
         setSize(900,600);
         a = new MyActionListener();
         add(b1 = new Button(""));
         b1.setBounds(40,180,120,20);
    b1.setBackground(new Color(12632551));
    b1.setActionCommand("");
    b1.addActionListener(a);
    b1.setVisible(true);
         add(dialup = new Button(""));
         dialup.setBounds(40,230,120,20);
    dialup.setBackground(new Color(12632551));
    dialup.setActionCommand("");
    dialup.addActionListener(a);
    dialup.setVisible(true);
         add(b2 = new Button(""));
         b2.setBounds(40,280,120,20);
    b2.setBackground(new Color(12632551));
    b2.setActionCommand("");
    b2.addActionListener(a);
    b2.setVisible(true);
         add(report = new Button(""));
         report.setBounds(40,330,120,20);
    report.setBackground(new Color(12632551));
    report.setActionCommand("");
    report.addActionListener(a);
    report.setVisible(true);
    add(vrs = new Button(" "));
         vrs.setBounds(50,370,120,20);
    vrs.setBackground(new Color(12632551));
    vrs.setActionCommand("");
    vrs.addActionListener(a);
    vrs.setVisible(false);
    add(dtrs = new Button(" "));
         dtrs.setBounds(50,410,120,20);
    dtrs.setBackground(new Color(12632551));
    dtrs.setActionCommand("");
    dtrs.addActionListener(a);
    dtrs.setVisible(false);
    add(dtrs_label = new Label(" "));
    dtrs_label.setBounds(340, 180, 80, 20);
    dtrs_label.setVisible(false);
         add(vrs_label1 = new Label(" "));
    vrs_label1.setBounds(330, 180, 80, 20);
    vrs_label1.setVisible(false);
    add(vrs_label2 = new Label(" "));
    vrs_label2.setBounds(330, 230, 80, 20);
    vrs_label2.setVisible(false);
    add(vrs_label3 = new Label(" "));
    vrs_label3.setBounds(580, 230, 60, 20);
    vrs_label3.setVisible(false);
    add(dateformat = new Label(""));
    dateformat.setBounds(520,180, 80, 20);
    dateformat.setVisible(false);
    add(vrs_search = new Button(""));
         vrs_search.setBounds(250,180,120,20);
    vrs_search.setBackground(new Color(12632551));
    vrs_search.setActionCommand("");
    vrs_search.addActionListener(a);
    vrs_search.setVisible(false);
    add(dtrs_search = new Button(""));
         dtrs_search.setBounds(600,180,120,20);
    dtrs_search.setBackground(new Color(12632551));
    dtrs_search.setActionCommand("");
    dtrs_search.addActionListener(a);
    dtrs_search.setVisible(false);
    add(or = new Label(""));
    or.setBounds(500, 270, 80, 20);
    or.setVisible(false);
         add(b5 = new Button(""));
         b5.setBounds(40,380,120,20);
    b5.setBackground(new Color(12632551));
    b5.setActionCommand("");
    b5.addActionListener(a);
    b5.setVisible(true);
         add(proc_reply=new Label(" "));
         proc_reply.setBounds(350,300,150,20);
    proc_reply.setVisible(false);
    add(tot_records=new Label(" "));
         tot_records.setBounds(350,270,150,20);
    tot_records.setVisible(false);
    add(tot_aft_records=new Label(" "));
    tot_aft_records.setBounds(350,330,180,20);
    tot_aft_records.setVisible(false);
    show();
         addWindowListener(new WindowAdapter()
         public void windowClosing(WindowEvent w)
              System.exit(0);
    public void paint(Graphics g){
    g.drawImage(image,0,0,null);
    class MyActionListener implements ActionListener {
    public void actionPerformed(ActionEvent ae) {
    String s = ae.getActionCommand();
    if( ae.getSource() == button )
    button.setEnabled( false );
         if (s.equals("")) {
    int x=JOptionPane.showConfirmDialog(f,"Do You Want To Close");
         if(x==0){
         System.exit(0);
         else if (s.equals("")) {
         batch b=new batch();
              else if (s.equals("")) {
         dialcall dc=new dialcall();
              else if (s.equals("")){
    procedure proc=new procedure();
    else if (s.equals("")){
    reportcall rc=new reportcall();
    else if (s.equals("")) {
         verification vs=new verification();
              vs.verification1();
    else if (s.equals("")) {
         datatransfer dts=new datatransfer();
         dts.datatransfer1();
                   else if (s.equals("")) {
         datatransfer dts=new datatransfer();
         dts.display(dtrs_date.getText());
    else if (s.equals("")) {
         verification vs=new verification();
         vs.ver_display(vrs_fileno.getText(),vrs_fdate.getText(),vrs_tdate.getText());
    public class batch extends MyExample{
    public batch()
    setTitle("");
         icon = Toolkit.getDefaultToolkit().getImage("");
         setIconImage(icon);
    setVisible(true);
         Process p1;
         try{
         b1.removeActionListener(a);
         p1 = Runtime.getRuntime().exec("");
    p1.waitFor();
    t.sleep(8000);
         batchResult br=new batchResult();
    catch(Exception bat)
              JOptionPane.showMessageDialog(batch.this, "Error: "+bat.toString(), "Warning", JOptionPane.WARNING_MESSAGE);
    public class batchResult extends MyExample{
    public batchResult(){
    String conCount="";
         Connection conresult = null;
         PreparedStatement totalrecords;
         ResultSet resultset = null;
         Statement constmt = null;
         int hh=0;
         try{
    Class.forName("oracle.jdbc.driver.OracleDriver");
    conresult = DriverManager.getConnection( "thindriver");
    constmt = conresult.createStatement();
    conCount = "query";
    totalrecords = conresult.prepareStatement(conCount);
    resultset = totalrecords.executeQuery(conCount);
                   try{
    if(resultset.next()){
                   hh = resultset.getInt("rec");
                   }catch(Exception we)
                        JOptionPane.showMessageDialog(batchResult.this, "Error: "+we.toString(), "Warning", JOptionPane.WARNING_MESSAGE);
                   if(hh!=0){
    JOptionPane.showMessageDialog(f,"No.of records Imported: "+hh);
    else {
                   JOptionPane.showMessageDialog(f,"No Records Found to Transfer");
                   }catch(Exception ew)
                        JOptionPane.showMessageDialog(batchResult.this, "Error: "+ew.toString(), "Warning", JOptionPane.WARNING_MESSAGE);
    public class dialcall extends MyExample{
    public dialcall()
    b1.removeActionListener(a);
    setTitle("");
         icon = Toolkit.getDefaultToolkit().getImage("");
         setIconImage(icon);
    setVisible(true);
         Process p2;
         try{
         b1.removeActionListener(a);
         p2 = Runtime.getRuntime().exec("");
    p2.waitFor();
    catch(InterruptedException dl)
              JOptionPane.showMessageDialog(dialcall.this, "Error: "+dl.toString(), "Warning", JOptionPane.WARNING_MESSAGE);
    catch(Exception dl)
              JOptionPane.showMessageDialog(dialcall.this, "Error: "+dl.toString(), "Warning", JOptionPane.WARNING_MESSAGE);
    public class procedure extends MyExample{
    public procedure()
    setSize(900,600);
         setTitle("");
         icon = Toolkit.getDefaultToolkit().getImage("");
         setIconImage(icon);
    setVisible(true);
    b1.removeActionListener(a);
         dialup.removeActionListener(a);
         //b2.removeActionListener(a);
    Statement stmt = null;
         // DB Connection Variables
    final String driverClass = "oracle.jdbc.driver.OracleDriver";
    final String connectionURL = "";
    final String userID = "";
    final String userPassword = "";
    String beforeCount="";
         String afterCount="";
         Connection con = null;
         Connection con1 = null;
         PreparedStatement bCountRecords;
    PreparedStatement aCountRecords;
    int a=0,b=0;
    ResultSet rset2 = null;
         ResultSet rset1 = null;
         String cnt="";
         String cnt1="";
         String bb=null;
         //CallableStatement cstmt1 = null;
         //CallableStatement cstmt2 = null;
         ProgressBarExample pbe=new ProgressBarExample();
         pbe.setVisible( true );
         try{
         Class.forName("oracle.jdbc.driver.OracleDriver");
    con = DriverManager.getConnection( "thindriver");
    stmt = con.createStatement ();
    beforeCount = "";
              afterCount = "";
    bCountRecords = con.prepareStatement(beforeCount);
    aCountRecords = con.prepareStatement(afterCount);
              rset1 = bCountRecords.executeQuery(beforeCount);
                   try{
                   Runtime.getRuntime().exec(" ");
              Runtime.getRuntime().exec(" ");
    catch (Exception proc1) {
    proc1.printStackTrace();
         rset2 = aCountRecords.executeQuery(afterCount);
    if(rset1.next()){
                   a = rset1.getInt("bcnt");
                   String aa = Integer.toString(a);
              display1(aa);
    if(rset2.next())
         b=rset2.getInt("acnt");
         while(true){
                   rset2 = aCountRecords.executeQuery(afterCount);
              if (rset2.next()){
                   b=rset2.getInt("acnt");
                        System.out.println(a);
                                            System.out.println(b);
    if(b==a)
         bb = Integer.toString(b);
         display2(bb);
         processbar(a,b);
         button.setVisible( false );
         JOptionPane.showMessageDialog(f,"Records Transfered Successfully");
         break;
    else if (a!=0)
    processbar(a,b);
    else {
         pbe.setVisible(false);
    JOptionPane.showMessageDialog(f,"No Records found to transfer");
    break;
         } catch (ClassNotFoundException proc) {
    // proc.printStackTrace();
              JOptionPane.showMessageDialog(procedure.this, "Error: "+proc.toString(), "Warning", JOptionPane.WARNING_MESSAGE);
    } catch (SQLException proc) {
    // proc.printStackTrace();
              JOptionPane.showMessageDialog(procedure.this, "Error: "+proc.toString(), "Warning", JOptionPane.WARNING_MESSAGE);
    // proc_reply.setBounds(240,310,150,20);
    // proc_reply.setVisible(true);
    public void display1(String count)
         tot_records.setBounds(350,250,180,20);
         tot_records.setVisible(true);
         value=new TextField(count);
         value.setBounds(550,250,180,20);
         value.setVisible(true);
         add(value);
         value.setEditable(false);
         public void display2(String count1)
    tot_aft_records.setBounds(350,450,180,20);
         tot_aft_records.setVisible(true);
         value1=new TextField(count1);
         value1.setBounds(550,450,180,20);
         value1.setVisible(true);
         add(value1);
         value1.setEditable(false);
    public void processbar(int a,int b)
    label1.setText( "Record " + b+ " of "+a );
    Rectangle labelRect = label1.getBounds();
    labelRect.x = 0;
    labelRect.y = 0;
    label1.paintImmediately( labelRect );
    progress.setValue( b*100/a );
                                  Rectangle progressRect = progress.getBounds();
    progressRect.x = 0;
    progressRect.y = 0;
                                  progress.paintImmediately( progressRect );
         DoBogusTask(b);
    public void DoBogusTask( int iCtr )
    random = new Random( iCtr );
    for( int iValue = 0; iValue < random.nextFloat() *1; iValue++ )
    public     class ProgressBarExample extends JFrame
    public ProgressBarExample()
                        setTitle( "" );
                        setLocation(450,300);
    setSize( 310, 130 );
         //setBackground( Color. );
    // setBackground(new Color(14672066));
    topPanel = new JPanel();
    topPanel.setPreferredSize( new Dimension( 310, 130 ) );
    getContentPane().add( topPanel);
    label1 = new JLabel( "Waiting to start tasks..." );
    label1.setPreferredSize( new Dimension( 280, 24 ) );
    topPanel.add( label1 );
    progress = new JProgressBar();
    progress.setPreferredSize( new Dimension( 300, 20 ) );
                        progress.setMinimum( 0 );
    progress.setMaximum(100 );
    progress.setValue( 0 );
    progress.setBounds( 20, 35, 260, 20 );
    topPanel.add( progress );
    button = new JButton( "Start Process" );
    topPanel.add( button );
                        button.setVisible(false);
    button.addActionListener( a );
         public class reportcall extends MyExample{
    public reportcall()
    report.setVisible(true);
         b1.removeActionListener(a);
         b2.removeActionListener(a);
         report.removeActionListener(a);
         b5.setVisible(false);
         b5.setBounds(40,440,120,20);
         b5.setVisible(true);
    vrs.setVisible(true);
         dtrs.setVisible(true);
    public class verification extends MyExample{
    public void verification1(){
         setTitle("");
         icon = Toolkit.getDefaultToolkit().getImage("");
         setIconImage(icon);
    setVisible(true);
    vrs_fileno = new TextField("");
    vrs_fileno.setBounds(450, 180, 80, 20);
    add(vrs_fileno);
    vrs_fileno.setVisible(true);
         vrs_label1.setVisible(true);
         or.setBounds(450, 210, 80, 20);
         or.setVisible(true);
         vrs_fdate = new TextField("");
    vrs_fdate.setBounds(450, 230, 120, 20);
    add(vrs_fdate);
    vrs_fdate.setVisible(true);
         vrs_label2.setVisible(true);
         vrs_tdate = new TextField("");
    vrs_tdate.setBounds(650, 230, 120, 20);
    add(vrs_tdate);
    vrs_tdate.setVisible(true);
         vrs_label3.setVisible(true);
    dateformat.setVisible(false);
    dateformat.setBounds(780, 230, 120, 20);
    dateformat.setVisible(true);
         vrs_search.setVisible(false);
         vrs_search.setBounds(500,300, 80, 20);
         vrs_search.setVisible(true);
    public void ver_display(String fno,String fdate,String tdate){
    String FILE_NO1;
    String NAME1;
    String ADDRESS_TYPE1;
    String VER_STATUS1;
    int i1=0,b=0;
    Connection con1 = null;
    Statement stmt1 = null;
    try {
         Class.forName("oracle.jdbc.driver.OracleDriver");
    con1 = DriverManager.getConnection( "thin driver");
    stmt1 = con1.createStatement();
    String qry1 = "";
         String qry2 ="";
              ResultSet rs12 = stmt1.executeQuery(qry2);
                   if(rs12.next())
         b=rs12.getInt("cnt");
    if(b==0){
              JOptionPane.showMessageDialog(f,"No Records Found");}
                   else{
                        ResultSet rs11 = stmt1.executeQuery(qry1);
    while (rs11.next()) {
                   FILE_NO1 = rs11.getString(1);
    NAME1 = rs11.getString(2);
    ADDRESS_TYPE1 = rs11.getString(3);
    VER_STATUS1 = rs11.getString(4);
    show(FILE_NO1, NAME1, ADDRESS_TYPE1, VER_STATUS1, i1++);
    catch (ClassNotFoundException proc) {
    // proc.printStackTrace();
    catch (SQLException proc) {
    //proc.printStackTrace();
    public void show(String a, String b, String c, String d,int i) {
    Label fileno=new Label("File No");
    Label fname=new Label("Name");
    Label faddtype =new Label("Address Type");
    Label fstatus=new Label("Status");
         TextField fileno_result = new TextField(a);
    TextField fname_result = new TextField(b);
    TextField faddtype_result = new TextField(c);
    TextField fstatus_result = new TextField(d);
    fileno.setBounds(340, 180, 100, 20);
    add(fileno);
    fname.setBounds(440, 180, 130, 20);
    add(fname);
    faddtype.setBounds(575, 180, 120, 20);
    add(faddtype);
    fstatus.setBounds(700, 180, 90, 20);
    add(fstatus);
         fileno_result.setBounds(320, 200 + 20 * i, 100, 20);
    add(fileno_result);
    fileno_result.setVisible(true);
    fileno_result.setEditable(false);
    fname_result.setBounds(420, 200 + 20 * i, 150, 20);
    add(fname_result);
    fname_result.setVisible(true);
         fname_result.setEditable(false);
         faddtype_result.setBounds(570, 200 + 20 * i, 120, 20);
    add(faddtype_result);
    faddtype_result.setVisible(true);
         faddtype_result.setEditable(false);
    fstatus_result.setBounds(690, 200 + 20 * i, 120, 20);
    add(fstatus_result);
         fstatus_result.setVisible(true);
    fstatus_result.setEditable(false);
    public class datatransfer extends MyExample{
    public void datatransfer1(){
    setTitle("");
         icon = Toolkit.getDefaultToolkit().getImage("");
         setIconImage(icon);
    setVisible(true);
    dtrs_date = new TextField("");
    dtrs_date.setBounds(420, 180, 80, 20);
    add(dtrs_date);
         dateformat.setVisible(true);
    dtrs_date.setVisible(true);
         dtrs_search.setVisible(true);
         dtrs_label.setVisible(true);
    public void display(String date1){
    String FILE_NO;
    String DIST_CODE;
    String NAME;
    String DOB;
              String APPLN_DATE;
    int i1=0,b=0;
    Connection con1 = null;
    Statement stmt1 = null;
    try {
         Class.forName("oracle.jdbc.driver.OracleDriver");
    con1 = DriverManager.getConnection( "thin driver");
    stmt1 = con1.createStatement();
    String qry1 = "";
    String qry2 = "";
              ResultSet rs12 = stmt1.executeQuery(qry2);
                   if(rs12.next())
         b=rs12.getInt("cnt");
    if(b==0){
              JOptionPane.showMessageDialog(f,"No Records on this date");}
                   else{
                        ResultSet rs11 = stmt1.executeQuery(qry1);
    while (rs11.next()) {
                   FILE_NO = rs11.getString(1);
    DIST_CODE=rs11.getString(2);
                   NAME = rs11.getString(3);
    DOB = rs11.getString(4);
    APPLN_DATE = rs11.getString(5);
    show1(FILE_NO, DIST_CODE, NAME, DOB,APPLN_DATE,i1++);
    catch (ClassNotFoundException proc) {
    //proc.printStackTrace();
    catch (SQLException proc) {
    // proc.printStackTrace();
    public void show1(String a, String b, String c, String d,String e,int i) {
    fileno=new Label("File No");
    fdcode=new Label("District");
    fname =new Label("Name");
    fdob=new Label("Date Of Birth");
         fappdate=new Label("Application Date");
    TextField fileno_result = new TextField(a);
    TextField fdcode_result = new TextField(b);
    TextField fname_result = new TextField(c);
    TextField fdob_result = new TextField(d);
    TextField fappdate_result = new TextField(e);
    fileno.setBounds(323, 180, 80, 20);
    add(fileno);
    fdcode.setBounds(420, 180, 40, 20);
    add(fdcode);
    fname.setBounds(480, 180, 100, 20);
    add(fname);
    fdob.setBounds(590, 180, 120, 20);
    add(fdob);
    fappdate.setBounds(710, 180, 120, 20);
    add(fappdate);
         fileno_result.setBounds(320, 200 + 20 * i, 100, 20);
    add(fileno_result);
    fileno_result.setVisible(true);
    fileno_result.setEditable(false);
    fdcode_result.setBounds(420, 200 + 20 * i, 40, 20);
    add(fdcode_result);
    fdcode_result.setVisible(true);
         fdcode_result.setEditable(false);
         fname_result.setBounds(460, 200 + 20 * i, 120, 20);
    add(fname_result);
    fname_result.setVisible(true);
         fname_result.setEditable(false);
    fdob_result.setBounds(580, 200 + 20 * i, 120, 20);
    add(fdob_result);
         fdob_result.setVisible(true);
    fdob_result.setEditable(false);
    fappdate_result.setBounds(700, 200 + 20 * i, 120, 20);
    add(fappdate_result);
         fappdate_result.setVisible(true);
    fappdate_result.setEditable(false);
    public static void main(String[] args) {
    MyExample bpd = new MyExample();
    bpd.setVisible(true);
    }

    deleted - wrong forum, try the swing posting

  • Hello , i want to know , if i buy an iPhone 5s from this site ,i can use it in Romania?

    Hello , i want to know , if i buy an iPhone 5s from this site , i can use it in Romania ? Thx !

    Yes, but if you are referring to buying the iPhone from the US online Apple Store you must have a credit card with a US address and a US address to ship it to. You may or may not be able to use LTE and you will have to return to the US for warranty service.

  • My itunes comes up with this when i try to download purchased songs: this devise is already associated with an apple id. this devise can be used with another apple id in 82 days. i need help to see if i can fix this problem please.

    i have an iphone 4s i signed out of my itunes on the devise and my friend signed herself into ituned but i signed her out an myself back in but my purchased songs and tones cannot download. it gives me a message of:this device is already associated with an apple id. this device can be used with another apple id in 82 days! is there anyway for me to fix this or override something. im freaking out!!

    Sorry: once a device has been authorised for a particular iTunes account you can't change it to another until 90 days have passed. This is to prevent people cirumventing the restrictions of purchases to one account from consteantly swopping between accounts. You will have to wait for the 82 remaining days, and there is no workaround.

  • When i try to watch one of my movies in the cloud it says "this computer is already associated with an apple ID.You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID"

    my mom used my computer to sign into her itunes account and then i logged back into mine and tried to watch one of my movies and it said "this computer is already associated with an apple ID.You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 68 days"  What do i do?

    You do what it says.

  • Is there a way to get around the pop up, "this device is already associated with an Apple ID. You can download past purchases on this device with just one Apple ID every 90 days. This device can be used with another Apple ID in 13 days."Someonehelp please

    Is there a way to get around the pop up, "this device is already associated with an Apple ID. You can download past purchases on this device with just one Apple ID every 90 days. This device can be used with another Apple ID in 13 days."Someonehelp please!

    What exactly are you trying to do?

  • You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 71 days. Whats the deal???

    You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 71 days. Whats the deal???

    You can use multiple AppleIDs to purchase new music but you are limited as to how frequently you can change authorizations for re-downloading  past purchases.  It may well be a measure to deter piracy by stopping a group of people from going around to a friend's computer and downloading purchases on the other person's computer.  It is easy to avoid by making sure you have backup copies on drives at home so you never need to redownload anything.

  • You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 60 days. This is the message I get when trying to view purchased material!  My ID hasn't changed!

    I can't pull up purchased content without this - You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 60 days. - my ID hasn't changed

    You can use multiple AppleIDs to purchase new music but you are limited as to how frequently you can change authorizations for re-downloading  past purchases.  It may well be a measure to deter piracy by stopping a group of people from going around to a friend's computer and downloading purchases on the other person's computer.  It is easy to avoid by making sure you have backup copies on drives at home so you never need to redownload anything.

  • TS1424 How to fix iTunes when you get this you can download past purchases on this computer with just one apple ID every 90 days. This computer can be used with a different apple iD in 50 days

    How to fix iTunes when you get this you can download past purchases on this computer with just one apple ID every 90 days. This computer can be used with a different apple iD in 50 days

    hi i dont know if this will work for anyone but i had not been on itunes for sometime but today i went on to watch a new episode of walking dead but it said i still had to wait 36 days out of the 90days , i managed to get my episode to download load by clicking my apple id in itunes going to account and at the very bottom off the page there is a button that says reset all warnings for buying and downloading i pressed this then it let me download hope this works for you worked for me

  • Premiere CC 2014: Message on loading project from older version: This project was last used with Mercury Playback Engine GPU acceleration (CUDA)...

    After installing Adobe CC 2014 I have each time a message when loading an old Adobe pro project. Message:This project was last used with Mercury Playback Engine GPU acceleration (CUDA), which is either not available or not certified on this system. Mercury Playback software will be used. I have very recent HP Zbook 15 with a NVIDIA Quadro K2100M. At webinar today it was explained how to solve this, but sound was not understandable at my machine at that moment. Help? What need I to do.

    Problem is solved since yesterday via Adobe helpdesk. It appeared that the newest driver for the NVIDIA were note present. So after downloading the new drivers it work. But I think Adobe should mention those issues when they launch new versions of Adobe CC like in June.

  • How do I enable cookies on my iPad 2 . I have went to Safari and changed it many times but a website keeps telling me to enable it I've been on this site many times before with out a problem

    How do I enable cookies on my iPad 2 . I have went to Safari and changed it many times but a website keeps telling me to enable it I've been on this site many times before with out a problem

    The website may not run properly on a mobile device. You can try another browser (search the App Store) but it may be hard-coded into the website itself.

  • HT4913 how to remove this ?  You can use iTunes Match on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 85 days.

    hello i ad my girlfriend profile and her itune library on my macbook and now i have this warning in my l itunes library, how can i resolve the problem ?
    You can use iTunes Match on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 85 days.

    If a computer has been associated with a device (as well as iTunes Matct, it can become associated via automatic downloads or re-downloading past purchases) then you will either need to wait until the 90 days have completed : http://support.apple.com/kb/HT4627
    Or you can try contacting iTunes Support and see if they can remove the association : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • You can use iTunes Match on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 86 days. What do I do?

    You can use iTunes Match on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 86 days. What do I do?

    Unless you really only have one AppleID that you use with the iTunes Store there's really nothing you can do. In the case of having only one AppleID you should contact iTunes Store support, since that would be a server-side problem.

  • Scroll bar is very slow, can't use wheel

    The scroll bar speed is slighlt faster than glacial. Having problems using the wheel on my mouse as well at web sites.

    My scroll bar on Mozilla is slow and kind of operating weird. How do i speed it up to normal scrolling?

  • Scroll bar does not slide when dragged using curser in word

    I need answers to two questions.
    1.   How to maximise a word document to full window size.
    2.   Why the side scroll bar of a document does not slide when dragged.
    3.   Am very  used to the "delete", "page up and page down" keys and cant find them on keyboard.
    Thanks.

    What you can try if the above doesn't work, is deleting the scroll bar from your Data List, and then dropping it back in from the Library. The act of re-adding the scrollbar may get you the desired behavior.
    If that doesn't work, you will probably need to post your project so we can take a look.
    -Bear

Maybe you are looking for

  • Error Opening xml file

    Hi, I am struck with one error in opening the xml file. Pls provide me your inputs. I am using the pl/sql script for outbounding the data in .xml format. But after creating the file successfully I am not able to open it in the explorer. The data havi

  • Blocky Pixellated .M2T Import of clips trimmed in MPEG2VCR

    Hi all, I have a strange problem with CS3 that I was not experiencing with PPro 2.0. This is on a clean install/format/OS on a new machine, XP Pro, Quad Core Pentium, 2GB ram, two 500gb sata drives. (I tested and the same problem happens on my older

  • Messages and Aim account

    My aim screen name will not connect in messages. It tells me it can't connect because my username is wrong or because the server is not working, but both my internet is operating and i know my username is correct. Everytime I try to click available i

  • Filtering with Smart Collection

    In a next version of LR (2.2 or 3.0) I would love see the collections window improved. When I select two Smart Collections (by Ctrl-clicking) in the menu, LR comes up with all photos that appear in one or both of the collections I selected. When I se

  • Need to download Reader 8

    Have Microsoft Vista in a new desktop and cannot use efax with Adobe 9.1 in this system.  From where may I download Adobe Reader 8? Thank you.