How to make line-in come out rear speakers? (SB Live! 5

Card is SB Li've! 5. DE and OS is XP SP2:
================================
I have tried everything that I can think of. It was working fine until I installed a program which screwed up my mixer settings. I have loaded the default mixer settings. Now my rear speakers only work for wave devices, but not line-in.
Is there a way to make line-in come out both the front and rear speakers, or set the rear speakers to duplicate the front speakers (losing the surround feature)?
Failing that I will have to resort to plugging both sets of speakers into the one socket via an adapter - I don't wish to do this as I had this working for many months.
Please help.
grol
Message Edited by groslchie on <SPAN class=date_text>-2-2005 <SPAN class=time_text>07:22 AM
Message Edited by groslchie on -2-2005 07:23 AM

Weird. I just installed Creative PlayCenter from the driver CD and after the reboot, line-in now comes out the rear speakers again. Must've been some system files updated or something, because CMSS is still off according to PlayCenter. When I turn CMSS on, the line-in stops coming out rear, but turning it off makes it work!!!! So it's sorted, but still have no idea why it screwed up and why I needed PlayCenter installed to change the CMSS settings.

Similar Messages

  • Cs6 how to make 2d map come out of 3d earth

    Hiya.
    I have a pic of earth...like this...
    and a map graphic like this...
    the background of both images is alpha ( transparent ). I wanna put the map over the earth and bend it so it conforms to the earth shape kinda close to the the scale and position the earth pic shows...
    Then ( using scale position etc ) I basically dip to black for the earth pic and bring up the map graphic as it sorta gets lifted off the surface of that earth pic.
    In other words, we start tight on the earth like you see...and this map pic conforms to that ( even though it's not visible yet ). Now I dip to black on earth pic and bring map pic UP to visible at same time ( sorta a cross dissolve..)
    At the SAME time ( over about 10 secs ) I now am changing the scale of BOTH so that I end up seeing the pic of map graphic in the end...and no earth pic at all.
    But I want to go from the map graphic being conformed to the curvature of the earth pic.. to the flat 2d end pic you see here at the same time.
    Basically, we see earth, we start to see earth fade as map ( which matches curvature of earth and scale ) comes up...and then the whole transition also scales DOWN so that in end of 10 secs or so.. we see the end pic of map graphic.
    I am a new AE user.
    thanks !

    You should start with two orthographic images, one a map, one the earth:
    http://awka.sourceforge.net/Day_lrg.jpg
    Line them up, apply both as textures for a CC Sphere. You'll end up with two sphere layers. Put the map on the top copy.
    Animate opacity of the Map Sphere and start pushing in on both layers.
    Add a copy of your map layer as a flat 2D layer. Add the bulge effect and line up the image so it matches the map on the sphere.
    Animate opacity and the bulge effect and move your map layer into position.
    There are dozens of ways to do what you want, this is only one idea.

  • How to make lines I draw as an objects??

    Hi friends:
    I met a problem here, I find a similiar code below, but cannot solve it.
    How to make lines I draw as objects in this application??
    ie the lines I draw will be selectable as other JLabels, can be highlighted, can be deleted etc, just like any other components or object,
    How to do this??
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.util.Vector;
    import java.lang.reflect.Array;
    import javax.swing.*;
    import javax.swing.event.*;
    public class Drawines
         public static void main(String[] args)
            JFrame f = new JFrame("Draw Lines");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new ConnectionPanel());
            f.setSize(400,300);
            f.setLocation(200,200);
            f.setVisible(true);
    class Drawines extends JPanel
        JLabel                                       label1, label2, label3, label4;
        JLabel[]                       labels;
        JLabel                                       selectedLabel;
        protected              JButton btn            = new JButton("DrawLines");
        protected              JButton btn1           = new JButton("Clear");
        protected              JButton btn2           = new JButton("No Draw");
        protected                      boolean isActivated = false;
        protected           int      stoppoint     = 0;          
        int cx, cy;
        Vector order                     = new Vector();
        Vector order1                     = new Vector();
        Object[] arr                    = null;
        public ConnectionPanel()
            setLayout(null);
            addLabels();
            label1.setBounds( 25,  50, 125, 25);
            label2.setBounds(225,  50, 125, 25);
            label3.setBounds( 25, 175, 125, 25);
            label4.setBounds(225, 175, 125, 25);
            btn.setBounds(10, 5, 100, 25);
            btn1.setBounds(100, 5, 100, 25);
            btn2.setBounds(200, 5, 100, 25);
                add(btn);
             add(btn1);
             add(btn2);
            determineCenterOfComponents();
            ComponentMover mover = new ComponentMover();
             ActionListener lst = new ActionListener() {
                 public void actionPerformed(ActionEvent e) {
                     ComponentMover mover = new ComponentMover();
                           addMouseListener(mover);
                           addMouseMotionListener(mover);
                           isActivated = false;
            ActionListener lst1 = new ActionListener() {
                       public void actionPerformed(ActionEvent e) {
                           isActivated=true;
              btn.addActionListener(lst);
              btn1.addActionListener(lst1);
        public void paintComponent(final Graphics g)
             super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
             Point[] p;
                System.out.println("order.size()"+ order.size());
                System.out.println("order1.size()"+ order1.size());
                     if (!isActivated && order1.size()==0) {
                         for(int i = 0 ; i < order.size()-1; i++) {
                                JLabel l1 = (JLabel)order.elementAt(i);
                               JLabel l2 = (JLabel)order.elementAt(i+1);
                               order1.add(order.elementAt(i));
                               order1.add(order.elementAt(i+1));
                               System.out.println();
                               p = getCenterPoints(l1, l2);
                               g2.setColor(Color.black);
                                            g2.draw(new Line2D.Double(p[0], p[1]));            
                     }else if(!isActivated && order1.size()>0){
                             order=order1;
                         for(int i1 = 0 ; i1 < order.size()-1; i1++) {
                               JLabel l1 = (JLabel)order.elementAt(i1);
                               JLabel l2 = (JLabel)order.elementAt(i1+1);
                               System.out.println();
                               p = getCenterPoints(l1, l2);
                               g2.setColor(Color.red);
                                g2.draw(new Line2D.Double(p[0], p[1]));    
                                System.out.println(" order1.size() = " + order.size());
                     }else {
                          order1 = order;
                         for(int i1 = 0 ; i1 < order1.size()-1; i1++) {
                                    JLabel l1 = (JLabel)order1.elementAt(i1);
                                    JLabel l2 = (JLabel)order1.elementAt(i1+1);
                                    p = getCenterPoints(l1, l2);
                                    g2.setColor(Color.blue);
                                    if (order.elementAt(i1) !=null){
                                         g2.draw(new Line2D.Double(p[0], p[1]));    
        private Point[] getCenterPoints(Component c1, Component c2)
            Point
                p1 = new Point(),
                p2 = new Point();
            Rectangle
                r1 = c1.getBounds(),
                r2 = c2.getBounds();
                 p1.x = r1.x + r1.width/2;
                 p1.y = r1.y + r1.height/2;
                 p2.x = r2.x + r2.width/2;
                 p2.y = r2.y + r2.height/2;
            return new Point[] {p1, p2};
        private void determineCenterOfComponents()
            int
                xMin = Integer.MAX_VALUE,
                yMin = Integer.MAX_VALUE,
                xMax = 0,
                yMax = 0;
            for(int i = 0; i < labels.length; i++)
                Rectangle r = labels.getBounds();
    if(r.x < xMin)
    xMin = r.x;
    if(r.y < yMin)
    yMin = r.y;
    if(r.x + r.width > xMax)
    xMax = r.x + r.width;
    if(r.y + r.height > yMax)
    yMax = r.y + r.height;
    cx = xMin + (xMax - xMin)/2;
    cy = yMin + (yMax - yMin)/2;
    private class ComponentMover extends MouseInputAdapter
    Point offsetP = new Point();
    boolean dragging;
    public void mousePressed(MouseEvent e)
    Point p = e.getPoint();
    for(int i = 0; i < labels.length; i++)
    Rectangle r = labels[i].getBounds();
    if(r.contains(p) && !isActivated )
    selectedLabel = labels[i];
    order.addElement(labels[i]);
    offsetP.x = p.x - r.x;
    offsetP.y = p.y - r.y;
    dragging = true;
    repaint(); //added
    break;
    public void mouseReleased(MouseEvent e)
    dragging = false;
    public void mouseDragged(MouseEvent e)
    if(dragging)
    Rectangle r = selectedLabel.getBounds();
    r.x = e.getX() - offsetP.x;
    r.y = e.getY() - offsetP.y;
    selectedLabel.setBounds(r.x, r.y, r.width, r.height);
    //determineCenterOfComponents();
    repaint();
    private void addLabels()
    label1 = new JLabel("Label 1");
    label2 = new JLabel("Label 2");
    label3 = new JLabel("Label 3");
    label4 = new JLabel("Label 4");
    labels = new JLabel[] {
    label1, label2, label3, label4
    for(int i = 0; i < labels.length; i++)
    labels[i].setHorizontalAlignment(SwingConstants.CENTER);
    labels[i].setBorder(BorderFactory.createEtchedBorder());
    add(labels[i]);
    Thanks in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    2 choice, bundle your app in a jar, or get a native compiler.
    executable jar
    http://java.sun.com/j2se/1.3/docs/guide/jar/jarGuide.html
    http://developer.java.sun.com/developer/qow/archive/21/index.html
    native
    http://gcc.gnu.org/java/
    http://www-106.ibm.com/developerworks/library/j-native.html
    http://icafe.sourceforge.net/
    http://www.towerj.com/
    http://www.xlsoft.com/en/products/development/jet/jetpro.html

  • How to make it repleatedly printed out by using timer??

    Dear Friends:
    I have following code to run, When I press R to repeat println, only 1 line print out,
    But I hope to make it continueously print out.
    How to make it repleatedly printed out until I press CTRL + C key ??
    Thyanks
    import java.util.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.*;
    public class CertainAndRepeatTime{
      public static void main(String[] args) throws IOException{
        int delay = 1;
        Timer timer = new Timer();
        ActionListener actionListener = new ActionListener() {
            public void actionPerformed(ActionEvent actionEvent) {
              System.out.println("Hello World Timer");
        System.out.println("What do you want (Certain time or Repeat time)?");
        System.out.print("Please enter \'C\' or \'R\' for that: ");
        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
        String ans = in.readLine();
        System.out.print("Please enter  ans=" + ans  + " IsTrue=  " + (ans.equals("R") || ans.equals("r")) +"\n");
        if (ans.equals("C") || ans.equals("c")){
          //System.out.println("This line is printed only once start...");
          timer.schedule(new TimerTask(){
            public void run(){
              System.out.println("This line is printed only once.");
          },delay,1);
        else if(ans.equals("r") || ans.equals("R")){
          timer.schedule(new TimerTask(){
            public void run(){
              System.out.println("This line is printed repeatedly.");
          },delay, 1000);
        else{
          System.out.println("Invalid Entry.");
          System.exit(0);
        System.exit(0);
    }

    The Timer is working fine, but because it runs in another Thread, your program is ending before the Timer can repeat.
    The simplest way to make your program wait until it is force-quitted as you describe would be to make an infinite loop (although this isn't very good practice), like this:
        else if(ans.equals("r") || ans.equals("R")){
          timer.schedule(new TimerTask(){
            public void run(){
              System.out.println("This line is printed repeatedly.");
          },delay, 1000);
        while(true){} //This will make your main thread hang.
        }A better way, though, would be to listen again with your System.in reader until they enter a letter that means quit.

  • How to make the zoom in/out scale appear in the media browser ?

    How to make the zoom in/out scale appear in the media browser ? My videos only appear as a file list (only the names) and the zoom in/out device is currently not in the media browser...

    I meant that there is no "Icon mode" button or "List mode" button in my media browser. How to make them appear ?

  • How to make a short clip out of the original one ?

    Some days ago, I asked a question on editing a clip in this forum. The responder asked me to provide a few seconds of the clip for his examination. But I got stuck. I didn't know how to make a clip of a few seconds out of the original clip and that it had the exact same format and properties as the original clip.
    Neither Premier nor After Effect have an ouput option such as "same as original source" .
    So, my question is how to make a short clip out of the original one with everything the same properties as the original one.
    Thanks in advance.

    May be I haven't made myself clear
    Sorry, but I think that I am still not following you.
    I want to export and render the short clip to a new file which I want to have everything the same as the original clip. Just like I cut off a few seconds off it and that few seconds becomes an independent file.
    OK, you have your original source file. It is complete and is also unaltered. If you want a "Copy" of it, just use Windows Explorer, or similar to make that Copy. If you want a separate file of your edited version of that source file (as it appears in the Timeline), use the WAB (Work Area Bar) to include just that edited instance of the source footage, and Export just the WAB. This will give you a separate file with the edits in it.
    I still feel that neither is what you want. If you can step me through, maybe with screen-caps, what you have and what you wish to end up with, I can see the operation more clearly.
    Good luck,
    Hunt

  • How to make selection parameter gray out, not changeble mode

    Hi Experts,
      Selection screen having parameters, I am putting default values in that parametrs.
    How to make this parameter gray out, not changeable mode.
    Thanks in advance
    mahahe.
    See comments below
    Edited by: Rob Burbank on Jul 1, 2009 12:43 PM

    Hi,
    For the parameters required, while declaring them use the MODIF ID, lets say you have choosen the modif id as SC1.
    i.e. parametes: p_mat type matnr DEFAULT '100' MODIF ID SC1.
    Then in the initialization event, code as below.
        LOOP AT SCREEN.
          IF screen-group1 = 'SC1'.
            screen-input = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
    It will work.
    Regards,
    Nangunoori.

  • How often do new iMacs come out?

    I've never owned an iMac (Just the monitor). I'm keen to purchase a:
    27-inch: 3.4GHz
    Specifications
    3.4GHz quad-core Intel Core i5
    Turbo Boost up to 3.8GHz
    8GB (two 4GB) memory
    1TB hard drive1
    NVIDIA GeForce GTX 775M with 2GB video memory
    $1,999.00
    Before I buy one, I'd like to know how often the new ones come out because I'd hate to spend all my money on one then a brand new version comes out. I'm not sure if they change the actually iMac (change the design/dimensions) or is it only the software that updates?
    I also understand there are lots of options you can select, which impact the price, such as:
    Processor
    3.4GHz Quad-core Intel Core i5, Turbo Boost up to 3.8GHz
    3.5GHz Quad-core Intel Core i7, Turbo Boost up to 3.9GHz [Add $200.00]
    Memory
    More memory (RAM) increases performance and enables your computer to perform faster and better. Choose additional 1600MHz DDR3 memory for your iMac.
    Learn more(Memory)
    Memory
    8GB 1600MHz DDR3 SDRAM - 2X4GB
    16GB 1600MHz DDR3 SDRAM - 2X8GB [Add $200.00]
    32GB 1600MHz DDR3 SDRAM - 4X8GB [Add $600.00]
    Storage
    Configure your iMac with a large Serial ATA hard drive. Or choose flash storage for greater performance. Or get the best of both worlds and select Fusion Drive.
    Learn more(Storage)
    Storage
    1TB Serial ATA Drive @ 7200 rpm
    3TB Serial ATA Drive @ 7200 rpm [Add $150.00]
    1TB Fusion Drive [Add $200.00]
    3TB Fusion Drive [Add $350.00]
    256GB Flash Storage [Add $200.00]
    512GB Flash Storage [Add $500.00]
    1TB Flash Storage [Add $1,000.00]
    With just the monitor would I be able to run windows software as well, such as FL Studio?
    So I'm wondering what happens when I get his thing. Do I just turn it on and start using it as I would my MacBook Pro? Do I need to install things, configure updates etc. Will I need system unit or will a hard disk with a lot of space be equal?
    I plan to use the iMac for absolutely everything, Adobe Mastercollection, Music Production (FL Studio/Ableton/Logic). I'd like to be able to plug in synths, digital pianos and I also need good sound, can I plug in speakers or anything?
    As you can see, I don't know much about the iMac even though I've looked around and read reviews. Thankyou in advance!

    New iMacs available now ...This is Tim: Apple's CEO
    iMac - Buy iMac Desktop Computers

  • Sound still comes out of speakers even if Iphone5 earphones are plugged?

    Sound still comes out of speakers even if Iphone5 earphones are plugged?  I just bought this Macbook Pro 102 Model.  Is it broken and I have to bring it to Apple Store?

    Hi MarmadukeZack,
    Welcome to the HP Forums! I see that you are having a problem with speakers playing with headphones connected. I will need some additional information to assist you. To avoid me suggesting the same troubleshooting steps let me know what you have already tried. There are several models in the g7 series, so I will need your product number please.
    Thank you,
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • How to make lines for "fill in the blanks?" (iWork Pages 09)

    This should be easy since it's something many people do: design a form for others to fill out with a pen or pencil.  However, I can't find any information regarding how to make a line after text, like this:
    Name _________________ Address _________________________________ Phone __________
    ...without using the underline character.
    Back on the Clarisworks days there was some way to make nice neat lines after text using tabs.  However, It's been so long that I can't recall how it worked.  I've Googled this issue using every logical term I can think of but found nothing useful.  The Pages 09 help file and the user guide  seem to be mute on this subject. The Word 2008 help file is similarly silent.  However, I'm sure that the greater Pages community knows the answer to this one.
    Thanks,
    Bill

    What you want is called a tab leader. In Pages, to create the underline:
    To create a new tab stop using the Text inspector, click in the document where you want to create a new tab stop, click Inspector in the toolbar, and then click Tabs. Click the Add button in the bottom-left corner of the Tabs pane. The new tab stop appears in the Tab Stops column.
    Then  use the Leader drop down menu to choose a solid line:

  • How to make an object getting out of the screen ?

    Hello everybody !
    I am creating a game introduction with Flash pro CS6 and here's is my problem.
    I want a object in my animation to leave the screen, but I dont know how to do it.
    Is there for example, a way to delimited the working area, so that when I make an object go out of this area, it does not appear in my final animation ( no matter the format, .avi, .mov, spritesheets ... ) or can eventualy be "cut" ( if I make my object half inside the working arear and half outside ) ?
    Is there an other way to do this ?
    Thanks !

    Using a mask might be one way.

  • How to make Text filed Grayed out / disabled

    Hi,
    I have a text field and I have set the following property..
    HTML Form Element Attributes:- readOnly=trueThis field is read only now.
    HOW to make this field looks like a disabled field, some thing like filling the background with light gray color.
    Thanks,
    Deepak

    Thanks Andy..it worked..but one clarification.
    when I am using the following code as suggested by you, I am getting the text box border, as well as gray color in the box...THIS is perfectly fine which I wanted.... (This will make that field always read only)
    Element Type - Text
    HTML Form Element Attributes - readOnly=true style="background-color:gray"NOW I want my field to be read only based on condition.
    So I am using the following code, This is displaying the gray color, but the border of the text box is gone, so it doesn't look good. How can I keep the border too..
    Element Type - Text
    Read Only Condition Type (condition - Expression1=Expression2)
    Read Only Element Table Cell(s) Attributes - style="background-color:gray"Also, How to make FONT bold, I am using - font-weight: bold; - but it's not working.
    and finally , can I define this style in custom.css file and then how to call that stylesheet here...????
    Thanks,
    Deepak
    Edited by: Deepak_J on Oct 8, 2009 11:28 AM

  • How to get line in audio to internal speakers

    What procedure is needed to connect line in audio to the internal speakers?  For example, playing music from my iPad through the macbook Pro's speakers. Or from any other audio source,such as a USB connector?

    Weird. I just installed Creative PlayCenter from the driver CD and after the reboot, line-in now comes out the rear speakers again. Must've been some system files updated or something, because CMSS is still off according to PlayCenter. When I turn CMSS on, the line-in stops coming out rear, but turning it off makes it work!!!! So it's sorted, but still have no idea why it screwed up and why I needed PlayCenter installed to change the CMSS settings.

  • Line in with no rear speakers P7800

    Is there a way to enable ALL rear speakers to play music (just want stereo) when using the LINE IN on the p7800 amp box?
    when I use the LINE IN on the box the only speakers that play are the front, center, and subwoofer..no rear channels.
    My sound card is a turtle beach riviera card and I have it set to 5.1 surround system.

    Weird. I just installed Creative PlayCenter from the driver CD and after the reboot, line-in now comes out the rear speakers again. Must've been some system files updated or something, because CMSS is still off according to PlayCenter. When I turn CMSS on, the line-in stops coming out rear, but turning it off makes it work!!!! So it's sorted, but still have no idea why it screwed up and why I needed PlayCenter installed to change the CMSS settings.

  • "Peggle" audio comes out internal speakers instead of externals

    Here's a weird one- last week I was working between my mac pro and a mac mini I had bought and was configuring for a friend. I borrowed the internet, mouse/keyboard, speakers, and one monitor from my dual monitor set up on the mac pro tower in order to configure the mac mini. While it was doing software update, I borrowed the keyboard and mouse, came back over to the mac pro, and played some Peggle- popcap games' wonderfully addictive arcade game. Since there were no external speakers, audio was temporarily routed to the internals on the mac pro.
    When all was said and done with the mac mini, I reconnected everything, and for some reason, the music from peggle still plays out of the internal speakers. everything else on my computer: warning noises, the audio buttons, audio from other programs, even the SFX audio from peggle play through the line out on the back of the computer, but the music audio plays through the internals.
    I went into system preferences --> audio and made sure everything was set to audio line out, and I deleted and reinstalled peggle, losing all my progress in the game, but still when i reinstalled it, same issue. If, however, I route all the audio through the audio headphone jack on the front of the computer, i can get music and sfx to come out of my external speakers, but as soon as I go back to the rear output, peggle's music goes right back to internal speakers.
    I contacted popcap games, and they basically told me to delete everything peggle- system folders and all, and reinstall. I did that, but am having the same issue. Any ideas? anyone experience something similar? Help!!!

    I can't speak to the specific case of Peggle, but you will want to make sure to delete any preference files associated with the game. Check in the /Users/your name/Library/Preferences folder for any files which contain the names "peggle" or "popcap", and delete any such files.You will, of course, lose any saved data associated with the games.

Maybe you are looking for

  • 1st generation ipod 1GB replacement

    I have a 1st generation Ipod Nano 1GB Iunderstnd if i return it to apple they will replace it... some people have told me the replace it with a 5th or 6th generation ipod nano is this true.and ifit are they new or refurbished ones

  • Adobe acrobat connect pro add-in

    where do I find it?

  • Issue with  print image in air

    hey frnd, plz check this link http://livedocs.adobe.com/flex/3/html/help.html?content=printing_5.html hey frnds, while using this multiple print datagrid code, getting 1 issue with print image in printheader mxml file. I'm adding 1 image tag and runt

  • BAPI_SHIPMENT_CREATE Vehicle?

    Hello everyone. I've faced the problem: in the set of parameters of FUNCTION BAPI_SHIPMENT_CREATE i can't find which exactly place to pass "VEHICLE" parameter (see transaction VT01N ). Does anyone have idea to solve this problem? Sincerly yours, Long

  • Not any fix for the itunes error 53????

    it always errors at restore of my iphone. still no answer for that??