Arcade Typing Tutor

I downloaded Arcade Typing Tutor 1.5 from the Apple Downloads web site onto two iMac machines and it will not run on either. Both are running OS 10.4.11. One is a PowerPC and the other an Intel machine. I double-click the application, it shows up briefly on the dock and then disappears.
Anyone know what's up?

Hi comod1, and a warm welcome to the forums!
I don't have it to test unfortunately... on Dial-up here.
Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, when that completes...
Reboot.
PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.

Similar Messages

  • Touch typing tutor for OS 9?

    Hello there,
    Perhaps this isn't the right board for this question, but here goes anyway!
    I'm looking for a child-friendly, freeware touch-typing tutor program that I can install on 6 iBooks I want to use with my class... Does anyone know of such a piece of software?
    Thanks very much in advance...
    Steve

    I remember using this a long time ago. It was fun and child friendly; it has typing games.
    http://cgi.ebay.com/MAVIS-BEACON-TEACHES-TYPING-Version-16-PC-Mac-CD-NEW_W0QQite mZ130224339300QQihZ003QQcategoryZ41865QQssPageNameZWDVWQQrdZ1QQcmdZViewItem
    I don't remember if I used this version, but this one says it works with 9.1. Pretty close to being free...

  • Typing tutor software

    If this is in the wrong discussion group, I apologise.
    I'm looking for a typing tutor for my MacBook Air. I'm a hunt and peck type, and need to learn how to touch type.
    I write for a living, so it's vital that I master this skill.
    can anybody make a recommendation for either a free or paid for app. that may meet my needs?
    thanks in advance.

    The following one is free and has good reviews in the Mac App store. I have not used it myself. https://itunes.apple.com/us/app/typist/id415166115?mt=12

  • Typing Tutor program

    Hi,
    Trying to write a typing tutor program. As you type a character it checks if it matches with the JTextArea. If it does match, it takes a snapshot of the text in the JTextField. If its wrong it sets the text back to the snapshot.
    However, when I set the text back to the snapshot it displays the key typed aswell. How do I remove this character, so that only the snapshot is visible.
    Heres the code:
    //file:TTutor.java
    //GUI typing tutor
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.lang.String.*;
    class TTutor extends JFrame{
        String[] phrase = {"In a world full of people", "Only some want to fly", "Isn't that crazy?"};
         final JTextArea area = new JTextArea();
         final JTextField field = new JTextField(40);
        String failString= new String("");
        int caretp;
        int x, y;
        GridBagConstraints constraints = new GridBagConstraints();
        int i = 0;
        public TTutor(){
         super("TTutor v1.0");
         setSize(600, 300);
         setLocation(200, 200);
         setLayout(new GridBagLayout());
         area.setFont(new Font("Serif",Font.PLAIN, 18));
         area.setText(phrase[0]);
         area.setEditable(false);
         Container content = getContentPane();
         addGB(area, x=1, y=0);
         Image image = Toolkit.getDefaultToolkit().getImage("keyboard.jpg");
         addGB(new ImageComponent(image), x=1, y=1);
         addGB(field, x=1, y=2);
         setVisible(true);
         field.requestFocus();
         field.addKeyListener(new MyKeyListener());
         void addGB(Component component, int x, int y){
             constraints.gridx=x;
             constraints.gridy=y;
             add(component, constraints);
        public void update(KeyEvent ke){
         char c = ke.getKeyChar();
         String cs = Character.toString(c);
         char ac = area.getText().charAt(i);
          String as = String.valueOf(ac);
          if (as.equals(cs)){
           snapshot();
              i++;
           System.out.println("match");
          if (!as.equals(cs)){
           wrong();
          System.out.println("wrong");
        void snapshot(){
             failString = field.getText();
         caretp = field.getCaretPosition();
        void wrong(){
         /*Probelm is here:
           How do I get the textField to write the string minus the key typed
          field.setText("");
          field.setText(failString);
          field.setCaretPosition(caretp);     
        public static void main(String[] args){
         JFrame f = new TTutor();
         f.addWindowListener(new WindowAdapter(){
              public void windowClosing(WindowEvent we){System.exit(0);}
         f.setVisible(true);
    public class MyKeyListener extends KeyAdapter{
        public void keyTyped(KeyEvent ke){
         update(ke);
         Regards ABourke.

    Ideally I would like to get the TextField to work like the one in this demo:
    http://www.quazart.org/cgi-bin/newtyping/demo.pl

  • Can't install LearningCompany apps & others...

    Just got a new Mac Pro, and I can't seem to install a series of disks, all of which claim to be compatible with Mac OS 7 or later:
    Simon & Schuster Typing Tutor
    Schoolhouse Rock 3rd & 4th Grade
    Learning Company Reader Rabbit Personalized Math 6-9
    I Spy School Days
    Behavior is the same - the CD icon appears, but nothing launches. And double clicking any obvious files in the disk just gets "You cannot open the application because it is not supported on this system." dialog.
    Is Mac OS X not backward compatible for things like this?
    Thanks!

    You cannot use applications written for Mac OS 9 and earlier systems on a Mac Pro without use of an emulator such as SheepShaver or Basilisk; a list of emulators is available on this page.
    (20043)

  • Invalid IHTMLTxtRange::text value in contentEditable DIV element

    I have a BHO on C# which works with text and selection on editable HTML elements. I observe a problem with getting a correct text using
    IHTMLTxtRange interface on editable DIV element (contentEditable=true).
    Here is my code:
                IHTMLSelectionObject selectionObj = m_doc2.selection;
                if( selectionObj != null )
                    IHTMLTxtRange txtRange = selectionObj.createRange() as IHTMLTxtRange;
                    if( txtRange != null )
                        txtRange.moveToElementText(
    m_element );
                        String sText = txtRange.text;
    m_element is the IHTMLElement which I'm getting text for. m_doc2 (IHTMLDocument2) is the document containing m_element.
    The problem is with DIV element only and if it contains empty new lines at the end of the text. It does not depend on version of IE (at least 9 and higher)
    IHTMLTxtRange::text property returns the whole text but without new lines at the end. How is it possible to get entire text for contentEditable DIV including last empty lines.
    Thank you.

    Hi,
    \r and \n and 'C string' control characters for js strings.
    JS Control Characters
    'whitespace' (eg. ' ') is a textnode (in IE10 and higher) and is not equivalent to  
    so you will have to change your decoding to replace the whitespace characters to  
    eg. received text: "Sun\r\nMon\r\n\r\nTue" =><p>Sun&nbsp;&nbsp;<br/><br/>&nbsp;Tue</p>
    Sun[blank][blank]
    [blank]Tue
    what you need to do is to use the IE11 developer tool to inspect the generated html from your control.
    f12>DOM Explorer>Find tool.... select the generated markup from your control....
    the computed source will be displayed in the DOM Tree....
    <p id="test">
    Sun  <br/><br/>
    Tue
    </p>
    in the console tab, you can query the value of the text nodes.
    document.getElementById('test').textContent
    Sun Tue
    but because whitespace is treated as a textnode
    document.getElementById('test').firstChild.tagName
    #textnode
    here is the content of a pre element that I use for a typing tutor, that highlights the current character that the user must keypress.
    <div class="uc" id="txtscript" lang="id" dir="ltr" contenteditable="false"><span class"word"=""><span class="script" style="background-color: orange;">S</span><span class="script">e</span><span class="script">m</span><span class="script">u</span><span class="script">a</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">o</span><span class="script">r</span><span class="script">a</span><span class="script">n</span><span class="script">g</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">d</span><span class="script">i</span><span class="script">l</span><span class="script">a</span><span class="script">h</span><span class="script">i</span><span class="script">r</span><span class="script">k</span><span class="script">a</span><span class="script">n</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">m</span><span class="script">e</span><span class="script">r</span><span class="script">d</span><span class="script">e</span><span class="script">k</span><span class="script">a</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">d</span><span class="script">a</span><span class="script">n</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">m</span><span class="script">e</span><span class="script">m</span><span class="script">p</span><span class="script">u</span><span class="script">n</span><span class="script">y</span><span class="script">a</span><span class="script">i</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">m</span><span class="script">a</span><span class="script">r</span><span class="script">t</span><span class="script">a</span><span class="script">b</span><span class="script">a</span><span class="script">t</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">d</span><span class="script">a</span><span class="script">n</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">h</span><span class="script">a</span><span class="script">k</span><span class="script">-</span><span class="script">h</span><span class="script">a</span><span class="script">k</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">y</span><span class="script">a</span><span class="script">n</span><span class="script">g</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">s</span><span class="script">a</span><span class="script">m</span><span class="script">a</span><span class="script">.</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">M</span><span class="script">e</span><span class="script">r</span><span class="script">e</span><span class="script">k</span><span class="script">a</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">d</span><span class="script">i</span><span class="script">k</span><span class="script">a</span><span class="script">r</span><span class="script">u</span><span class="script">n</span><span class="script">i</span><span class="script">a</span><span class="script">i</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">a</span><span class="script">k</span><span class="script">a</span><span class="script">l</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">d</span><span class="script">a</span><span class="script">n</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">h</span><span class="script">a</span><span class="script">t</span><span class="script">i</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">n</span><span class="script">u</span><span class="script">r</span><span class="script">a</span><span class="script">n</span><span class="script">i</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">d</span><span class="script">a</span><span class="script">n</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">h</span><span class="script">e</span><span class="script">n</span><span class="script">d</span><span class="script">a</span><span class="script">k</span><span class="script">n</span><span class="script">y</span><span class="script">a</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">b</span><span class="script">e</span><span class="script">r</span><span class="script">g</span><span class="script">a</span><span class="script">u</span><span class="script">l</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">s</span><span class="script">a</span><span class="script">t</span><span class="script">u</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">s</span><span class="script">a</span><span class="script">m</span><span class="script">a</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">l</span><span class="script">a</span><span class="script">i</span><span class="script">n</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">d</span><span class="script">a</span><span class="script">l</span><span class="script">a</span><span class="script">m</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">s</span><span class="script">e</span><span class="script">m</span><span class="script">a</span><span class="script">n</span><span class="script">g</span><span class="script">a</span><span class="script">t</span></span><span class="script">&nbsp;</span><span class="word"><span class="script">p</span><span class="script">e</span><span class="script">r</span><span class="script">s</span><span class="script">a</span><span class="script">u</span><span class="script">d</span><span class="script">a</span><span class="script">r</span><span class="script">a</span><span class="script">a</span><span class="script">n</span><span class="script">.</span></span></div>
    the above is pure html and javascript.... note that in the html markup [blank] spaces are replaced with &nbsp; and all characters are wrapped in spans.
    from the selectionstart value of the text range object (in the above text input field at the top), gives me the index of the collection of <span>t</span> elements. So I can use the selection start value to select the matching span element for
    the keycode the user is to type next.
    Rob^_^

  • SetLocation on a JLabel only sets it for a few milliseconds

    My main class extends JFrame, and I have two panels gameArea and commandArea. I set the Layout of the content pane to BorderLayout and placed JPanel gameArea in the Center and JPanel commandArea in the South. I didn't specify a layout for gameArea, although I believe it uses FlowLayout by default. I added my JLabel test to gameArea. I have a timer whose event fires every 10 milliseconds.
    I'm writing a typing tutor program for a class. The program is supposed to scroll a word down the screen, and if you type it before it hits the bottom you get a point. When you type a letter it uses HTML in the JLabel to increase the font size of the letters you've already typed.
    What I initially did was use Graphics.drawString to draw the word to the gameArea JPanel, but that produced a lot of flickering. What I'm doing now is using setLocation to move my JLabel (which contains the word) down the screen. The Timer event calls setLocation. I use the keyTyped event to grab the keystrokes.
    This looks much smoother, except the word still flickers at the top center of my window while it's moving down the page. If I don't type anything it looks fine, but once I start typing it starts flickering. If I click the Pause button, which stops the Timer, the JLabel moves up to the top center of my window and sits there.
    I've tried gameArea.setLayout(null) but then the JLabel doesn't appear on the screen at all. Any thoughts?

    You must set gameArea's layout to null, and set the size of your label because without layout the size will not be computed and you won't see the label...
    Hope this helped,
    Regards.

  • Access .mdb asking for login and password in Crystal Reports.

    Hello Experts,
    I am VERY new to Crystal reports and I am am having a Major problem running a VERY simple report.
    First off I am using Visual Basic 2008 to create a Crystal Reports Application...
    I am using the Report Wizard to create and the Northwind database as my database or OLE DB(ADO).
    The provider I am using is the"Microsoft Jet 4.0 OLE DB Provider".
    I am NOT entering a User ID or Password in the wizard and the Access file is NOT protected.
    Everything seems to work fine and I can see the report in the "Main Report Preview" but when I start Debugging to see the report in the form it prompts for a User ID and Password....
    If i type nothing and just hit finish it says "Logon Failed"
    If i hit cancel no report is generated..
    I have been messing with this for days now...
    I have tried using Visual Basic 2010... Same results.
    I have tried Office 2003, 2007, and 2010... Same results.
    I Have uninstalled and reinstalled Visual Basic 2008...
    My professor suggested this link to fix: http://support.microsoft.com/kb/888734
    This does not work either... Nor do I have "Typing Tutor Deluxe" by Global Software Publishing installed...
    PLEASE HELP ME so I can learn Crystal Reports!!!!

    Please help with this!!!
    I can design a Report in Crystal Reports 9...
    Then Load it into VB and it works fine...
    I CANNOT use the wizard in VB to design a report that works when i try to debug!!!

  • Where do packages go?

    When I need to upgrade or add a package I know what to do and how to check them. But I just tried to put in a typing tutor for my kids and I don't know where to look or how to get it working. I did pacman -S gtypist and it downloaded and installed with no problems. If I do a pacman -Q gtypist I find I have gtypist 2.7.1.  If I try to find file I find it in usr/share and the executable file is in usr/bin. But I cannot find anything on the desktop or in any menu. This may be simple but I haven't installed a small program and tried to get it running. What do I do?

    Run it from CLI.  If it's not in the menu, it's probably because it doesn't come with a *.desktop file. If that bothers you, write one for it. Use the existing ones in /usr/share/applications as templates

  • [solved]looking for a dvorak spanish variation

    Hi
    i Have installed ktouch, typing tutor, and have one option to use dvorak spanish variation and is great!, but is not in the dir of map.gz
    $ls /usr/share/kbd/keymaps/i386/dvorak   
    ANSI-dvorak.map.gz  dvorak-fr.map.gz  dvorak-l.map.gz  dvorak.map.gz  dvorak-r.map
    So, anybody know where i can find this map? i  seen one on internet but is not this version,
    Last edited by fpilee (2011-10-12 23:18:18)

    Oh boy, I misunderstood you completely.
    Sorry.
    Last edited by karol (2011-10-12 21:41:35)

  • Error messages using software

    I am using "Mavis Beacon Typing Tutor" and get this error message when attempting to type on screen:
    Assertion ((mdwLesson_starttime != mTIMEUNKNOWN)) failed in "Clsbase.cpp", line 1009
    Am I missing an update or is this a question for the software manufacturer?

    Errors related to third-party security software
    Error 2, 4 (or -4), 6, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or phobos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • Calculating words per minute

    Hi, trying to write a typing tutor program.
    Having trouble calculating the words per minute.
    Does anyone know what Im doing wrong?
    import java.awt.*;
    import java.util.Timer;
    import java.util.TimerTask;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.Font;
    import java.awt.Image;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import javax.swing.JFrame;
    import javax.swing.JTextArea;
    import javax.swing.JTextField;
    import javax.swing.JLabel;
    class TTutor extends JFrame{
        final JTextArea area= new JTextArea();
        final JTextField field = new JTextField(40);
        GridBagConstraints constraints = new GridBagConstraints();
        JLabel label = new JLabel();
        String[] phrase = { "In a world full of people",
                   "Only some want to fly",
                   "Isn't that crazy?"};
        int i = 0;
        int j = 0;
        int time = 0;
        double wps = 0;
        double wpm =0;
        int words= 0;
        int count = 0;
        public TTutor(){
         super("TTutor v1.0");
        void addGB (Component component, int x, int y){
         constraints.gridx = x;
         constraints.gridy = y;
         add(component, constraints);
        private void createAndShowGUI(){
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         setSize(600, 300);
         setLocation(200, 200);
         setLayout(new GridBagLayout());
         area.setFont(new Font("Serif", Font.PLAIN, 18));
         area.setText(phrase[0]);
         area.setEditable(false);
         addGB(area, 1, 0);
         field.addKeyListener(new KeyListener(){
              public void keyTyped(KeyEvent e){
                  update(e);
                  count++;
              public void keyPressed(KeyEvent e){
                  if (e.getKeyCode() == KeyEvent.VK_LEFT){
                   System.out.println("Left");
                   e.consume();
              public void keyReleased(KeyEvent e){}
         Image image = Toolkit.getDefaultToolkit().getImage("keyboard.jpg");
         addGB(new ImageComponent(image), 1, 1);
         addGB(field, 1, 2);
         Timer timer = new Timer();
         TimerTask task = new TimerTask(){
              public void run(){
                  time++;
                  String clock = String.valueOf(time);
                  System.out.println(clock);
                  System.out.println(count);
                  System.out.println(words);
                  System.out.println(wps);
                  System.out.println(wpm);
                  //calculate the words per minute - Anyone have any ideas?
                  try{
                  words = count/5; //1 word = 5 characters
                  wps = words/time;
                  wpm = wps * 60;
                  }catch(Exception e){System.out.println("error");}
                  String Wpm = String.valueOf(wpm);
                  label.setText("");
                  repaint();
         timer.scheduleAtFixedRate(task, 1000,1000);
         addGB(label, 2, 2);
         setVisible(true);
         field.requestFocus();
        public void update(KeyEvent ke){
         char c = ke.getKeyChar();
         System.out.println("" + (int)c);
         try{
         if (field.getText().equals(area.getText())){
             phrase[j] = phrase[j++];
             area.setText(phrase[j]);
             field.setText("");
             i=0;
    }catch(Exception e){System.out.println("error");}
         if (j == phrase.length){
         field.setText("");
         field.setEditable(false);
         area.setText("Finished");
         if (c == 8){
             ke.consume();
             System.out.println("Backspace consumed: "+ke.isConsumed());
             field.setText(area.getText().substring(0, i));
             return;
         if (i < area.getText().length()){
             char ac = area.getText().charAt(i);
             if (c == ac){
              System.out.println("match");
              i++;
             }else{
              System.out.println("no match");
              ke.consume();
         }else{
             ke.consume();
        public static void main (String[] args){
         java.awt.EventQueue.invokeLater(new Runnable(){
              public void run(){
                  new TTutor().createAndShowGUI();
    }Regards ABourke.

    Does anyone know what Im doing wrong?http://www.catb.org/~esr/faqs/smart-questions.html
    Now, before you take that the wrong way, please understand that the folks who answer questions here are volunteers. You're asking them to do a great deal of work just to figure out what problem you're having; not what the solution is, what the problem is. It's in your best interest to make your questions interesting and easy to answer. I can assure that few people will find copying, compiling, running, and playing detective just to figure out what trouble YOU are having is not likely to be easy to answer or interesting to anyone.
    Please consider this carefully, google "SSCCE", and rephrase your question. Thanks!
    ~

  • The letters on my iPad keep repeating when I use the keyboard

    The letters keep repeating when I use the keyboard

    Welcome to Apple Support Communities.
    Multiple letters result when you 'hold down' a key too long.
    For best results, touch the on-screen 'keyboard' lightly and quickly with your fingertips.
    I find it is easier to type with more accuracy on the larger 'landscape' keyboard, because the keys are spaced better for my fingers. 
    If you are trying to use a compatible iPhone or iPod Touch app, use the 2x button in the lower right corner to enlarge the iPhone keyboard. (But it still won't be the same layout as the iPad.)
    If you've never done much typing, it might help to use a typing tutor app. Several are available in the iTunes App store.
    If you have a lot of text to enter (writing papers, transcribing recordings, writing a novel), you might consider purchasing a compatible wireless keyboard.  In my experience, two different USB keyboards I own do work when plugged into the USB Camera Connection kit, even though the iPad may 'complain' about the keyboard being an unsupported device.
    Message was edited by: kostby

  • Accessing arabic charCodes from the keyboard

    I am trying to make a little free typing tutor game in arabic.  The letters fall down, and you have to type the correct letter before it hits the ground.  KeyBoardEvent.charCode returns the english character code even though I have arabic text input selected (using Windows Vista) from the language bar.  I have looked into IMEEvent, but without sucess.  It seems that IMEEvents only respond to Far Eastern languages.
    Is there a workaround.  The only thing I can think of is to create a TextBox (which handles arabic characters fine), and somehow lock focus to that box.  Then when the user types a character, text changed event is fired, and the text string is compared to the letter falling down.
    -Hoping someone perhaps also experienced this problem
    -Thanks for any help.

    Thanks. It's CTRL+F1 and CTRL+F2 that I think I was looking for. Much obliged.
    OS X Keyboard Shortcuts.
    Other shortcuts are contained in the Keyboard & Mouse
    preference pane. Specific application shortcuts are
    included with each menuitem for which a shortcut is
    defined. This is also true of the Finder and all
    standard OS X applications.
    Why reward points?(Quoted from
    Discussions Terms of Use.)
    he reward system helps to increase community
    participation. When a community member gives you (or
    another member) a reward for providing helpful advice
    or a solution to their question, your accumulated
    points will increase your status level within the
    community.
    Members may reward you with 5 points if they deem
    that your reply is helpful and 10 points if you post
    a solution to their issue. Likewise, when you mark a
    reply as Helpful or Solved in your own created topic,
    you will be awarding the respondent with the same
    point values.

  • Local mac tutoring Tulsa

    I need help with learning to use some of the features of my Mac.  It's too late to get an Apple One to One membership as I have had the computer for a couple of years.  Would think there would be experienced individuals in my area that could provide tutoring but I haven't found out how to locate them.  There is a Mac club here but they say they can't help me or lead me to anyone who can.
    My main issues are organizing in iPhoto and putting various photos or albums on my iPhone and iPad.  My computer is also very slow, I mean really slow in all programs, not just web surfing.  I expect it to be slow there since I live in the country and can't get a very fast connection.  The computer is slow at everything.  When I try to put the cursor in a fill in box I can go make a sandwich while it takes its time to become active.  I can type in a whole paragraph before the first typed letter shows up on the screen.  Opening programs, even finder is a several minute ordeal.
    How do I find a tutor and someone who can check out my computer for these problems?

    Contact one of the local Apple Users Groups and see if they can recommend someone:
    Tulsa Users of Macintosh Society (TUMS)
    Tulsa Users of Macintosh Society (TUMS). | Tulsa City ...

Maybe you are looking for

  • Problem in Profit centre

    hi friends i make cash payment in FBCJ in that  i assign profit centre like '4000'.but when i post it and then after check in FBL3N G/L account documents it will display '1000' profit centre what change i will do in configuration to get profit centre

  • Can I use find in adf table jdeveloper 10.1.3

    Hi can I use find in adf table in jdeveloper 10.1.3 ? thanks frank

  • Error in popup windows

    Hi Recently we had upgraded our development server from sp11 to sp13 and our application was deployed in it. Most of the development had taken place in sp11. We are now facing a unique error from modal pop up windows. When we invoke the pop up window

  • Laptop speaker still making sound when earphones plugged in

    I've tried editing /etc/modprob.conf, but didn't work. i've tried     options snd-hda-intel model=laptop     options snd-hda-intel model=hp    options snd-hda-intel model=3stack     options snd-hda-intel index=0 model=laptop is there any other option

  • Line 6 KB37 Midi Nightmare in Snow Leopard

    Hi I bought myself a new imac i3 yesterday for music production. I have been using a G5 with Leopard for years using Logic 8/Reason with my Line 6 KB37. I have installed on the new mac all the line 6 drivers and audio plays from the Line 6 fine when