No 5.1 sound in games using LogitechZ5300 and Audigy

Hey all. I realize that you can't get 5. sound in games through digital output. So I bought a very nice sound system (Logitech) which is a 5. system, and have it hooked up properly. (The Creative Speaker test confirms that each channel works properly). I also appreciate that stereo sound should only come through the front left and right speakers.
So all that said, I can't get 5. sound from modern games such as Bioshock and Neverwinter nights. I get stereo only. Both games support EAX. So far I have EAX and CMSS off. If I enable CMSS i do get surround but this is just 'copied' sound from the front to some degree. I finally want to enjoy nati've 5. surround, it should be working but I'm not sure why. Any thoughts?

I figured it out, you need to enable EAX from creative speaker settings, then everything works. I have XP btw.

Similar Messages

  • I have no sound playing games but video and music has sound

    I have a brand new ipad2 that works perfect except there is no sound playing games.  If you use headphones there is sound.  Video, music etc. All have sound.

    Check the side switch above the volume rocker on the side of the iPad. FLip it the other way and see if you get sound from the apps.
    If not, double tap the home button to bring up the task bar at the bottom. In the task bar swipe all the way to the right. Look on the far left side and see if there is a speaker icon. If there is, tap it and see if the sounds on apps come back. Then tap the home button.
    You can change how the side switch works to either lock screen rotation or to mute system sounds. You can go to Settings>General>Set Side switch to Lock Rotation or mute. If you choose mute, the switch will turn off apps sounds. Otherwise you use the task bar as described above to mute those sounds.

  • Developing ios/android game using flash and action script

    I'm completely new to this, I have done a bit of research about using flash to create ios/android apps, but one thing really confuses me is,
    should I create my game in flash lite or in air? I know swf format will not be supported, so i will leave that one out...
    If using air format you need to install the air application in your iphone or andriod devices before the game can be played?
    Is it possible not to use air for apps development using flash?
    Since it is somehow non-user friendly as users were prompt to download and extra application before any game can be played...
    thanks for the help in advance...

    You want to use AIR not FlashLite - for iOS the end user doesn't need to install the AIR runtime, on Android they will however. But it's painless...
    You don't need AIR for apps in Flash, but you do need to publish using AIR if going to iOS or Android.
    Be sure to get AIR 2.7 and copy it over 2.6 - CS 5.5 installs with 2.6 which runs much slower on iOS, than does 2.7

  • I have an iPad 2 and all of a sudden I have no sound in game apps. I have usual volume in videos and YouTube, I do get volume for games if I plug in headphones. I have switched to screen lock off and on again and I have also done a reset twice.....help :)

    I have an ipad2 and all of a sudden I have stopped getting sound in my game apps. I get normal sound on YouTube and I player and downloaded DVDs. If I plug headphones in then I can get sounds for the games. I have switched the lock screen button off and on again and done a reset twice, can anyone help me with this?

    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
    To solve some sound problems, just follow these simple steps
    1. Go to Settings
    2. Tap on General
    3. Tap on Reset
    4. Tap on Reset All Settings
     Cheers, Tom

  • Adding sound to game application

    Can anyone assist me or provide a link as to how I can add sound to an application(non-applet)? In this case it is a space invaders clone tutorial; now I would like to add sound to when either the player or the aliens fire a laser. The problem is that I'm not sure how to do it. I initially tried using the AudioStream attribute from the sun.audio class but it did not work. Also I would like to add new images to the game background but when I add images to the panel, it does not appear when executed; the game loop I think affects this. Here is some code snippets:
    The initial setup function:
    public Game() {
              //ImagePanel p1 = new ImagePanel(new ImageIcon("City.png").getImage());
              // create a frame to contain our game
              JFrame container = new JFrame("Space Invaders 101");
              // get hold the content of the frame and set up the resolution of the game
              JPanel panel = (JPanel) container.getContentPane();
              panel.setPreferredSize(new Dimension(800,600));
              panel.setLayout(null);
              // setup our canvas size and put it into the content of the frame
              setBounds(0,0,800,600);
              panel.add(this);
              // Tell AWT not to bother repainting our canvas since we're
              // going to do that our self in accelerated mode
              setIgnoreRepaint(true);
              // finally make the window visible
              container.pack();
              container.setResizable(false);
              container.setVisible(true);
              // add a listener to respond to the user closing the window. If they
              // do we'd like to exit the game
              container.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              // add a key input system (defined below) to our canvas
              // so we can respond to key pressed
              addKeyListener(new KeyInputHandler());
              // request the focus so key events come to us
              requestFocus();
              // create the buffering strategy which will allow AWT
              // to manage our accelerated graphics
              createBufferStrategy(2);
              strategy = getBufferStrategy();
              // initialise the entities in our game so there's something
              // to see at startup
              initEntities();
         }then the class for firing a shot:
    public class ShotEntity extends Entity {
         /** The vertical speed at which the players shot moves */
         private double moveSpeed = -300;
         /** The game in which this entity exists */
         private Game game;
         /** True if this shot has been "used", i.e. its hit something */
         private boolean used = false;
          * Create a new shot from the player
          * @param game The game in which the shot has been created
          * @param sprite The sprite representing this shot
          * @param x The initial x location of the shot
          * @param y The initial y location of the shot
         public ShotEntity(Game game,String sprite,int x,int y) {
              super(sprite,x,y);
              this.game = game;
              dy = moveSpeed;
          * Request that this shot moved based on time elapsed
          * @param delta The time that has elapsed since last move
         public void move(long delta) {
              // proceed with normal move
              super.move(delta);
              // if we shot off the screen, remove ourselfs
              if (y < -100) {
                   game.removeEntity(this);
          * Notification that this shot has collided with another
          * entity
          * @parma other The other entity with which we've collided
         public void collidedWith(Entity other) {
              // prevents double kills, if we've already hit something,
              // don't collide
              if (used) {
                   return;
              // if we've hit an alien, kill it!
              if (other instanceof AlienEntity) {
                   // remove the affected entities
                   game.removeEntity(this);
                   game.removeEntity(other);
                   // notify the game that the alien has been killed
                   game.notifyAlienKilled();
                   used = true;
    }The main game loop:
    public void gameLoop() {
              long lastLoopTime = System.currentTimeMillis();
              // keep looping round til the game ends
              while (gameRunning) {
                   // work out how long its been since the last update, this
                   // will be used to calculate how far the entities should
                   // move this loop
                   long delta = System.currentTimeMillis() - lastLoopTime;
                   lastLoopTime = System.currentTimeMillis();
                   // Get hold of a graphics context for the accelerated
                   // surface and blank it out
                   Graphics2D g = (Graphics2D) strategy.getDrawGraphics();
                   g.setColor(Color.black);
                   g.fillRect(0,0,800,600);
                   // cycle round asking each entity to move itself
                   if (!waitingForKeyPress) {
                        for (int i=0;i<entities.size();i++) {
                             Entity entity = (Entity) entities.get(i);
                             entity.move(delta);
                   // cycle round drawing all the entities we have in the game
                   for (int i=0;i<entities.size();i++) {
                        Entity entity = (Entity) entities.get(i);
                        entity.draw(g);
                   // brute force collisions, compare every entity against
                   // every other entity. If any of them collide notify
                   // both entities that the collision has occured
                   for (int p=0;p<entities.size();p++) {
                        for (int s=p+1;s<entities.size();s++) {
                             Entity me = (Entity) entities.get(p);
                             Entity him = (Entity) entities.get(s);
                             if (me.collidesWith(him)) {
                                  me.collidedWith(him);
                                  him.collidedWith(me);
                   // remove any entity that has been marked for clear up
                   entities.removeAll(removeList);
                   removeList.clear();
                   // if a game event has indicated that game logic should
                   // be resolved, cycle round every entity requesting that
                   // their personal logic should be considered.
                   if (logicRequiredThisLoop) {
                        for (int i=0;i<entities.size();i++) {
                             Entity entity = (Entity) entities.get(i);
                             entity.doLogic();
                        logicRequiredThisLoop = false;
                   // if we're waiting for an "any key" press then draw the
                   // current message
                   if (waitingForKeyPress) {
                        g.setColor(Color.white);
                        g.drawString(message,(800-g.getFontMetrics().stringWidth(message))/2,250);
                        g.drawString("Press any key",(800-g.getFontMetrics().stringWidth("Press any key"))/2,300);
                   // finally, we've completed drawing so clear up the graphics
                   // and flip the buffer over
                   g.dispose();
                   strategy.show();
                   // resolve the movement of the ship. First assume the ship
                   // isn't moving. If either cursor key is pressed then
                   // update the movement appropraitely
                   ship.setHorizontalMovement(0);
                   if ((leftPressed) && (!rightPressed)) {
                        ship.setHorizontalMovement(-moveSpeed);
                   } else if ((rightPressed) && (!leftPressed)) {
                        ship.setHorizontalMovement(moveSpeed);
                   // if we're pressing fire, attempt to fire
                   if (firePressed) {
                        tryToFire();
                   // finally pause for a bit. Note: this should run us at about
                   // 100 fps but on windows this might vary each loop due to
                   // a bad implementation of timer
                   try { Thread.sleep(10); } catch (Exception e) {}
         

    for basic sounds, you can use the JavaSound API.
    http://java.sun.com/docs/books/tutorial/sound/index.html
    There are plugin libraries available that add MP3 and OGG support to it.
    http://www.javazoom.net/index.shtml

  • I am not able to hear any sounds of games on the speaker. Though the sounds function on the head fones. The speaker works perfect in other applications except games.Have checked all the settings but not able to fix it.

    i am not able to hear any sounds of games on the speaker. Though the sounds function on the head fones. The speaker works perfect in other applications except games.Have checked all the settings but not able to fix it.

    Have you got notifications muted ? Only notifications (including games) get muted, so the iPod and Videos apps, and headphones, still get sound. Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and its the icon; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085
    If that doesn't solve it then try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Sound for games doesn't work on iPad 2

    Sound works on iPad 2 for everything except games. Is there some special way to get sound for games to work?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
     Cheers, Tom

  • K7N420 and 5.1 sound in games?

    I've just bought the Inspire 5300 speakers from Creative, but I can't get any sound from the center speaker while playing games. DVDs play fine with DD5.1. I have the speakers conneced to the analog outs.
    I have connected the digital out to a DD receiver with the exact same result: 5.1 with DVDs and 4.0 with games.
    Is it a driver limitation or am I doing something wrong?
    /S

    Quote
    Originally posted by Ebendigo
    I don't think it's a driver issue.  I've been playing MOHAA with my Yamaha TSS1 speakers and it' been playing in 5.1.
    What are your settings for the digital output? If you have it set for anything other than DD, the output is always a two channel digital stream. That stream would then be decoded as "Pro Logic" by your TSS1 speaker system, thus providing sound from all 6 speakers. I'm sorry to say, but that is not true 5.1 sound.
    Is it actually true the the game itself must specifically support 5.1 to get real non cheated 5.1 3D sound?
    I have programmed some very small applications where a high level 3D sound API was used. You simply put sound sources and a listener in 3D space, and the underlying mechanism (Engine -> DS3D -> Driver -> HW) did the rest. I honestly don't know anything about the interface between DirectSound3D and the driver, but I had the impression that it was the driver's job to present the given 3D sound with whatever speakers avaiable.
    Either way I think it's a serious flaw that one of the speakers is muted instead of playing the sounds that come from that direction.

  • No 5.1 sound in games with Creative digital speakers

    Hi,
    is it true that you can't use 5.1 sound in games with a Creative soundcard and Creative digital speakers?

    Go to Knowledge Base article SID3069 then expand the "7. Soundblaster Cards".
    It is possible to have 5. digital sound in games if your Creative speaker system has a digital DIN connection.

  • I have no sound for games in my iPad. I have tried the reset but it does not work. The speakers work as I have sound for music and videos.

    I have no sound for games in my iPad. I have tried the reset but it does not work. The speakers work as I have sound for music and videos.

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) http://support.apple.com/kb/ht1430
    Check your settings. The iPads have a small switch on the right edge. http://support.apple.com/kb/ht1430 It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/ts5180
    iPhone: Can’t hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
    To solve some sound problems, just follow these simple steps
    1. Go to Settings
    2. Tap on General
    3. Tap on Reset
    4. Tap on Reset All Settings
    What this effectively does is to reset some of your Settings to factory default. It’s not a complete removal of settings. It removes all of your preferences for Wi-Fi, Bluetooth, Do No Disturb, Notifications, General, Sounds, Brightness & Wallpaper and Privacy. It doesn’t affect your data. All of your email accounts will remain intact, as well as any SMS text or iMessages.
     Cheers, Tom

  • Flash crashes sound and prevents sound from being used on the entire computer

    Hi everyone,
    I have been using firefox all my life and have been running into the following issue recently.
    Whenever I play flash games (such as chess.com), after a minute or two the sound stops working. At first I thought it was just the website, but I would navigate to a youtube video that used flash and it would crash after 1 second. I then tried to play a song locally and it said that I was out of memory, which I doubt since I have 16gb of RAM. I tried running chess.com on IE (sadly) and everything worked fine.
    I am starting to run out of ideas. I have reinstalled firefox and flash. Any debugging information that I can provide, just let me know how to get it for you.
    Some info about my computer/setup:
    Windows 7
    Firefox 34.0.5
    Shockwave Flash 16.0.0.235
    Thanks
    Update:
    I am now experiencing similar issues on my Windows 8.1 box. This might be caused from a windows update. Will update if I find out more

    It's related to your video card drivers.  You can tell Flash to not use hardware acceleration.  This might solve the issue.  You also might want to make sure you're running the latest available drivers for your hardware. 
    Details are in our video troubleshooting guide:
    Video playback issues

  • I muted the sound while playing angry birds and now I can't get the sound back. I have the sound on ipod, just not with the games.

    I muted the sound while playing angry birds and now I can't get the sound back. I'm fine with ipod, just the games

    If you lose sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • TS3274 no sound on games but sound when i play music

    no sound on games but sound when i play music

    If you lose sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds may have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • IPad 2 has no sound unless I use headphones???

    My iPad has no sound unless I use headphones. Any suggestions? I have checked all settings, etc.

    Have you got notifications muted ? Only notifications (including games) get muted, so the iPod and Videos apps, and headphones, still get sound. Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and it's the icon; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085

  • Stuttering sound in games

    A lot of people have reported (on other forums) having stutering sound whilst games hang for 10-15 seconds. I han't had those problems untill I moved my games to a Sata drive from an ordinary IDE drive.  I moved them back and the stuttering stopped!
    Has anyone noticed this running games from a Sata drive?
    Poor old Valve have come in for a lot of stick over HL2 doing this. I wonder how many with this problem are running it from a Sata Drive? Could be the problem is Nvidia's!
    Better go to Valve's forum and ask.

    Quote
    Originally posted by JER101
    Quote
    Originally posted by dacull
    I don't think so, people with many different types of motherboard have reported the problem, apparently..
    according to
    http://www.blep.net/hl2stutter/
    It occurs on both Intel and AMD CPUs of all speeds.
    I studied that link and can't any reference to disk controllers, yet many are admament that  the problem is poor sound caching which requires sounds to be loaded (from disk!). How the disk controller functions during intensive system use as typified by 3d games could be at the heart of the problem. Other games with large datebases also  stutter, such as Microsoft Train sim.
    I'm not saying you are not onto something .. ive had very similar problems with a supposedly top of the range dell laptop with a bad HD interface, everytime it accessed the disk, everyhing would stop momentarily, there is no reason that should be the case and just shows that it is not releasing its interrupt quickly enough.
    The reason I pointed the link out is that you were hinting it was the nvidia sata implementation but i think thats only for AMD (atleast now) yet the link implies that intel systems are affected also.
    The sooner the cause is discovered the better.. I get it , its not too bad though. installing the new nvidia separate sound drivers helped alot.

Maybe you are looking for

  • How can I set my date and time to ebay network time server?

    In the system preferences I would like to set the date and time to ebay UK time? I thought a quick google would be bring up the server and I can't find it. At the bottom of every ebay page there is a link to official ebay time But its not a live feed

  • Oracle Content Server Search Gives JavaScript Error

    There is a content server Search error I am facing over here.Whatever criteria or metadata is entered the javascript error comes.It shows the following: Line:1445 Char:4 Error:Object doesn't support this property or method. Code:0 URL:http://172.18.4

  • Budget Carryforward process

    Dear All I have the following scenerio. Original Budget (2010)- 100 Released Budget(2010)-100 PO commitment(2010) - 20 Actual (2010)- 30 Assigned Budget(2010)-50 Available budget(2010)-50 I want to Carryforward budget in 2011. Please let me know the

  • Problem adding third party emails on replacement 9300

    Hi, can anyone help? I had a 9300 with an enterprise email plus I had a number of btconnect email accounts that I had successfully set up. The phone became faulty and Vodfone replaced it with a new 9300 with Blackberry 6.0. I have tried adding the bt

  • Disabling get command in SFTP shell

    we are currently running openssh-5.2 on Solaris 5.10 server. Is there a way to restrict the commands in SFTP shell. ex "need to disable get command alone " is there any option to reconfigure SSH & get achive this Regards S.Vijay