Check this... helpppppppppppppp

hi,
test this please, my prob is when i draw a rectangle, they go under the "dessin" panel btu when you presse where you makle the rectangle, you know that is there.. please help me, i dont know what to do.... To draw rectangle just press the JRadioButton rectangle and click 2 time to a different point...
thx to help me
sorry for my english
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.border.*;
import java.util.*;
//les types de formes 1=filloval , 2=rectangle
public class DragD extends JApplet
    //debut declaration
    boolean bpointRect = false;
    int pointRect1[] = {0,0};
    int pointRect2[] = {0,0};
    int xValue=-10, yValue=-10;
    Container pan;
    JPanel config, dessin, info;
    JRadioButton rbRect, rbMainLever;
    JLabel lPxy;
    JMenu mAbout;
    JMenuItem mIAbout;
    JMenuBar menubar;
    //debut fct init
    public void init()
        getContentPane().setSize(500,500);
        //set menu
        mAbout = new JMenu("About");
        mIAbout = new JMenuItem("About");
        menubar = new JMenuBar();
        mAbout.add(mIAbout);
        menubar.add(mAbout);
        this.setJMenuBar(menubar);
        //fin set menu
        config = new JPanel();
        dessin = new JPanel();
        info = new JPanel();
        rbRect = new JRadioButton("Rectangle");
        rbMainLever = new JRadioButton("Main Lever", true);
        lPxy = new JLabel("0,0");
        config.add(rbMainLever);
        config.add(rbRect);
        info.add(lPxy);
        //colorer les panel
        config.setBackground(Color.lightGray);
        dessin.setBackground(Color.white);
        info.setBackground(Color.blue);
        dessin.setLayout(null);
        //add les JPanel
        getContentPane().add(config,"North");
        getContentPane().add(dessin,"Center");
        getContentPane().add(info,"South");
        //creer des forme
        dessin.add(new JP(1,4,4,4,4));
        dessin.add(new JP(2,4,4,4,4));
        //set le border
        menubar.setBorder(new MatteBorder(1,1,1,1,Color.black));
        config.setBorder(new MatteBorder(1,1,1,1,Color.black));
        dessin.setBorder(new MatteBorder(1,1,1,1,Color.black));
        info.setBorder(new MatteBorder(1,1,1,1,Color.black));
        //debut listener on mouse dragged
        dessin.addMouseMotionListener(
            new MouseMotionListener(){
                public void mouseDragged(MouseEvent event)
                    xValue=event.getX();
                    yValue=event.getY();
                    // g.fillOval(xValue,yValue,4,4);
                    positionDessin(event);
                public void mouseMoved(MouseEvent event)
                    positionDessin(event);
        //fin listener
        //debut listener on mouse clicked
        dessin.addMouseListener(
            new MouseListener(){
                public void mouseClicked(MouseEvent event)
                    xValue=event.getX();
                    yValue=event.getY();
                    //Graphics g;
                    //g = dessin.getGraphics();
                    if (xValue != -10)
                        //dessine les rectangle
                        if (rbRect.isSelected())
                            creerRectangle();
                        //debut dessin a main lever
                        else
                            // g.fillOval(xValue,yValue,4,4);
                     //setContentPane(getContentPane(pan));
                //declaration vide
                public void mousePressed(MouseEvent event){}
                public void mouseReleased(MouseEvent event){}
                public void mouseEntered(MouseEvent event){}
                public void mouseExited(MouseEvent event)
                    lPxy.setText("0,0");
       //fin listener
       //debut action listener rbrect
       rbRect.addActionListener(
        new ActionListener(){
            public void actionPerformed(ActionEvent event)
                if (rbMainLever.isSelected())
                    rbMainLever.setSelected(false);
       //fin listener
       //debut action listener rbrect
       rbMainLever.addActionListener(
        new ActionListener(){
            public void actionPerformed(ActionEvent event)
                if (rbRect.isSelected())
                    rbRect.setSelected(false);
       //fin listener
       //debut listener du menu about
       mIAbout.addActionListener(
        new ActionListener(){
            public void actionPerformed(ActionEvent event)
                JOptionPane.showMessageDialog(null,"test");
       //fin listener
    //fin de la fct init
    //debut fct creerrectangle
    public void creerRectangle()
        if (bpointRect == false)
            pointRect1[0] = xValue;
            pointRect1[1] = yValue;
            bpointRect = true;
        else
            pointRect2[0] = xValue;
            pointRect2[1] = yValue;
            bpointRect = false;
            if ((pointRect1[0] < pointRect2[0]) & (pointRect1[1] < pointRect2[1]))
                dessin.add(new JP(2,pointRect1[0],pointRect1[1],pointRect2[0]-pointRect1[0],pointRect2[1]-pointRect1[1]));
            else
                if ((pointRect1[0] > pointRect2[0]) & (pointRect1[1] < pointRect2[1]))
                    dessin.add(new JP(2,pointRect2[0],pointRect1[1],pointRect1[0]-pointRect2[0],pointRect2[1]-pointRect1[1]));
                else
                    //fct pas
                    if ((pointRect1[0] > pointRect2[0]) & (pointRect1[1] > pointRect2[1]))
                        dessin.add(new JP(2,pointRect2[0],pointRect2[1],pointRect1[0]-pointRect2[0],pointRect1[1]-pointRect2[1]));  
                    else
                        if ((pointRect1[0] < pointRect2[0]) & (pointRect1[1] > pointRect2[1]))
                            dessin.add(new JP(2,pointRect1[0],pointRect2[1],pointRect2[0]-pointRect1[0],pointRect1[1]-pointRect2[1]));  
            //remettre la sauvegarde des pts a zero apres avoir dessiner un rectangle
            pointRect1[0] = 0;
            pointRect1[1] = 0;
            pointRect2[0] = 0;
            pointRect2[1] = 0;   
    //fin fct rectangle
    //debut fct position dessin
    public void positionDessin(MouseEvent event)
        int x,y;
        String sx, sy;
        x = event.getX();
        y = event.getY();
        sx = Integer.toString(x);
        sy = Integer.toString(y);
        lPxy.setText(sx + "," + sy);
    //fin fct position dessin
    //debut de la classe interne JP
    class JP extends JComponent implements MouseListener, MouseMotionListener
        int x;
        int y;
        int w;
        int h;
        int type;
        int mx,my;
        Cursor movC = new Cursor(Cursor.MOVE_CURSOR);
        Cursor defC = new Cursor(Cursor.DEFAULT_CURSOR);     
        //debut constructeur JP
        public JP(int i,int xx, int yy, int ww, int hh)
            x=xx;
            y=yy;
            w=ww;
            h=hh;
            type = i;
            setBounds(x,y,w,h);
            addMouseListener(this);
            addMouseMotionListener(this);
        //fin du constructeur
        //debut de la fct paintComponent
        public void paintComponent(Graphics g)
            if (type == 1)
                g.fillOval(x,y,w,h);
            if (type == 2)
                g.fillRect(x,y,w,h);
        //fin de la fct paintComponent
        //debut du listener moussePressed
        public void mousePressed(MouseEvent m)
            mx = m.getX();
            my = m.getY();
            setBorder(new MatteBorder(1,1,1,1,Color.red));
        //fin du listener
        //debut du listener mousseDragged
        public void mouseDragged(MouseEvent m)
            if (getCursor() != movC)
                setCursor(movC);
            setLocation(getX()+m.getX()-mx,getY()+m.getY()-my);
        //fin du listener
        //dedut du listener mousseReleased
        public void mouseReleased(MouseEvent m)
            setBorder(null);
            setCursor(defC);
        //fin du listener
        public void mouseEntered(MouseEvent m){}
        public void mouseExited(MouseEvent  m){}
        public void mouseMoved(MouseEvent   m){}
        public void mouseClicked(MouseEvent m){}
    //fin de la classe interne
}thx!!!!!

Instead of using dessin.add( new JP...);
use dessin.add(new JP... , 0);
The last added rectangle will be the first painted.
Denisdont work ;(

Similar Messages

  • While trying to run it show error message : "The application or DLL C:\Program Files\Mozilla Firefox\sqlite3.dll is not a valid Windows image. Please check this against your installation diskette

    Just updated firefox. While trying to run it show error message : "The application or DLL C:\Program Files\Mozilla Firefox\sqlite3.dll is not a valid Windows image. Please check this against your installation diskette." Tried to download and install new firefox, but it alway show that the file is corrupt
    == Today ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)

    Do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can skip the step to create a new profile, that is not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Check this game 4 me please

    In my country, Samsung had opened a Game Development Challenge. There's a game that i think they coppied from the other source code. So , i post this topic to need the support from you. Please check this game for me . If it was coppied from any source, please sent to me URL. Thanks. You can download it from http://www.samsungmobilegames.com.vn/view/vn/gamedetail.asp?game_id=46 . Thanks alot...

    For one, I don't speak the language that site was in.
    And be more specific! Copied the source from what?

  • Error in Code?-PlZ Check This

    Hai,
    We are getting an error in this code.We are beginners in Flex.
    Can anyone help us?
    This is our code....
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
    <mx:Script>
        <![CDATA[
            import flash.media.Camera;
            import flash.media.Microphone;
            private function init():void
                cam.dataProvider=Camera.names;
                mic.dataProvider=Microphone.names;
            private function send():void
                //var camera:Camera=Camera.getCamera();
                var micro:Microphone=Microphone.getMicrophone();
                micro.addEventListener(StatusEvent.STATUS, this.onMicStatus);
                private function onMicstatus(event:StatusEvent):void
                    if(event.code == "Microphone.Unmuted")
                        trace("Microphone access allowed");
                    else if(event.code == "Microphone.Muted")
                        trace("Microphone access denied");
        ]]>
    </mx:Script>
        <mx:Panel x="265" y="50" width="294" height="200" layout="absolute">
            <mx:VideoDisplay x="0" y="0" width="274" height="160"/>
        </mx:Panel>
        <mx:Button x="381.5" y="314" label="Start" click="send()"/>
        <mx:Text x="281" y="24" text="Username" id="uname"/>
        <mx:TextArea x="351" y="24" height="18" width="150"/>
        <mx:Text x="281" y="260" text="Camera" width="62"/>
        <mx:ComboBox x="351" y="258" width="191" id="cam"></mx:ComboBox>
        <mx:Label x="273" y="286" text="microphone"/>
        <mx:ComboBox x="351" y="284" width="191" id="mic"></mx:ComboBox>
    </mx:Application>
    ERROR:-
    1013: The private attribute may be used only on class property definitions.    videovoice/src    videovoice.mxml    line 23    1267425378537    662

    First of all, check Permit Debugging in publish settings so you can at least reference a line number. It's not very realistic to post 150 lines of code, and say guys can you check this.
    Anyway from a cursory glance it looks like you only create 27 bricks:
    for (var i=0; i<9; i++)
    for (var j=0; j<3; j++)
    bricks = new brick(i,j);
    Brick_Array.push(bricks);
    And then later you do this:
    for (var k=0; k<100; k++)
    if (Ball.hitTestObject(Brick_Array[k]))
    You don't have 100 bricks in Brick_Array.
    Also - as a matter of convention variables names should not have the first letter capitalized - that is for class naming.

  • Email virus that says check this out

    My wife got an email from a friend that said "check this out".  Of course she opened it and now she cannot use Facebook--any ideas on what this is and how to fix it?

    What OSX version?
    ClamXAV, free Virus scanner...
    http://www.clamxav.com/
    Free Sophos...
    http://www.sophos.com/products/enterprise/endpoint/security-and-control/mac/
    Little Snitch, stops/alerts outgoing stuff...
    http://www.obdev.at/products/littlesnitch/index.html

  • ABAPer to check this manually & not through SNOTE.:  if the note - 1037685

    Could you please check if the note - 1037685 is present in your system.
    Please ask your ABAPer to check this manually & not through SNOTE.
    Regards,
    Ashutosh

    Check the release that note is coming in by going to SAP service marketplace, and then check the release of the system that you are using.
    If you are on equal or higher release then that note is available in your system.
    G@urav.

  • [svn] 3793: Alpha checkin - checking this in on behalf of Paul a fix for SDK-17698.

    Revision: 3793
    Author: [email protected]
    Date: 2008-10-21 13:25:39 -0700 (Tue, 21 Oct 2008)
    Log Message:
    Alpha checkin - checking this in on behalf of Paul a fix for SDK-17698. Paul's change now means advanced CSS functionality is available by default and -keep no longer needs to be specified.
    QE: Yes
    Doc: No
    Checkintests: Pass
    Styles Mustella Tests: Pass
    Reviewer: Pete
    Bugs:
    SDK-17698 - [Advanced CSS] You need to compile with -keep to get Advanced CSS to work (because of direct AST generation)
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17698
    http://bugs.adobe.com/jira/browse/SDK-17698
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/ImplementationGenerator.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/MxmlDocument.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java

    I removed the src/ directory and ran makepkg and it succeeded. Pacman -U kernel.pkg.tar.gz also worked. Now all that's left is rebooting and trying.
    Thanks everyone.
    OK, I guess it's not over yet. I rebooted in the new kernel, but it says it can't find /dev/sda3 (which is my / partition).
    This is my grub entry:
    title Arch Linux Gigamo
    root (hd0,2)
    kernel /boot/vmlinuz26 root=/dev/sda3 ro
    initrd /boot/kernel26-gigamo.img
    Okay well, I didnt realise there was a vmlinux26-gigamo as well. Will see if that fixes it.
    Last edited by Gigamo (2008-03-12 16:53:22)

  • Delete function--check this out

    hey I pretty much just started with Ipod and Itunes.
    The first time you delete a song from your Ipod or Itunes library it prompts you to let you know you are deleting something and make sure you're not accidentally you're deleting something you want. Underneath that theres a small checkbox and next to the box it says "Check this box to not recieve this message again," or something to that effect. Stupid me, I checked this box and now its really easy to delete files from my Ipod, if I accidentally hit backspace or delete it deletes the song forever. luckily i have most these files backed up. Still I would like to return to the default setting of having Itunes prompt me before I delete a file...is there any easy way of doing this?
    Thanks,
    newbie
    60g Ipod photo   Windows XP  

    Go here and follow Scotts steps for deleting the pref file http://discussions.apple.com/message.jspa?messageID=607357

  • RE: (forte-users) Check this ( -----THIS MESSAGE WASA VIRUS!!!!!)

    The previous message (Check this) is a known virus.
    (Either that or the sender is emulating it.
    Either way, do not open the attachment as you will not have "fun" at all.
    Delete the message immediately.
    Of course, if I am wrong then I am an idiot!
    Don't take the chance.
    -----Original Message-----
    From: Slabbert, Etienne [mailto:etiennemds.co.za]
    Sent: Friday, 18 February 2000 0:12
    To: forte-userslists.xpedior.com
    Subject: (forte-users) Check this
    Have fun with these links.
    Bye.

    Il suffit de mettre les BTD/BTX sur un drive r&eacute;seau (net use X:
    \\server\share_point),
    puis d'installer des ic&ocirc;nes pour les clients: ftexec -fi bt:x:\MyApp.
    Pour que les noeuds ne s'auto-enregistrent pas, peut-&ecirc;tre mettre un password
    Ou bien d&eacute;finir les noeuds comme un 'groupe' et donc seul le groupe est
    connu.
    Si mettre le mot de passe suffit pas, et si vraiment le model node g&ecirc;ne,
    alors il
    faut un autre environment manager.
    I think that to avoid install, the software could be located on a shared
    drive,
    and users linking to it through running 'ftexec' or directly the compiled
    binaries.
    For nodes not to appear in the environment as nodes, they could be defined
    as members
    of a model node '(which then would be in the environmnet)'
    Putting a password in the environment could prevent nodes to be registered
    there, but
    might prevent the apps from being executed.
    Cheers,
    j-paul gabrielli
    Sema DTS
    -----Message d'origine-----
    De: Thomas Felix [mailto:tfelixaxialog.fr]
    Date: mardi 2 mai 2000 14:14
    &Agrave;: forte-userslists.xpedior.com
    Objet: (forte-users)
    bonjour a tous
    je souhaites installer une application distribu&eacute;e sur des postes clients.
    Y'a t'il moyen de ne pas installer les noeuds de ces postes clients sur l'
    active environnement li&eacute; au d&eacute;veloppement et si oui comment?
    hi
    I would like to install an application on clients workstation
    Can i install this nodes in a different Active environnement than this one
    that we use for the developpement ?
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

  • 2 records updated plz check this

    my requirement is update the database table zfmkstel with nrart = 'h' and proz1 = '100'. i m writting below logic two records udate like this
    123455(tenum)         h                  100
    123455(telnum)        -                     -
    my logic is
        when 'SAVE'.
          IF f1_rec ne 1 .
          if sy-subrc = 0.
          update zfm_handy from fs_temp_zfm_handy.
            insert zfm_handy from fs_temp_zfm_handy.
            MODIFY zfm_handy from fs_temp_zfm_handy.
           if sy-subrc = 0.
           insert zfmkstel from fs_temp_zfmkstel.
            if sy-subrc = 0.
              fs_temp_zfmkstel-telnum = fs_temp_zfm_handy-telnum.
             fs_temp_zfmkstel-nrart = fs_temp_zfm_handy-nrart.
             fs_temp_zfmkstel-proz1 = fs_temp_zfm_handy-proz1.
             fs_temp_zfmkstel-nrart = 'H'.
             fs_temp_zfmkstel-proz1 = '100'.
              INSERT ZFMKSTEL FROM FS_TEMP_ZFMKSTEL.
                       fs_temp_zfmkstel-nrart = 'H'.
                          fs_temp_zfmkstel-proz1 = '100'.
               insert into zfmkstel values fs_temp_zfmkstel.
              commit work.
              if sy-subrc = 0.
                message s000(0) with 'record havebeen inserted sucessfully'.
            MODIFY ZFMKSTEL FROM FS_TEMP_ZFMKSTEL.
              else.
                delete zfm_handy from fs_temp_zfm_handy.
              endif.
            endif.
          else.
            update zfm_handy from fs_temp_zfm_handy.
            if sy-subrc eq 0.
              fs_temp_zfmkstel-telnum = fs_temp_zfm_handy-telnum.
              update zfmkstel from fs_temp_zfmkstel.
             if sy-subrc eq 0.
             message s000(0) with 'update sucessfully'.
           endif.
            endif.
          endif.
           endif.

    hi
    do u have a problem with updating the records, i mean do u want update 2 records into the DB table with the same fields
    check if the records have the same primary fields, if they have same primary fields then it will not update in the Z Table
    check this code
          READ TABLE IT_VBRK WITH KEY VBELN = T_VBRK_VBRP-VBELN.
          IF SY-SUBRC = 0.
            T_VBRK_VBRP-FKDAT = IT_VBRK-FKDAT.
            MODIFY T_VBRK_VBRP  TRANSPORTING FKDAT
                      WHERE VBELN = IT_VBRK-VBELN.
          ENDIF.
    this will simulatenously update all the records which have same VBELN
    award points if found helpful

  • After renaming my MAC hard drive, Acrobat, Illustrator and Bridge fail to launch. Acrobat returns the error message "An internal error occurred". I've checked this out and it seems related to user permissions. The version is Acrobat X. My machine has mult

    After renaming my MAC hard drive, Acrobat, Illustrator and Bridge fail to launch. Acrobat returns the error message "An internal error occurred". I've checked this out and it seems related to user permissions. The version is Acrobat X. My machine has multiple user accounts. Any help would be appreciated. I renamed the drive to its original name but to no effect. RR

    I resolved the issue.
    The problem is indeed a permissions issue with the Adobe Application Support folder.
    First, in MAC OS Lion the ~/Library/ folder is hidden by default. You must unhide it in order to proceed. (if it is already visible in your ~/User/ folder, proceed to Step 4.)
    Next launch the Terminal application.
    At the command line, paste the following command line: chflags nohidden ~/Library/
    Go to /Users/youruserid/Library/Application Support/Adobe
    Get info on the ~/Adobe folder and reset your permissions to read/write and apply to all enclosed folders
    Problem solved. RR

  • Users report slow performance - how can I check this

    Users are telling me that performance has suddenly become slow.
    Is there someway I can check this is correct, ie. its not just the users perception at a partiluar point in time.
    The system seems to be normal to me.

    hi,
    if someone says suddenly the database performance slow, please check your database host and any particular process takes lot of resource or check the box load or any unusual things happening on the host level.
    if any session id taking lot of resource check what is going on this spid and try to kill or try tune like creating index.
    thanks
    Veera

  • Help me check this coding!

    The following is my coding which is my assignment. i doubt i have logic problem. So, help me check this about multi-thread.
    if it's wrong which you find, help me correct.I have thought this several days, but till now, i have no any good idea to correct.
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class WebServer extends Thread{
    public WebServer(int port,int timeOut,int maxUser){
    public void run(){
    for (int i=0;i<=maxUser;i++){
    Thread t=new Thread(new HTTPRequest());
    t.start();
    while(true){
    Socket connectionSocket;
    try{
    connectionSocket=server_Socket.accept();
    HTTPRequest.processRequest(connectionSocket);
    }catch (IOException e){}
    public static void main(String args[]) throws Exception{
    class HTTPRequest implements Runnable{
    private static List pool= new LinkedList();
    public static void processRequest(Socket v_socket) throws IOException{
    synchronized(pool){
    pool.add(pool.size(),v_socket);
    pool.notifyAll();
    public synchronized void run(){
    while(true){
    socket=null;
    synchronized (pool){
    while(pool.isEmpty()){
    try{
    pool.wait();
    }catch(InterruptedException e){}
    socket=(Socket)pool.remove(0);
    try{
    }catch (IOException e){}
    finally {
    try{
    }catch (IOException e){}

    You don't have a specific problem right?
    I don't see anything terribly wrong with it.
    Other stuff:
    Why is WebServer a thread? Will there be more than one?
    Use notify() not notifyAll(). You are only adding one object so only one thread needs to service it.
    The run() loop for HTTPRequest does not exit after serving a socket right. Hard to tell from your posting without code blocks.
    Don't forget to close the sockets.

  • New Users Please Check This Logic 7 Quick Tours Out, Its Pretty Good

    Please Before Asking Further Question Make Sure You Check This Out First
    http://www.apple.com/logicpro/quicktours/
    Its Not As Detailed As Martin Sitter's But For A Free Tours Its Great
    I hope Mike C The Moderator Will Keep A Link On The Top Just Like The Other Yellow Link
    $ta$h

    lol, yeah I heard great things aobut that video, but didn't get it yet. I am still weeding through the great Apple Pro Series books, and I am concentrating right now on getting the right sound out of my guitar and voice, since i am far enough in logic to be able to do that first. I think sometimes we lose focus in getting to know everything a tool can do, v/s composing and concentrating on the music and the sound.
    I'm hoping to post something to the other thread on forum music after this weekend, where I'll have the time to record with my new Rode K2 and my new Focusrite ISA 220. I have no more excuses to not get it right.
    R

  • Mirror server missing file.... does anyone check this stuff?

    I just came across a problem with a repo mirror....
    pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    error: cannot resolve "libjpeg>=7", a dependency of "ffmpegthumbnailer"
    error: failed to prepare transaction (could not satisfy dependencies)
    :: ffmpegthumbnailer: requires libjpeg>=7
    Seemed odd to me as libjpeg was updated to 7 several days ago.
    pacman -Q libjpeg
    libjpeg 6b-6
    ???? So extra is up to date but I still have an old libjpeg.
    I live in Thailand and decided to use the Australian mirrors. I checked on the first server in my mirrorlist,
    Server = ftp://mirror.aarnet.edu.au/pub/archlinux/$repo/os/i686, and saw that libjpeg is absent from Extra. Not even an old version, just totally missing!
    Ok, the solution is simple.... use another mirror.
    But clearly this is a pain is the a$$. How can one know which servers are reliable and up to date?
    Does anyone check this stuff? Perhaps a script could be run that checks the contents of the mirrors against the main server, and posts the results on the Arch website where users can check?
    Cheers, Renners

    jwwolf wrote:http://users.archlinux.de/~gerbra/mirrorcheck.html
    LoL, marvelous!

  • Hey guys check this out!!

    I though that Tiger was only able to run in apples pcs I guess not....this is crazy.
    Check this out http://os-emulation.net/pearpc/web/tiger.html I have never seen this before Have you guys?

    PearPC is a Mac emulator. It creates a virtual Mac on the Windows box, similar to (but the opposite of) Microsoft's Virtual PC for Mac.
    I'd guess it's slow and unreliable, but certainly possible.

Maybe you are looking for

  • Movie from laptop to ipad?

    hi, how do i make a movie that i bought from itunes on laptop play on my ipad?

  • A query with row and colum numbers?

    Hello, i have my java code divided into if conditions and in each if clause i need to select a certain field from a table. Is it somehow possible to select a table field which for example is in the third row and fifth column? So basically, how to sel

  • Move library from 1 computer to another help

    I moved it and all that jazz. But when i try to play it, it can't be found. Thanks

  • Questions about tuning the USRP packet -based link examples

    Hi everyone,    Today I do some tests and tunning on the USRP packet-based link examples, and I find these questions:    First I set the following parameters to the Packet Transmitter.vi: Tx frequency=2441M, samples per symblol=8, sample rate=800k, t

  • Solaris Express Login Problem

    Hello, I'm a complete rookie with Sun & Solaris, so any help someone could offer would be greatly appreciated! I have a SunBlade 1500 (SPARC) that I purchased from university surplus. The hard drive was wiped, so I needed to install an OS. I don't ha