Execution of games

hi i'm using windows 7 and i can't run any game on my laptop whenever i install any game and run it a windows error message occur same as when a software crash during execution game(name of file ) has stopped working i have install my windows twice i have
visual studio 2005, 2008 my directx is properly working and i have not any problem with any other software if someone can help me then do it please 

Hello,
The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
As the question is off topic here, I am moving it to the
Where is the Forum... forum.
Karl
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
My Blog: Unlock PowerShell
My Book:
Windows PowerShell 2.0 Bible
My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Similar Messages

  • CS6 Trail Installer just disapears after reaching 100%

    I have a problem with installing the Trail of CS6 on my Windows 8 Dell Laptop.
    The installer initializes and then disapears. I tried very often with differen Products (CS6 and single Products) - Every time the prograssbar of the initializer is 100% nothing more happens it finishes execution and game over.
    The Support Advisor says: cpsid_82829s1: Bootstrap-error: „Pending Reboot“.
    * But rebooting does not help.
    * Using CC Cleaner on the registry does not help.
    * Using Adobe CS Cleaner Tool does not help
    * Tryied to remove registy key InProgress, but it was not there
    My Support Tokes is: 40-56963-112419012013
    BUT the support Advisor does not even recognize failed attemps anymore... (see Screenshot and timestamps)
    Here I tried to see the problem in the commandline, but exiting with Error: 0 seams to be all ok
    About my Machine:
    Dell Inspiron 7720 with Windows 8 Home
    8 Gig Ram
    Intel i7 3630QM
    Installed full licenced Adobe Products via Dell Installer:
    Photoshop Elements 10
    Premiere Elements 10
    and Adobe Reader XI
    Please help,
    I planned to buy CS6 Master this week but I want to see it running on my new Laptop first.
    Thanks in advance!

    Well, you will have to figure out what program is causing those pending restarts, which is nothing to do with Adobe, very likely. Could be anything from an incomplete install of anotehr software to a failed Windows Update or whatever. You could of course simply terminate any pending installer processes, but that may not help, either...
    Working with your Operating System’s Tools
    Mylenium

  • I cant install any games on windows 8.1 enterprise

    When i try to install a game on windows 8.1 enterprise, the setup menu shows up for about 30 seconds the closes
    with no error message. ive tried running it as administration, windows 7 and turning internet off and turning my anti virus off also re installing my OS 
    the games ive tried:
    shadows of mordor 
    borderlands the pre sequel 
    watch dogs 
    portal 2 
    Ive got a gaming pc so the spec isent the problem and theres newt wrong with the games ive used them on my laptop and
    im having no problem installing anything else,. i did manage to install minecraft but anything higher than that wont install, please can someone help me as im completely stuck on what to do next

    yes all these games are original and the only reason i believe it might be my windows is due the fact the games worked fine before i updated from windows 8 to windows 8.1 and all the games work fine on my laptop
    ive looked in event viewer its coming up with this ( restart manager )
    Log Name:      Application
    Source:        Microsoft-Windows-RestartManager
    Date:          25/01/2015 02:24:43 PM
    Event ID:      10000
    Task Category: None
    Level:         Information
    Keywords:      
    User:          HOME\
    Computer:      Home
    Description:
    Starting session 2 - ‎2015‎-‎01‎-‎25T14:24:43.834252000Z.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-RestartManager" Guid="{0888E5EF-9B98-4695-979D-E92CE4247224}" />
        <EventID>10000</EventID>
        <Version>0</Version>
        <Level>4</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2015-01-25T14:24:43.834252000Z" />
        <EventRecordID>703</EventRecordID>
        <Correlation />
        <Execution ProcessID="4960" ThreadID="5908" />
        <Channel>Application</Channel>
        <Computer>Home</Computer>
        <Security UserID="S-1-5-21-1752165112-3586141411-2308531223-1001" />
      </System>
      <UserData>
        <RmSessionEvent xmlns="http://www.microsoft.com/2005/08/Windows/Reliability/RestartManager/">
          <RmSessionId>2</RmSessionId>
          <UTCStartTime>2015-01-25T14:24:43.834252000Z</UTCStartTime>
        </RmSessionEvent>
      </UserData>
    </Event>

  • First Applet Game

    I was trying to write snake. After discovering the Timer class, i was able to get the snake to move properly. However, i cant get it to turn. I think I did something wrong with the key listener.
    import javax.swing.Timer;
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class Snake extends Applet implements KeyListener
        private int length,dir; //for dir, 2=down, 4=left, 8=up, 6=right
        private int[] snakeX=new int[99];
        private int[] snakeY=new int[99];
        public void init()
            addKeyListener(this);
            length=5;
            dir=6;
            for (int c=0;c<length;c++)
                snakeX[c]=150-20*c;
                snakeY[c]=150;
         * Called by the browser or applet viewer to inform this Applet that it
         * should start its execution. It is called after the init method and
         * each time the Applet is revisited in a Web page.
        public void start()
            int delay = 1000; //milliseconds
            ActionListener taskPerformer = new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                     move();
             new Timer(delay, taskPerformer).start();
        public void update(Graphics g) {
            // Redefine update so it doesn't erase the applet before calling
            // paint().
          paint(g);
         * This may be the most important method in your applet: Here, the
         * drawing of the applet gets done. "paint" gets called everytime the
         * applet should be drawn on the screen. So put the code here that
         * shows the applet.
         * @param  g   the Graphics object for this applet
        public void paint(Graphics g)
            //field
            g.setColor(Color.white);
            g.fillRect(0, 0, 500, 500);
            //snake
            g.setColor(Color.blue);
            for (int c=0;c<length;c++)
                g.fillRect(snakeX[c] ,snakeY[c], 20, 20);
         public void changeDir(int direction)
             dir=direction;
         public void keyTyped(KeyEvent evt) {
             int key = evt.getKeyCode();  // keyboard code for the key that was pressed
             if (key == KeyEvent.VK_LEFT)
                changeDir(4);
             else if (key == KeyEvent.VK_RIGHT)
                changeDir(6);
             else if (key == KeyEvent.VK_UP)
                changeDir(8);
             else if (key == KeyEvent.VK_DOWN)
                changeDir(2);
         public void keyReleased(KeyEvent e) {
         public void keyPressed(KeyEvent e) {                       
        public void move()
            int x=snakeX[0];
            int y=snakeY[0];
            int xChange=0;
            int yChange=0;
            for (int c=length-1;c>0;c--)
                snakeX[c]=snakeX[c-1];
                snakeY[c]=snakeY[c-1];
            switch (dir)
                case 8: yChange=-20; break;
                case 4: xChange=-20; break;
                case 6: xChange=20; break;
                case 2: yChange=20; break;
            snakeX[0]=x+xChange;
            snakeY[0]=y+yChange;
            repaint();
        public boolean isAlive()
            if (snakeX[0]<0 || snakeX[0]>280 || snakeY[0]<0 || snakeY[0]>280)
                return false;
            for (int c=1;c<length;c++)
                if (snakeX[0]==snakeX[c] && snakeY[0]==snakeY[c])
                    return false;
            return true;
         * Called by the browser or applet viewer to inform this Applet that
         * it should stop its execution. It is called when the Web page that
         * contains this Applet has been replaced by another page, and also
         * just before the Applet is to be destroyed. If you do not have any
         * resources that you need to release (such as threads that you may
         * want to stop) you can remove this method.
        public void stop()
            // provide any code that needs to be run when page
            // is replaced by another page or before Applet is destroyed
         * Called by the browser or applet viewer to inform this Applet that it
         * is being reclaimed and that it should destroy any resources that it
         * has allocated. The stop method will always be called before destroy.
         * If you do not have any resources that you need to release you can
         * remove this method.
        public void destroy()
            // provide code to be run when Applet is about to be destroyed.
    }The Timer creates new thread. I think i need to get the Key Listener into that thread, but Im not sure how to. Please help me do this. (Btw, i know the delay is too long)

    this is the code, same with your code but keyTyped is moved to keyPressed, and it is an applet-application game
    if playing as applet, be sure to click in the applet area to have it focus
    and one thing, there's nothing wrong with the thread
    import javax.swing.Timer;
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class Snake extends Applet implements KeyListener{
         private int length,dir; //for dir, 2=down, 4=left, 8=up, 6=right
         private int[] snakeX=new int[99];
         private int[] snakeY=new int[99];
         public void init() {
              addKeyListener(this);
              length=5;
              dir=6;
              for (int c=0;c<length;c++) {
                   snakeX[c]=150-20*c;
                   snakeY[c]=150;
         public void start() {
              int delay = 1000; //milliseconds
              ActionListener taskPerformer = new ActionListener() {
                   public void actionPerformed(ActionEvent evt) {
                        move();
              new Timer(delay, taskPerformer).start();
         public void update(Graphics g) {
              // Redefine update so it doesn't erase the applet before calling
              // paint().
              paint(g);
         public void paint(Graphics g)    {
              //field
              g.setColor(Color.white);
              g.fillRect(0, 0, 500, 500);
              //snake
              g.setColor(Color.blue);
              for (int c=0;c<length;c++) {
                   g.fillRect(snakeX[c] ,snakeY[c], 20, 20);
         public void changeDir(int direction)     {
              dir=direction;
         public void keyTyped(KeyEvent evt) {
              // moved to keyPressed(KeyEvent) method
         public void keyReleased(KeyEvent e) { }
         public void keyPressed(KeyEvent e) {
              int key = e.getKeyCode();   // keyboard code for the key that was pressed
              if (key == KeyEvent.VK_LEFT) {
                  changeDir(4);
              } else if (key == KeyEvent.VK_RIGHT) {
                   changeDir(6);
              } else if (key == KeyEvent.VK_UP) {
                   changeDir(8);
              } else if (key == KeyEvent.VK_DOWN) {
                   changeDir(2);
         public void move()    {
              int x=snakeX[0];
              int y=snakeY[0];
              int xChange=0;
              int yChange=0;
              for (int c=length-1;c>0;c--)        {
                   snakeX[c]=snakeX[c-1];
                   snakeY[c]=snakeY[c-1];
              switch (dir)        {
                   case 8: yChange=-20; break;
                   case 4: xChange=-20; break;
                   case 6: xChange=20; break;
                   case 2: yChange=20; break;
              snakeX[0]=x+xChange;
              snakeY[0]=y+yChange;
              repaint();
         public boolean isAlive()    {
              if (snakeX[0]<0 || snakeX[0]>280 || snakeY[0]<0 || snakeY[0]>280) {
                    return false;
              for (int c=1;c<length;c++) {
                   if (snakeX[0]==snakeX[c] && snakeY[0]==snakeY[c]) {
                        return false;
              return true;
         public static void main(String[] args) {
              Snake game = new Snake();
              game.init();
              Frame f = new Frame();
              f.setSize(500, 530);
              f.add(game);
              f.setVisible(true);
              game.start();
              game.requestFocus();
    }and you might want to see this: http://goldenstudios.uni.cc/contents/products/games/bin/snake.jnlp

  • Some games to not continue after splash screen.

    I've already asked it on answers.microsoft.com but didn't get any reply. So, thought I would ask here.
    What I've tried:
    App troubleshooter
    sfc /scannow
    Answers in http://superuser.com/questions/562188/windows-8-metro-apps-wont-load
    also, I've tried some technet links but in vain.
    I've installed two games - Sonic Dash and Despicable Me 2:Minion Rush. Both of these games to not work after splash screen and they get minimized.
    I've checked the event log and found this
    Activation of app SegaNetworksInc.56538047DFC80_as33fap47kd3c!App failed with error: The remote procedure call failed. See the Microsoft-Windows-TWinUI/Operational
    log for additional information.
    And full details here
    Faulting application name: Template.exe, version: 2.0.0.0, time stamp: 0x5492b318
    Faulting module name: combase.dll, version: 6.3.9600.17031, time stamp: 0x53086d7c
    Exception code: 0xc000027b
    Fault offset: 0x000fb152
    Faulting process id: 0x1418
    Faulting application start time: 0x01d0227a62078008
    Faulting application path: C:\Program Files\WindowsApps\SegaNetworksInc.56538047DFC80_2.0.0.0_x86__as33fap47kd3c\Template.exe
    Faulting module path: C:\WINDOWS\SYSTEM32\combase.dll
    Report Id: 9fbff746-8e6d-11e4-a383-c0cb38d6092f
    Faulting package full name: SegaNetworksInc.56538047DFC80_2.0.0.0_x86__as33fap47kd3c
    Faulting package-relative application ID: App
    Apparently it has something to do with remote procedure call. When I open the other game, I get same errors as the above, the only thing which has changed being name of the app.
    Graphics shouldn't be a problem since these games have ALREADY run once, but not now, and I have other heavy-graphic games like Asphalt 8 Airborne which still WORKS.
    I've also tried re-installing but in vain, duh. Looking for help badly. I'd appreciate any help.

    Sorry. Those two links too didn't work. I did all that was instructed in them. However I really appreciate your effort in solving my problem.
    I checked the event log in the path which you asked me to and got this
    Activation of the app SegaNetworksInc.56538047DFC80_as33fap47kd3c!App for the Windows.Launch contract failed with error: The remote procedure call failed..
    And a detailed view
    - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    - <System>
    <Provider Name="Microsoft-Windows-Immersive-Shell" Guid="{315A8872-923E-4EA2-9889-33CD4754BF64}" />
    <EventID>5961</EventID>
    <Version>0</Version>
    <Level>2</Level>
    <Task>5961</Task>
    <Opcode>0</Opcode>
    <Keywords>0x4000000000000000</Keywords>
    <TimeCreated SystemTime="2015-01-28T04:44:28.735933800Z" />
    <EventRecordID>71148</EventRecordID>
    <Correlation />
    <Execution ProcessID="1060" ThreadID="5520" />
    <Channel>Microsoft-Windows-TWinUI/Operational</Channel>
    <Computer>Amit</Computer>
    <Security UserID="S-1-5-21-66860032-2800664797-2745505841-1010" />
    </System>
    - <EventData>
    <Data Name="AppId">SegaNetworksInc.56538047DFC80_as33fap47kd3c!App</Data>
    <Data Name="ContractId">Windows.Launch</Data>
    <Data Name="ErrorCode">-2147023170</Data>
    </EventData>
    </Event>
    Can the error log be of some help?

  • Pausing execution in a program.

    I'm developing a GUI for a game called Pig, where players take turns rolling the dice and accumulating points. I have made the computer players automatically keep rolling until they can no longer roll (if they happen to roll a 1 or have 20 more points than a human player). Here is my code for the computer:
    if (comp) {
         while (!pass) {
              if (computerScore+roundScore>=humanScores+TURNOVER) {
                   status = name+" has turned over the dice by default.";
                   update();
                   JOptionPane.showMessageDialog(null, status);
                   status = " ";
                   pass=true;
              } else {
                   rollDice();
                   update();
                   /*try {
                        Thread.sleep(1000);
                   catch (InterruptedException e) {
                        e.printStackTrace();
                   //I want to use a Timer here, instead of JOptionPane.
                   JOptionPane.showMessageDialog(null, name+" has rolled: "+toString());
                   if (losePoints()) {
                        JOptionPane.showMessageDialog(null, name+" got too ambitious and rolled snake eyes!\n"+name+" lost all points.");
                   } else
                        if (loseRound()) {
                             JOptionPane.showMessageDialog(null, name+" got too ambitious and rolled a one!\n"+name+" lost all points for this round.");
                        } else
                             roundScore += points;
                   if (computerScore+roundScore>=GOAL) {
                        computerScore += roundScore;
                        status = name+" has won the game!";
                        pass=true;
                        end=true;
                   update();
    }As you can see, I've already tried pausing with a Thread.sleep(delay) function. I have found that the only thing that works is using a JOptionPane to stop execution. The problem with the Thread.sleep() is that the drawing of the GUI stops working while the computer never stops (I want it to pause between each time it rolls the dice) taking turns to roll its dice (until it passes).
    Everything works perfectly with a JOptionPane, but I don't want to display what the computer rolls each time (because the update() method takes care of that already). Here is the code for my update() method:
    public void update() {
         turnLabel.setText("Player: "+name);
         roundScoreLabel.setText("Score for this round: "+roundScore);
         statusLabel.setText(status);
         remove(dice);
         add(dice, BorderLayout.SOUTH);
         statusPanel.setBackground(Color.gray);
         revalidate();
         repaint();
    }Any suggestions on how to pause while still redrawing the GUI components?

    I don't think this can be that short because my code is in its draft state, since I'm commenting all the possible ways to pause the execution; however, I will give you a summary of my PigPlayer class (the main method is totally irrelevant in this case):
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    public class PigPlayer extends JPanel {
         private Dice dice;
         private int points, humanScore, computerScore, roundScore;
         private boolean comp, endTurn, time;
         public static boolean end, pass;
         private String name, info;
         private static String status;
         private static final int GOAL=100, TURNOVER=20;
         public static int humanScores;
         private JLabel roundScoreLabel, turnLabel, infoLabel, statusLabel;
         private JPanel turnPanel, statusPanel, musicPanel, centerPanel;
         private Timer timer;
         public PigPlayer() {
         public PigPlayer(String name, boolean comp) {
              //  Sets up a PigPlayer's JPanel with the specified information.
         public void update() {
              //  Updates the JLabels and the Dice pictures that were added to the JPanel above.
            //  I leave the go() method, for this is the part being worked on.
         public void go() {
              if (!end) {
                   if (!comp) {
                        rollDice();
                        if (losePoints()) {
                             JOptionPane.showMessageDialog(null, name+" got too ambitious and rolled snake eyes!\n"+name+" lost all points.");
                        } else
                             if (loseRound()) {
                                  JOptionPane.showMessageDialog(null, name+" got too ambitious and rolled a one!\n"+name+" lost all points for this round.");
                             } else
                                  roundScore += points;
                        if (humanScore+roundScore>=GOAL) {
                             humanScore += roundScore;
                             status = name+" has won the game!";
                             end=true;
                        update();
                   if (comp) {
                        while (!pass) {
                             /*timer = new Timer(1000, new ActionListener () {
                                  public void actionPerformed(ActionEvent e) {
                                       time = true;
                             timer.start();*/
                             if (time) {
                                  if (computerScore+roundScore>=humanScores+TURNOVER) {
                                       status = name+" has turned over the dice by default.";
                                       update();
                                       JOptionPane.showMessageDialog(null, status);
                                       status = " ";
                                       pass=true;
                                  } else {
                                       rollDice();
                                       update();
                                       /*try {
                                            Thread.sleep(1000);
                                       catch (InterruptedException e) {
                                            e.printStackTrace();
                                       //I want to use a Timer here, instead of JOptionPane.
                                       //JOptionPane.showMessageDialog(null, name+" has rolled: "+toString());
                                       if (losePoints()) {
                                            JOptionPane.showMessageDialog(null, name+" got too ambitious and rolled snake eyes!\n"+name+" lost all points.");
                                       } else
                                            if (loseRound()) {
                                                 JOptionPane.showMessageDialog(null, name+" got too ambitious and rolled a one!\n"+name+" lost all points for this round.");
                                            } else
                                                 roundScore += points;
                                       if (computerScore+roundScore>=GOAL) {
                                            computerScore += roundScore;
                                            status = name+" has won the game!";
                                            pass=true;
                                            end=true;
                                       update();
                                           time = false;
                        //timer.stop();
            // Some code executed OUTSIDE of PigPlayer when this PigPlayer is finished with its turn.
         public void pass() {
              if (!comp) {
                   humanScore += roundScore;
                   roundScore=0;
                   if (humanScore>=humanScores)
                        humanScores = humanScore;
              else {
                   computerScore += roundScore;
                   roundScore=0;
              update();
            //  This PigPlayer rolls its set of Dice.
         public void rollDice() {
              dice.roll();
              points = dice.getValue();
           //  When this PigPlayer loses a round or all of its points.
         public boolean loseRound() {
              if (dice.firstDie()==1 || dice.secondDie()==1) {
                   roundScore = 0;
                   pass=true;
                   update();
                   return true;
              else
                   return false;
         public boolean losePoints() {
              if (dice.firstDie()==1 && dice.secondDie()==1) {
                   humanScore = 0;
                   computerScore = 0;
                   roundScore = 0;
                   pass=true;
                   update();
                   return true;
              else
                   return false;
    }I left out most of the methods, for they don't even apply to this class or are commented parts that are simply methods using Thread.sleep(int delay) or other.
    Does this help at all, or did you want something different?

  • Game main loop using Thread. How to ?

    Hello !
    Is anybody know what happened with threads, which was created by MIDLet when MIDLet will be closed ?
    More details: i design a specific game engine for MIDP2.0. In many available resources main game loop implemented through separate Thread, but one thing is just missed - how to correctly stop this thread when player want to exit from game ? Mostly all examples just call notifyDestroyed() and do nothing more. But I think what it is wrong program behaviour. So I have questions to advanced MIDP programmers:
    1) Do we need correctly stop all Threads before call notifyDestroyed() or can just forget about it ? (I think need to stop all threads ...). Maybe some documentation or usefull link is available about this or related problem ?
    Where get documentation about Threads in Java, and how to VM stop thread during garbage collection. As I think exactly G&#1057; will destroy MEDLet threads if I don't stop it manually ?

    ... But I think that all created threads should be
    killed in logical right place. For example, if thread
    is using for animation and created in Canvas object,
    this thread should be killed before killing Canvas
    object (for example command "Exit" have been choosen,
    firstly we kill thread, secondly we call destroyApp )
    If midlet uses user interface, I never called
    notifyDestroyed() from my own created thread, because
    application usually should be finished when command is
    choosen or some key pressed.I completely agree with both notes, and even think what I was wrong in general - when decide to use main loop paradigm in PC way (strictly speaking I just copy paradigm from PC project). You give me an good idea - use custom-purpose threads instead general-purpose "main-loop" thread. I just will look on this thread from other point of view and use it only for call update() for my canvas and provide way to handle time-depended actions (say for animation). No anything more. So all I will need - proper synchronization when perform time-depended action.
    So I can stop that thread from destroyApp() when AMS want to destroy my MIDlet, and I can stop that thread from any event-handler in my canvas (in command handler or just key-pressing handler) and then call notifyDestroyed() in order to stop MIDLet manually. So no more calling notifyDestroyed() from any MIDlet-own threads. What you think ?
    Just for intresting - citation from JVM Specification:
    2.16.9 Virtual Machine Exit
    A Java Virtual Machine terminates all its activity and exits when one of two things happens:
    * All the threads that are not daemon threads (�2.17) terminate.
    In CLDC specification no any changes in this paragraph was made, so we can say what if we does not stop all threads which we create in MIDlet the MIDLet execution will be endless ? It is intresting - implementation JVM in real device start JVM for each MIDLet or start JVM once and start MIDlets in this one-session JVM ? In first-case it is possible to just stop JVM (with all threads) and release any resources (looks little dirty, but why not ?) in second-case all "zombie" threads can live endless (until device switch off) and just decrease performance and eat resources ...
    Need more specification ...
    Many thanks to RussianDonz for collaboration.

  • Time estimation of a class file without execution

    Can any body help me....
    I have to find the execution time of class files without execution.
    can I do it with java...!!!!!!!!!!

    Presumably this is a class assignment and not a work assignment. If it is for work then either ask for justification for this stupidity or start playing games and looking for another job.
    Use javap and count the byte codes. Each byte code has a size so give a execution time of n X size. Each branch has a execution time of n X size + 1 (since it take longer.) Each method call is n X size + 2 (a goto and a return.)
    'n' in the above is an arbritrary constant.
    Each method is the sum of its contents. If you have a loop that calls a method you have to estimate the average loops and use that multiplied by the method count.
    For system methods you will just have to list them and give each a unknown time, since presumably you aren't analyzing everything.

  • MACBOOK 1.8 Mhz: Too limited for playing games in Windows?

    I’m having a terrible time trying to play games in mi MacBook 1.8 MHz, in Windows, using the last version of bootcamp and 1GB of RAM. Some games don’t start; others crash during the execution, and with others, the whole windows crashes and got restarted.
    I've reviewed many posts sent to the BootCamp forum, looking for a solution, but it seems those problems don't affect to the Macbook PRO users.
    It seems that our Video Card (the MacBook Card) it's too limited, compared with the PRO video cards (a video memory problem or something related).
    Has anyone had similar problems? Have you found any solution?
    Thanks.
    Macbook   Mac OS X (10.4.7)  

    the MacBook is hampered by a low-end graphics solution that relies on shared RAM instead of its own VRAM (although it has 64MB VRAM). About the only improvement you can make is to max-out your RAM to 2GB. Even then, you may not be very pleased, and many games may not work at all. Check the specs on the games to see how they handle the Intel GMA 950. Upgrading to 2GB is not cheap and (IMHO) not worth the $ just to get better gaming performance. The MacBook will never be adequate for that purpose.
    Good luck!
    MacBook,G5 iMac,15PB,G4 iMac, G4 QS, AX, 3G iPod, Shffl, nano,shffl   Mac OS X (10.4.7)  

  • Although javascript is enabled zoo paradise game tells me to enable it

    i am trying to play the game zoo paradise on Facebook. it doesn't start and it tells me "if you have the latest flash but still see this message,please make sure javascript in enabled on your browser." Javascript on my Firefox is enabled and i downloaded the latest flash version and still is not working.
    == This happened ==
    Just once or twice
    == i am trying to play a game on facebook

    You sure seem to have both plugins, and latest versions.
    For testing that Javascript is working correctly, you can find test links and info in this article: [[Using the Java plugin with Firefox]].
    For testing Flash, we have the support article [[Managing the Flash plugin]].
    If either of these fail, look for help in the articles and/or let us know what results you get so we can provide further assistance for getting it fixed.
    If all seems to be in working order with both, you may have some extension blocking that particular page or application. I would recommend trying to start Firefox in [[Safe Mode]] and test the FB application again - if this works out, you can try enabling your extensions (from menu Tools -> Add-ons -> Extensions) one by one to see which one causes the problem. If it still fails in Safe Mode, this strongly suggests that an external application is blocking execution - most likely a security application of some sort.
    Please let us know how above works out, and if we can be of further assistance. :-)

  • Can I let my xfi card automatically switch to different modi when starting games/my musicplayer,e

    Question says all
    I got x-fi extreme gamer.
    thx in advance

    By programming a startup script to call the feature mode functions. This shouldn't be hard to do even no experience on programming. Just use VBS as for an example (by searching ".vbs" here you should get some example code).
    Here's pseudo code for what the script should do:
    needed definitions
    call the mode switching program to change the feature mode to game/entertainment/creation
    call/run the software (audio, game, etc.)
    (reser the feature mode to default (if you have set certain mode to be a default))
    Then the startup shortcut for software just needs to be changed to call the certain script instead of original .exe.
    jutapa
    EDIT: Here's the base command you'll need.
    <div class="section">object<div class="section">?<div class="section">WshShell object.
    <div class="section">?<div class="section"><span class="parameter">strCommand?
    String value indicating the command line you want to run. You must include any parameters you want to pass to the executable file.
    <div class="section"><span class="parameter">intWindowStyle<div class="section">?Optional. Integer value indicating the appearance of the program's window. Note that not all programs make use of this information.
    bWaitOnReturn?
    Optional. Boolean value indicating whether the script should wait for the program to finish executing before continuing to the next statement in your script. If set to true, script execution halts until the program finishes, and Run returns any error code returned by the program. If set to false (the default), the Run method returns immediately after starting the program, automatically returning 0 (not to be interpreted as an error code).
    <div class="section">?
    The Run method returns an integer. The Run method starts a program running in a new Windows process. You can have your script wait for the program to finish execution before continuing. This allows you to run scripts and programs synchronously. Environment variables within the argument <span class="parameter">strCommand are automatically expanded. If a file type has been properly registered to a particular program, calling run on a file of that type executes the program. For example, if Word is installed on your computer system, calling Run on a *.doc file starts Word and loads the document. The following table lists the available settings for <span class="parameter">intWindowStyle.
    <div class="tableSection">?<div class="tableSection">intWindowStyle <div class="tableSection">?<div class="tableSection">Description <div class="tableSection">0 Hides the window and activates another window.
    Activates and displays a window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when displaying the window for the first time.
    2 Activates the window and displays it as a minimized window.
    3 Activates the window and displays it as a maximized window.
    4 Displays a window in its most recent size and position. The acti've window remains acti've.
    5 Activates the window and displays it in its current size and position.
    6 Minimizes the specified window and activates the next top-level window in the Z order.
    7 Displays the window as a minimized window. The acti've window remains acti've.
    8 Displays the window in its current state. The acti've window remains acti've.
    9 Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when restoring a minimized window.
    0 Sets the show-state based on the state of the program that started the application.
    Example
    <div class="section">The following VBScript code opens a copy of the currently running script with Notepad.
    <div class="code">?<div class="code"><div class="code"><div class="code"><pre>Set WshShell = WScript.CreateObject("WScript.Shell")
    WshShell.Run "%windir%\notepad " & WScript.ScriptFullName</pre>The following VBScript code does the same thing, except it specifies the window type, waits for Notepad to be shut down by the user, and saves the error code returned from Notepad when it is shut down.
    <div class="code">?<div class="code">?
    <div class="code"><pre>Set WshShell = WScript.CreateObject("WScript.Shell")
    Return = WshShell.Run("notepad " & WScript.ScriptFullName, , true)</pre>?
    Example 2
    <pre>Dim oShell
    Set oShell = WScript.CreateObject ("WSCript.shell")
    oShell.run "cmd /K CD C:\ & Dir"
    Set oShell = Nothing</pre><div class="section">The following VBScript code opens a command window, changes to the path to C:\ , and executes the DIR command.
    Message Edited by jutapa on 04-06-2008 05:2 PM

  • How to pause program execution?

    I'm developing a board game. It has the Board class, Coin class and Dice class.
    The dice class has an animation to show the dice rolling. The coin class also has an animation to show the coin moving from start square to end square.
    When user clicks on the dice the sequence of steps that take place are -
    getRandomNumber();
    dice.roll();
    coin.move();
    But the problem I'm facing is even before the dice rolling animation stops, the coin moving animation begins.
    How can I pause the program execution so I can move to next line in program only when the animation in the previous is stopped?
    or How can I change the logic so that it goes as desired.

    Timelines (well, actually KeyFrames) have an action variable, where you can put a function doing whatever you need to do at the end of the key frame.
    So, you can make your coin to move at the end of the dice animation (ie. calling coinAnimation.play() in the action of the last key frame of diceAnimation).

  • Game programming

    I am new to game programming and J2ME. how can i integrate animated clips and application using J2ME>

    Well thats kinda general... In my opinion java is a great language. Just not for games usually. Also what kind of game? 2d or 3d? I would recommend checking out unity for 3D games. I have used it and it is a great tool for people looking to make 3D games without as much work. Plus it supports execution in a browser like an applet kindof. For 2D i usually use flash as it greatly simplifies the process. If your hearts set on Java start off with this- http://www.tutorialized.com/view/tutorial/2D-Java-Platform-Game/10145

  • My game exhausts the CPU..

    Hi, I'm writing a game (Not open source, so it will be a little tough to help, but I can give bits and pieces of the code) and it runs nicely and all.. In game. But there are issues here and there.. When my game is idle (For example: Starting screen, "Game over" screen, or "You win" screen.), the pressing of buttons, the clicking of text fields, and worst of all, the exiting of the program - it's all VERY slow. I don't know why this is, can anyone suggest some potential problems, so I can give pieces of code that may be diagnosed? Thanks.

    Have you looked for loops (for, while, etc.) that test for certain conditions, and if true/false, continue looping? Such loops might reside on separate threads from the main execution thread.
    A simpler way would be to run you game with a profiler such as JProfiler or OptimizeIt (I find JProfiler easier to set up). They can show you in which part of the codes, down to method level, the CPU is spending the most time on. These profilers can be downloaded on evaluation. If they work for you, get your boss to buy them! Saves time and money.

  • Using GameInput adds big Timer event overhead to AIR app execution

    When using GameInput by merely referencing GameInput.numDevices, an overhead of about 38ms for internal Timer event execution is added to Flash player once every second.
    I have a "sandbox" AIR 3.8 Flash project that does nothing other than trace some properties to the console. Execution of this sandbox in Adobe Scout (with a non-debug SWF, using advanced-telemetry, and with all unnecesary options disabled to avoid overhead) looks like this:
    It's all well and good. However, the mere addition of trace(GameInput.numDevices) once changes the execution radically. The result is this:
    Every second, there's a ~38ms event overhead. Apparently, after the first reference to numDevices, the player starts checking for device addition/removal once per second, but it takes some time to do so (again, no other code is being executed).
    To be fair, I'm not sure exactly of the impact of that in actual execution. Apparently, it's only adding 6ms to the time it takes to go from ENTER_FRAME to EXIT_FRAME. But even if that's the case, with a budget of ~17ms per frame, that's considerable overhead.
    This was tested on a PC with Windows 7. Player/Air version was WIN 11,8,800,88. No devices were actually attached to the computer.
    I haven't tested with Android/OUYA. I know GameInput works, but I haven't been able to test if the overhead is there.
    I can provide more details, but it should be easy to reproduce on its own. All you need is a reference to GameInput.numDevices.
    My question is: is this expected or is it part of something that's still being worked? The addition of the GameInput API to the desktop version of AIR is most welcomed, but a potential 223% execution budget overhead on a frame once every second is potentially disastrous for games since it'd mean constantly skipping frames.

    As of FP 12.0.0.44 the problem is back again.
    https://dl.dropboxusercontent.com/u/16044357/scout_gameinput_again.png
    https://dl.dropboxusercontent.com/u/16044357/scout_gameinput_again_2.png
    On top of that, it's not even recognizing all the devices I have installed properly. But that's another discussion I suppose.
    I'm trying to be optimistic, but GameInput really needs some love. Not to add features, but to make it work like it's supposed to. I don't think it has ever been the case, except under very specific circumstances.

Maybe you are looking for

  • Site Web Analytics doesn't apply to all site collections...

    Hi, In one of the intranet site, the site web analytics seems to appear only gathering data for certain site. Is there something that I am missing out? Please remember to mark the replies as answers if they help and unmark them if they provide no hel

  • Firefox on a Mac, and YouTube won't work

    I've looked through related posts here and have been unable to solve my problem. I'm running Yosemite on a new Mac Air. I have FlashBlock, Ad Block, and NoScript installed. I had all of those on Firefox on my previous Mac running Mavericks, with no p

  • IPhone 4 for non-us citizen in the USA

    Hello! I'm from Russia. In the end of the August I'll travel to the USA (San-Francisco). So I've got a question about purchasing iPhone 4 in the USA by non-us citizen (without AT&T contract). Can I buy iPhone 4 without contract in usual Apple Store?

  • Creation of Standby database on same host

    Hi All, I am using oracle 9.2.0.1.0 on windows XP machine. *I want to create the standby database for my primary database on same machine. But both tha data base is heaving diff instance as well as the diff database name say "ASHU" for primary & "TES

  • How to locate the Search Help?

    Hi, According to the following code the search help is “cram”, but when I went to the "crhd" Dictionary using SE11 could not find any search help for field "arbpl" such as “cram”. This means there is another way of finding the search help.  SELECT-OP