Please Reply fast

Hi i was wondering is it possible i have iChat 3 on my tiger and i know on leopard you can make yourself invisible is it possible to do that on tiger?

Try http://www.macupdate.com/info.php/id/6366/adium-x

Similar Messages

  • Does installing mavricks delete the photos in iPhoto please reply fast thanks.

    im in the middle of installing mavricks after you restart your computer but I want to know if It delets your photos from iPhoto please help. And if it does how do I cancel the mavricks installation

    Hello Enzofranklin,
    A Mavericks update should not remove any of your user data. BUT... things can go wrong and you should always have a backup. Do you have a backup? If not a Time Machine backup is very easy to set up. All you need is an external drive with enough space. This article has more info: Mac Basics: Time Machine backs up your Mac
    I don't have an install running in front of my to confirm this but I am pretty sure that you should have a restart option in the top left of the menu bar drop down choices. If you see the option to choose your start up disk, then choose Macintosh HD. You will need to back out of your install and log back into your machine normally to set up Time Machine.
    I hope this helps.
    Morgs

  • JApplet and the Images --PLEASE reply fast

    the problem is i am trying to put a .gif image into JApplet. no matter what i do it just DOESNT WANNA WORK! can anyone please post an example of working one?

    import java.applet.*;
    import java.awt.*;
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    import java.lang.Object.*;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.border.LineBorder.*;
    import javax.swing.border.*;
    import javax.swing.*;
    import java.awt.*;
    import java.applet.*;
    import java.util.Random;
    public class MoveTheSquare  extends JApplet implements ActionListener
         public static int size = 100;
           public     static        int life = 80;
            public     static       int eneLife=50;
         private AudioClip ohboy2= getAudioClip(getDocumentBase(), "ohboy2.wav");
    //      public Image bricks = getImage(getDocumentBase(),"bricks.gif");
        public static void main(String[] args)
            ApplicationFrame frame = new ApplicationFrame();
            frame.setBounds(50, 50, 900, 900);
            frame.setVisible(true);
            new ApplicationFrame();
        private static class ApplicationFrame extends JFrame
            public ApplicationFrame()
            super("Move the Sticky Figure!");
               // setDefaultCloseOperation(EXIT_ON_CLOSE);
                setSize(500, 600);
                JPanel content = new JPanel();
                ((JPanel) getContentPane()).setOpaque(true);
               // new WindowListener(1);
                 ImageIcon bricks = new ImageIcon("bricks.gif");
                 JLabel backlabel = new JLabel(bricks);
                getLayeredPane().add(backlabel, new Integer(Integer.MIN_VALUE));
                backlabel.setBounds(0,0,20000,2560);
                setLocation(500,600);
                  //WindowListener1 = new WindowAdapter() {
                  //public void windowClosing(WindowEvent e) {
                  //System.exit(0);
                  //setVisible(true);
                initUi();
            private void initUi()
                Container cp = getContentPane();
                Image img = getImage(getDocumentBase(), "bricks.gif" );
                cp.add(new MyPanel(img));
                cp.setLayout( new BorderLayout(0, 10) );
              //   addWindowListener1();
                cp.add( new JLabel(" Move the Sticky with the arrow keys:"), BorderLayout.NORTH );
                // Create the playing board and the squar
                Square sq = new Square( new Point(100, 100), 10 );
                Board board = new Board(sq);
                cp.add( board, BorderLayout.CENTER );
                // Register Key Bindings to move the square around. Read about the
                InputMap im = getRootPane().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
                ActionMap am = getRootPane().getActionMap();
                // The LEFT arrow will move the suare to pixels two the left
                MoveSquareAction moveLeft = new MoveSquareAction(board, -3, 0);
                KeyStroke keyStrokeLeft = KeyStroke.getKeyStroke(KeyEvent.VK_LEFT, 0);
                im.put( keyStrokeLeft, "left" );
                am.put( "left", moveLeft );
                // The RIGHT arrow will move the suare to pixels two the right
                MoveSquareAction moveRight = new MoveSquareAction(board, 3, 0);
                KeyStroke keyStrokeRight = KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, 0);
                im.put( keyStrokeRight, "right" );
                am.put( "right", moveRight );
                // The UP arrow will move the suare two pixels up
                MoveSquareAction moveUp = new MoveSquareAction(board, 0, -3);
                KeyStroke keyStrokeUp = KeyStroke.getKeyStroke(KeyEvent.VK_UP, 0);
                im.put( keyStrokeUp, "up" );
                am.put( "up", moveUp );
                // The DOWN arrow will move the suare two pixels down
                MoveSquareAction moveDown = new MoveSquareAction(board, 0, 3);
                KeyStroke keyStrokeDown = KeyStroke.getKeyStroke(KeyEvent.VK_DOWN, 0);
                im.put( keyStrokeDown, "down" );
                am.put( "down", moveDown );
                pack();
        // Class that represents the playing board
        private static class Board extends JPanel
              private Square square;
            public Board(Square sq)
                square = sq;
                setOpaque(true);
                setBorder( new LineBorder(Color.GREEN));
            int x=1;
            public void  paintComponent(Graphics g)
                super.paintComponent(g);
                g.drawImage( img, currentX, currentY, this );
                   if (x==1)
                Point location = square.getLocation();
                String coordX = String.valueOf(location.x);
                String coordY = String.valueOf(location.y);
                String slife = String.valueOf(life);
                    //g.drawImage(bricks, 0, 0, 500, 16, this);
                  g.setColor(Color.red);
                   g.fillRect(240,240,250,250);
                   g.setColor(Color.GREEN);
                   g.fillRect(0,00,40,40);
                   g.setColor(Color.black);
                g.drawLine(location.x-5,location.y+5,location.x,location.y);
                   g.drawLine(location.x+5,location.y+5,location.x,location.y);
                   g.drawLine(location.x,location.y,location.x,location.y-7);
                   g.drawLine(location.x-4,location.y-4,location.x,location.y-7);
                   g.drawLine(location.x+4,location.y-4,location.x,location.y-7);
                   g.fillOval(location.x-3,location.y-15,8,8);
                   g.drawString(coordX,20,20);
                   g.drawString(coordY,20,30);
                   g.drawString("YOUR LIFE:", 00,70);
                   g.drawString(slife,70,70);
                   Random generator = new Random();
                  int takeaway = generator.nextInt(25);
                     int fight = generator.nextInt(50);
                   if (fight==4)
                  x=0;
                 life= life-takeaway;
                  JOptionPane.showMessageDialog(null, "YOU ARE BEING ATTACKED!!!!! YOU LOST HEALTH:" +takeaway);
                    slife = String.valueOf(life);
                 g.drawString(slife,70,70);
                 if (life<=0)
                 JOptionPane.showMessageDialog(null, "you lose. bye.");
                 System.exit(0);
                 if (((location.x>=240) && (location.y>=240)) &&((location.x<=490) && (location.y<=490)))
                 JOptionPane.showMessageDialog(null, "you Win! bye.");
                 System.exit(0);
           Random generator = new Random();
           int fight = generator.nextInt(50);
           if (fight==1)
           x=1;
            public Square getSquare()
                return square;
        // The Action class that implements moving the square:
        private static class MoveSquareAction extends AbstractAction
            // The board this action acts on:
            Board board;
            // The number of pixels to move in the X- and Y-directions:
            int pixelsToMoveX;
            int pixelsToMoveY;
            public MoveSquareAction(Board board, int pixelsToMoveX, int pixelsToMoveY)
                this.board = board;
                this.pixelsToMoveX = pixelsToMoveX;
                this.pixelsToMoveY = pixelsToMoveY;
            public void actionPerformed(ActionEvent e)
                // Move the square and repaint the board:
                board.getSquare().moveX(pixelsToMoveX);
                board.getSquare().moveY(pixelsToMoveY);
                board.repaint();
        // Class that represents the black square we move around
        private static class Square
            private Point     location;
            private int          size;
            public Square(Point loc, int size)
                location = loc;
                this.size = size;
            public Point getLocation()
                return location;
            public int getSize()
                return size;
            public void moveX(int pixels)
                location.x += pixels;
            public void moveY(int pixels)
                location.y += pixels;
        public void actionPerformed(ActionEvent e)
                 ohboy2.loop();//sound
    }

  • Each time I m entering my apple ID in FaceTime then it starts verifying and again I m sent to write password.please reply fast.

    I m not able to sign in to facetime

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • I want to buy iphone 5s gold im from india but i dont want any plans with them can i get only iphone please reply me fast i want to buy this iphone fast as i can

    I want to buy iphone 5s gold im from india but i dont want any plans with them can i get only iphone please reply me fast i want to buy this iphone fast as i can

    http://www.apple.com/in/iphone/buy/
    These are your options

  • Ipod Isn't Putting Out Sound- need reply FAST!!!

    I have a fifth gen. white 30 gb ipod. i have tried many types of headphones and sound outputting devices and none work. no sound will come out of hte ipod with things liek like. i have tried updating it through my g4 tower mac and nothing. any ideas? i have also tried restarting it. i am leaving for a long trip in about one hour and need a reply fast! help!

    Hey, well I know this doesn't make you really feel any better, but you are definetly not alone. Check out this forum topic:
    http://discussions.apple.com/thread.jspa?threadID=1052015&tstart=15
    If this sounds like the same problem, please post at the above topic letting us know your symptoms and whatnot.

  • MY TOSHIBA SATELITE A665 - S6050 IS DRIVING ME NUTS! PLEASE REPLY

    THIS IS THE SECOND TIME IM POSTING THIS. PLEASE REPLY . Hi I am a very frustrated 16 year old boy on the verge of pullling out my hair. this is my problem. My grandpa bought this patop last year march , he passed it down to me in may cause hes not much of a tech person, now ever since he gave me this laptop i noticed problems. in the beginning, anytime you move the laptop slighty or pick it up , if theres any audio activity going on , it will stuttter in sync with the vibration of the laptop. i thought it was the harman kardon speakers but till today im still unsure. then came the problem of my ear jack slowly starting to give up . no ear phone plug or headset plug was able to fit in fully and play complete audio, it would only play quarter or halfway in.but i overlooked these problems cause i had a usb speaker and hey, it was a heck of a laptop , then during summer when i travelled to england , the battery pack just all of a sudden got spoiled and it could "no longer hold a full charge" it could only last for little over an hour thirty minutes.so i bought a new battery pack. no problem uh? lets go on . i had a few games on my previous acer aspire one a0522 and since this new laptop had a core i3 processor that prettty much packed a punch i installed most of the games here cause i am a game freak. the games were : fifa 11 , 13 , 14 , pes 2009 2012 2013 2014 , tom clancy's splinter cell conviction , nfs : carbon , hot pursuit , need for speed both new and old ones , call of duty 4 mw , call of duty black ops II , battle field 2142 battlefield 2 , cod mw 2 burnout etc . all the games were running fine varying from low - high quality settings because of the limited vram 64 mb on the intel hd 3000. i also had photoshops cs5 and 6 . now when i resumed school  everything was how it was, sound stuttering ear jack failing , now a new problem arose , whenever the computer gets a slight hit/bang to thr body , the screen goes black and it would either turn off or restart . i didnt understand this so i decided to remove some startups from ms config and all , i left the important things though like the windows 7 common user bla bla things , and the intel start up drivers as well as the realtek hd audio manager . eventually the problem got worse , when i was using it at times the computer would randomly just shutdown and sometimes it would not come on for hours to almost a day (whever i put it on the screen is just black and the hdd light does not light up) and sometimes it will come on immediately i press the power button . so i was obviously frustrated but managing with the laptop . so eventually the problem got so bad that whenever the computer started up and i ran a program , immediately the fan kicked into full speed , 5 seconds after the thing would just go off on its own , regardless of what program it was , i finally had enough and took it in for repairs . they serviced it and brought it back , everything was fine for one week then the problem started again , everything came back . so this time i went with the laptop for repairs myself and they told me the cpu was the problem that it needed replacement , another shop told me it was the cpu mother board and fan that had problems . so i dont know who to believe. BUT HERE IS A PECULIAR THING. when  i run the laptop on one core (disabled multi core processing in bios) of course the cpu isnt running at full capacity but on that one core it runs for hours fine without shutting down , but it makes some games slow cause not all cores are in use .so i decided to re enable multi core processing and did this : whenever i start a program i immediately go into my task manager and set the affinity of any running programs to one core only (usually cpu 0 in windows 7) then set the affinity of the program i just launched myself to either cpu's 1 ,2 or 3 NOW THIS PROCESS IS WORKING FOR ME SO FAR but i dont know how long it would last and when i run games like fifa 13 o=with this process it plays fine but sometimes it quits in match and there is constant audio lag , but most other games run fine . i downloaded hot cpu tester pro and did the ram test , everything was fine , benchmark test , everything up to standards , but when i did the cpu test (where the test utilises the cpu to a 100% and i know it does cause i can see the cpu usage in the status bar in tassk manger) when the test goes into 15 seconds the laptop goes off again like it used to . so my conclusion is my cpu is the problem but i am still not sure so i am posting this . please help guys. thanks i have done the full system recovery process 3 times but all the problems remain. i am in africa and have limited resources please help.
    specs 
    satelite a665 - 26050
    intel core i3 350 m 2.27ghz
    ram 4 gig 3.80 usable
    64 bit windows 7 home premium 
    intel hd 3000
    downloaded lates bios update from toshiba site here (problems were here before i updated bios , bios update didnt fix anything)
    intel hd 3000 driver - 8.15.1993 - 2010

    Probably this one. 
    Satellite A665-S6050 (PSAW0U-01100G)
    -Jerry

  • HOW CAN I TRANSFER PHOTOS FROM MY IPOD TOUCH TO MY PC BUT THESE PHOTOS ARE NOT IN THE SAVED POTHOS FOLDER. THEY ARE IN SEPARATE AND DIFFERENT FOLDERS THAT MY DAUGTHER SAVED FROM HER PC. IS THERE ANY FREE WAY TO DO IT. PLEASE REPLY TO JUMACAVA07@HOTMAIL.

    HOW CAN I TRANSFER PHOTOS FROM MY IPOD TOUCH TO MY PC BUT THESE PHOTOS ARE NOT IN THE SAVED POTHOS FOLDER. THEY ARE IN SEPARATE AND DIFFERENT FOLDERS THAT MY DAUGTHER SAVED FROM HER PC. IS THERE ANY FREE WAY TO DO IT. PLEASE REPLY TO JUMACAVA07@HOTMAIL.
    THANKS

    If you need to Transfer photos from iPod to PC,I have a method for your reference,I suggest you use iStonsoft iPod to Mac Transfer software to copy photos from iPod to Mac,a professional software,Not only can you quickly Copy pictures from iPod to Computer,but also can save a lot of trouble and time
    [B]Follow these steps to Transfer photos from iPod to Mac[/B]
    Step 1. Download and run the iStonsoft iPod to Mac Transfer software on your Mac computer
    Step 2. Connect iPhone with Mac
    Step 3. Hit "Photos" to scan photos from iPod to Mac
    Step 4. Click "Photos" button to transfer photos from iPod to Mac
    Step 5. Wait a while,you will success Transfer these photos from iPod to Mac
    How to Transfer/Copy Photos/Pictures from iPod to Mac computer

  • I would like to send pics from my windows computer to my iPhone using bluetooth. I had it paired but somehow it cannot the download the software and is asking to usa a disk instead. Where or how can I download the software available for that, please reply

    I would like to send pics from my windows computer to my iPhone using bluetooth. I had it paired but somehow it cannot the download the software and is asking me to usa a disk instead. Where or how can I download the software available for that, please reply... thaks. (",)

    Bluetooth file transfer has never been supported with iOS devices.

  • Explain exactly how to get video on my ipod PLEASE REPLY

    yea ive been trying to figure it out but im really bad with computers so i bsaically have no idea what to do and also i have a another question.... now since the new itrips go into ur dock connector how am i supposed to charge it in the car. PLEASE REPLY because im starting to think if i should just give this one back and get my photo back

    For video, since you're on Windows, you're going to want to look at using Videora iPod Convertor.
    To use Videora iPod Convertor to convert movies for use on your iPod, consult these helpful links:
    To get started: Videora iPod Convertor Guide
    If you have questions: Videora iPod Convertor Frequently Asked Questions
    If you have more questions, post them here: Videora iPod Convertor Forum
    Note that Videora iPod Convertor is a 3rd party program. If you need help with it, post your question there.

  • Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

  • Please reply ASAP

    Hi
    I have Microsoft Windows Server 2003 R2 standard X64 Edition.I tried to install oracle 9i(9.2.0.1 32 bit for windows) on this server but installation was never successful. Do i need to go for a Oracle 9i(9.2.0.1 64bit for windows) or any other problem? Even i completely remove windows server and reinstall it completely but still problem is there. Please reply me ASAP as this is our production server.
    Thanks.
    Regards,
    RJ.

    From Oracle:
    32-bit Information
    Currently this platform is ONLY certified 32-bit Oracle on a 32-bit operating system.
    There is only 32bit 9i available for 32bit OS on this platform, even if hardware architecture is 64bit. So you need either Windows 32bit or you have to go for 10g.
    Werner

  • .PLEASE REPLY. is the ios6 out? btw Siri is it only ipad 3? or also ipad 2. cus i only have ipad 2. PLEASE SAY IT WORKS ON ipad 2!!!!!!!

    PLEASE REPLY. is the ios6 out? btw Siri is it only ipad 3? or also ipad 2. cus i only have ipad 2. PLEASE SAY IT WORKS ON ipad 2!!!!!!!

    thanks i actually knew it. i just wished and hoped that it would work on ipad 2 and thought .*** THIs... i dont even know what im saying

  • PLEASE REPLY! HELP TRANSFERING SONGS

    Well, I decided that I needed to make my main libarary at another computer, so I plugged in the ipod at the new computer and went through the steps. All the songs that I had bought from iTunes appeared, but none of the songs I had uploaded from CD's. How do i get those songs on my libary without deleting them from my iPod when updating? Please Reply, it's much appreciated.
    ~ Rebecca.

    Hi Rebecca,
    If iTunes is displaying a message to you, asking if you would like to "Erase or Sync", please be sure to click on "Cancel" and not "Erase and Sync"; this will delete all of your other music off your iPod.
    After you've done that, click on your iPod's name in the Source List, and under the "Summary" tab, tick the "Manually manage" option for your iPod. Click the “Apply” button in the bottom-right corner to save your changes.
    Now onto the transferring.
    There are a few different ways to copy your iPod's songs to your computer, but probably the most straightforward method is to download a third-party program that can copy the songs from your iPod to your computer.
    I would suggest that you try YamiPod. It's free, and I've heard it recommended a lot.
    -Kylene

  • HI is updated iOS 7.1.1 show full screen contact image??? I'm going 2 update and tell me wat kind of features updated in iOS 7.1.1 please reply me

    HI is updated iOS 7.1.1 show full screen contact image??? I'm going 2 update and tell me wat kind of features updated in iOS 7.1.1 please reply me

    No, when you get a call it's a small round image of your contact if you have set it up.
    http://support.apple.com/kb/DL1736

Maybe you are looking for

  • Creative ZEN - is it possible to organise the files in map

    I have an iPod where mp3-files are organised according to the tag-data (album - artist - genre etc). But I would like another mp3 player where my mp3-files are organised in maps like they are on my PC. So my question is if that is possible on the Cre

  • Error in Scheduled Task in CF 10 Standard Edi.

    Hi Team, Currently we are facing an issue in Scheduled Tasks options in ColdFusion 10 while we attempting to schedule some tasks. We are using the same facility successfully in ColdFusion 7 Standard edition up to now and the Schedule Tasks works perf

  • Problem with Thread.sleep()

    hi all, I am trying Thread.sleep() method to introduce a delay. In the program i ask the user to specify the value to be entered in Thread.sleep() (to indicate the amount of delay desired by the user). but strangely, if a low value is entered, i get

  • Edit plan page is not working !! (urgent)

    i want to change my credit cart information for renew my plan but when i opened the edit plan page i can't see anything at all. i can't use my program without renewing my plan so i really need to change my payment details. what can i do ? thank you

  • PT 8.46 / CRM 8.8 (ERMS) - Timeouts?

    At my current client there are issues with emails having large attachments; those attachments are not stored on the server. We checked timeouts on app server / web server (profile) / process scheduler but this doesn't seem to be an issue, they should