"Front Left", "Front Right" from the same speak

I am having an issue I am hoping to get answered. I have Boston Acoustic speakers which I am currently using on a new computer with a SoundBlaster XiFi. I can only hear sound from the left channel (The speaker that plugs INTO the right speaker that plugs into the Subwoofer). When I go to run an diagnostics test, it says :
Speaker : Front Left... Front Right
Speaker 2: (Nothing)
Speaker 3: Rear Left
Speaker 4: Rear right.
I know that this is not a problem with the hardware as I can plug these speakers into the computer right next to me & they work fine. I see that this problem crops up very often on these forums, I hope someone can point me in the right direction.
Thanks

No jack problem at all. I have also suffered myself some problems with "speaker switching" with the X-Fi. Only a full reinstall of all creative drivers has solved it, at least for me. I have posted it some times here, but I always get silence as a response. A common problem is that front right speaker dissapears when it was working perfectly.
It's a bug, no matter what Creative says (unfortunately they say nothing), there are a lot of posts regarding this

Similar Messages

  • How can I write left and right in the same line of a richtextbox?

    I want to write, in the same line, text with a right aligment and other with left aligment. How can I do it?
    thanks

    I want to write, in the same line, text with a right aligment and other with left aligment. How can I do it?
    thanks
    As
    Viorel_ says "Perhaps there are other much easier solutions. For example, create two
    RichTextBoxes with no borders (if you only need two columns of text)" but the real issue would be saving the info in the RichTextBox's (RTB's) RTF or Text to two different RTF or TextFiles. Although I suppose if it was just going to
    a TextFile then you could somehow use a delimited text file so each same line number of each RTB is appended to the same line and delimited. That way you could probably load a split array with each line from the text file splitting on the delimeter per line
    and providing RTB1 with index 0 of the split array and RTB2 with index 1 of the split array. I'm not going to try that.
    This is some leftover code from a long time ago. It has three RTB's. RTB1 is there I suppose because the thread asking for this code wanted it. RTB2 is borderless as well as RTB3. The Aqua control in the top image below is the Panel used to cover RTB2's
    scrollbar. So RTB3's scrollbar is used to scroll both controls.
    I forgot to test if I typed past the scroll position in RTB2 if both would scroll as maybe RTB3 would not since it would not have anything to scroll to I suppose.
    Maybe this code can help or maybe not. The bottom two images are the app running and displaying nothing scrolled in RTB2 and RTB3 then the scroll used in the bottom image.
    Disregard the commented out code in the code below. It was there so I left it there. I suppose you should delete it. Also I didn't set the RTB's so one was left aligned and the other right aligned. I believe the Panel becomes a control in RTB2's controls
    when it is moved to cover RTB2's vertical scrollbar but don't remember although that seems the case since both RTB2 and RTB3 are brought to front so if the Panel was not one of RTB2's controls I would think it would be behind RTB2 and RTB2's vertical scrollbar
    would display but don't remember now. In fact I don't really remember how that part works. :)
    Option Strict On
    Public Class Form1
    Declare Function SendMessage Lib "user32.dll" Alias "SendMessageW" (ByVal hWnd As IntPtr, ByVal msg As Integer, ByVal wParam As Integer, ByRef lParam As Point) As Integer
    Const WM_USER As Integer = &H400
    Const EM_GETSCROLLPOS As Integer = WM_USER + 221
    Const EM_SETSCROLLPOS As Integer = WM_USER + 222
    Dim FixTheProblem As New List(Of String)
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.CenterToScreen()
    Panel1.BackColor = Color.White
    Panel1.BorderStyle = BorderStyle.Fixed3D
    RichTextBox2.BorderStyle = BorderStyle.None
    RichTextBox2.ScrollBars = RichTextBoxScrollBars.Vertical
    RichTextBox3.BorderStyle = BorderStyle.None
    RichTextBox3.ScrollBars = RichTextBoxScrollBars.Vertical
    RichTextBox3.Size = RichTextBox2.Size
    RichTextBox3.Top = RichTextBox2.Top
    RichTextBox3.Left = RichTextBox2.Right - 20
    Panel1.Size = New Size(RichTextBox2.Width * 2 - 16, RichTextBox2.Height + 4)
    Panel1.Left = RichTextBox2.Left - 2
    Panel1.Top = RichTextBox2.Top - 2
    RichTextBox2.BringToFront()
    RichTextBox3.BringToFront()
    FixTheProblem.Add("Curry: £6.50")
    FixTheProblem.Add("Mineral Water: £4.50")
    FixTheProblem.Add("Crisp Packet: £3.60")
    FixTheProblem.Add("Sweat Tea: £2.23")
    FixTheProblem.Add("Motor Oil: £12.50")
    FixTheProblem.Add("Coca Cola: £.75")
    FixTheProblem.Add("Petrol Liter: £3.75")
    FixTheProblem.Add("Shaved Ice: £.50")
    FixTheProblem.Add("Marlboro: £2.20")
    FixTheProblem.Add("Newspaper: £.25")
    FixTheProblem.Add("Spice Pack: £.75")
    FixTheProblem.Add("Salt: £.50")
    FixTheProblem.Add("Pepper: £.30")
    For Each Item In FixTheProblem
    RichTextBox1.AppendText(Item & vbCrLf)
    Next
    RichTextBox1.SelectionStart = 0
    RichTextBox1.ScrollToCaret()
    Dim Fix As String = ""
    For Each Item In FixTheProblem
    Fix += Item.Replace(":", "^:") & vbCrLf
    Next
    Fix = Fix.Replace(vbCrLf, "^>")
    Dim FixSplit() As String = Fix.Split("^"c)
    For i = 0 To FixSplit.Count - 1
    If CBool(i Mod 2 = 0) = True Then
    RichTextBox2.AppendText(FixSplit(i).Replace(">"c, "") & vbCrLf)
    ElseIf CBool(i Mod 2 = 0) = False Then
    RichTextBox3.AppendText(FixSplit(i) & vbCrLf)
    End If
    Next
    End Sub
    Dim RTB2ScrollPoint As Point
    Private Sub RichTextBox2_Vscroll(sender As Object, e As EventArgs) Handles RichTextBox2.VScroll
    Dim RTB2ScrollPoint As Point
    SendMessage(RichTextBox2.Handle, EM_GETSCROLLPOS, 0, RTB2ScrollPoint)
    SendMessage(RichTextBox3.Handle, EM_SETSCROLLPOS, 0, New Point(RTB2ScrollPoint.X, RTB2ScrollPoint.Y))
    'Me.Text = RTB2ScrollPoint.X.ToString & " .. " & RTB2ScrollPoint.Y.ToString
    End Sub
    Private Sub RichTextBox3_Vscroll(sender As Object, e As EventArgs) Handles RichTextBox3.VScroll
    Dim RTB3ScrollPoint As Point
    SendMessage(RichTextBox3.Handle, EM_GETSCROLLPOS, 0, RTB3ScrollPoint)
    SendMessage(RichTextBox2.Handle, EM_SETSCROLLPOS, 0, New Point(RTB3ScrollPoint.X, RTB3ScrollPoint.Y))
    'SendMessage(RichTextBox2.Handle, EM_SETSCROLLPOS, 0, New Point(0, 10))
    End Sub
    End Class
    La vida loca

  • I get noise when I combine left and right from the headphone output.

    I need to combine the left and right channels of a Macbook Pro at the output connector.  When I build the cable to do this, there is significant static noise introduced.  If I break the short between left and right, the noise goes away.
    (I'm doing this to put both channels of audio into a single side of a set of headphones, and I really don't want to buy a mixer.)

    Eddie,
    I just ran a test on my G5 Logic system (Logic 9.02) with an internal RME PCI 8in/8out Audio Card and I get perfect separation bouncing to a stereo audio file using standard panning. Click on one side and a couple of crunchy guitars on the other. Each side is completely separate.
    So, it seems to point to your hardware unless you have some other audio routing that we've missed.
    I'm re-doing my setup so I may try a couple of other tests as I go along.
    pancenter-

  • Can i turn down front left and right using ddts decoder with the g500

    hi want to get ddts 100 decoder for my gigaworks g500.when im watching a move i have to have it up on about 2.7 bars.to hear the center speaker then the action is to louad.i can turn down center and rear and sub but no front left and right.can you turn down front left and right using the decoder.do you still have to use the controll pod for the gigaworks if i had the decoder in or do u use the decoder to turn it up thanks plz help.

    System Preference > Accessibility
    Select   Mouse & Trackpad  in the left side box.
    Double-click speed 
    Make it slower by dragging the pointer to the left.
    Best.

  • How do I get an object to rotate as it moves up and down or left and right from one time key to the next ?

    how do I get an object to rotate as it moves up and down or left and right from one time key to the next ?

    I'm partial to this series:
    After Effects basics tutorials by Andrew Devis
    The subject matter is very clearly-defined by topic.
    And AE shouldn't up & quit on you... but you haven't breathed a word about your system or your AE version.  Please share.

  • Is it possible to flip the multiple choice quiz "radio" button from left to right of the answers?

    Hello forum,
    I am using Captivate version 6.1.0.319 on a Windows 7 desktop PC and would like to know if it is possible to flip the multiple choice quiz "radio" button from left to right of the answers. I am working on a project that uses the "Require Right to Left composer" within the Global Preferences: General settings. The captions has been switched from left to right but the quiz answer radio buttons did not. Any help would be appreciated.
    Thanks, in advance. 

    Hello and welcome to the forum,
    I'm not aware of such a possibility. A workaround could be to create your own MCQ slides, using standard objects and widgets like the radiobuttons widget (there is an enhanced version created by Jim Leichliter) and advanced actions. These articles were written for previous versions, but can give you an idea about the work involved:
    http://blog.lilybiri.com/widgets-and-custom-questions-part-1
    http://blog.lilybiri.com/extended-widgets-for-custom-mcq-and-tf-questi
    Lilybiri

  • HT201365 I just downloaded IOS 7. In my old software if I wanted to get to spotlight to find something I just scrolled from left to right from my home screen. That doesn't work now...so how the heck to I get to spotlight with this new system???

    I just upgraded to IOS 7. Prior to that upgrade if I wanted to get to spotlight search I just scrolled left to right from my home page and got it. Now...that doesn't work. How do I get to spotlight/search with IOS 7? Sheesh...why change such an easy basic thing anyway??? Can someone let me know please.

    Now, you get to Spotlight by swiping down from the home screen, but do not start the swipe at the top of the screen.  Start it in the middle somewhere.

  • How can I get rec'd text messages from the same subscriber not be appended

    Hi,
    Is there a way to configure the Apple iphone so that text messages from the same subscriber are displayed separately rather than appended to each other? In this way accidentally deleting one message wouldn't delete the entire history of messages from this subscriber.
    When I launch the SMS service by pressing the green SMS button I am met by a screen that says Text Messages. On the left of this there is a button that says Edit and on the right there is one that is for writing a new message. Down the page are my messages all grouped by the originator of each messages. If I choose one I see that all messages from this source are present appended one after the other. There is also the option now to Clear on the top right hand corner. It is this Clear option I am worried about. If I choose Clear I am asked for a confirmation and then lo and behold as expected all my messages from this subscriber are deleted.
    This is a work phone for support purposes and most of the texts will be from the telephone operator (i.e. the one same number) saying we have an email waiting to be read with a subject title giving a little description. I want to be in a position so that I don't accidentally delete the entire history of messages, say some evening when I'm tired or Monday morning if I 'm a bit asleep. Ideally I would prefer that each text message would stand alone in the Text Messages window irrespective of the originator and not be appended in a group fashion. Is there a way to do this?
    Kind regards,
    M

    There is no way to do that on the iPhone. Messages will always be grouped into a 'conversation' based on the sender/recipient. Only Apple can change that behavior.
    You can submit feedback to Apple: http://www.apple.com/feedback/iphone.html.

  • How can I easily manage different libraries of music between my iPad and my iPhone from the same computer?

    My 32 GB iPad stores much more data than my 16 GB iPhone... clearly. But I want to be able to easily sync these two seperate devices with two different sets of music from my iTunes. As it stands now, my iPad will always have the same amount of music as my iPhone because my iPhone is maxed out and the two devices are synced on the same computer from the same library. Do you understand where I'm coming from? Let me know if you need clarification.
    I want to be able to have my iPhone filled with individual songs, whereas my iPad would have the full albums. There doesn't seem to be an efficient way to do this with one computer. Any suggestions would be great. Thanks.

    It can be done very easily actually. I do it with three different iDevices.
    Connect the iDevice to your PC and launch iTunes. Select the iDevice from the left sidebar of the iTunes window. Then click on the Music Tab. Select only the music that you want on that particular iDevice and then sync the device with those selections.
    Do the same thing with the other iDevice. When you sync with iTunes the next time, iTunes will remember the music that was synced to that device.
    Make sure that you uncheck Sync Entire Music Library and check Sync Selected playlists, albums, etc and then select all of the music for each device.
    When you make changes to the current configuartion on the iPad - you will have to click on Apply in the lower right corner of the iTunes window.

  • Why does iTunes display the same album art for different songs, but from the same artist?

    Hi,
    a couple of days ago I decided I wanted all of my songs to have an album art. Before I didn't actually care, but since I discovered the view mode with the album arts at the top (the fourth one) I began searching for the right arts, since I like it this way.
    I've stumbled upon a problem though. When I add two or more songs from the same artist, iTunes chooses to assign the same album art to the songs. It chooses the album art of the song I added first to my music library. How do I get it to show the proper album art?
    I use a program called 'Mp3Tag' to change all the information of my songs. When it's just a single, I end up having an 'artist', 'title', 'genre' and 'cover'. The rest of the information doesn't bother me. With albums I add more information though.
    Here's an example:
    I added two songs, one being 'Usher - Climax (Kaskade Remix)' and the other one being 'Usher - Scream'. The one added first was 'Scream'. As you can see below, iTunes somehow assigns the same album art to both songs, while clicking on 'get info' clearly shows the songs have different album arts.
    I discovered something else though:
    When adding an 'album name' to the songs, they will show properly, as seen below. The thing is though, I don't want to add an album name. When I sync the songs to my iPod, my 'albums' list will show all of the songs as well, which I don't want.
    Is there any way to solve this another way where iTunes won't sort by album, but by song title?
    Thanks in advance.

    Can anyone please answer my question?

  • Is it possible to sync AND stream from the same iTunes library?

    Hi,
    I am having trouble in setting up sync AND stream from the same iTunes library.
    Config :
    Mac OS - Latest update 5/6/09
    iTunes - Latest update 5/6/09
    Apple TV - Latest update 5/6/09
    I am able to either sync OR Stream from my iTunes library but not sync AND stream from the same iTunes library
    Let's say i want to sync :
    Go to Apple TV > Settings > computer
    Add Library (Not shared for Syncing)
    Enter passcode in iTunes and select the items to sync
    After sync is complete
    You can see photo, music & video in My Photos, My Music & My Videos.
    Let's say now my Apple TV is full
    So like to stream some other content
    Now
    Go to Apple TV > Settings > computer
    Add SHARED Library
    Passcode is shown in apple TV but not able to Enter it in iTunes (click to set link is not there next to Apple TV item under devices)
    To get that you have to right click the apple tv from the devices and select don't sync.
    You will get a message saying that all content in apple TV will get deleted.
    If you say yes then only the passcode screen for streaming is presented.
    So i am not able to sync AND stream from the same iTunes library.
    Any idea?

    macanandapple wrote:
    1. The checkbox for "show only synced content" should be unchecked
    yes
    2. No need to Add Shared Library
    correct
    3. After syncing is complete as per the steps said before, if i have to see a synced content i go to My Movies for streamed content i have to go to Shared Movies?
    no... both synced and streamed content show up all together. there is no way to tell what content is synced or streamed when looking at it on the appletv. it is seemless as in there is no difference in how it is presented.
    you also need to make sure you are using "custom sync" rather than "automatic sync", as you can't select the "show only synced content" box when using "automatic sync".

  • Merge of planned orders from the same product

    Hi Experts,
    We have some lines where we process materials with different properties so setup time/costs between ones and anothers are very important.
    If we run the PPDS Optimizer or scheduling based on setup groups for a period of 2 weeks then depending on the demands we may get 2 or 3 orders of the same material followed. Is there a possibility that once we have the short-term plan and we have this situation we run a heuristic that merge orders from the same material into one order? Capacity Driven heuristic does not fulfill our requirements.
    Ex:
    Order 1 = 10000 PC
    Order 2 = 20000 PC
    Order 3 = 5000 PC
    They are followed in the resource so we would like to have one of 35000 PC.
    Right now, we are using a simulation so looking at the total amount of the followed orders then we can get an idea of which should be the minimum lot size to be used .   They can also modify the total quantity of the first order with the sum of the others but none of these 2 options makes the customer totally happy.
    Any suggestions?
    Regards
    CTF

    After PPDS Optimizer .
    Get the list of all FG PPDS orders into an internal table.
    Use     BAPI_PRDSRVAPS_GETLIST2
               BAPI_MOSRVAPS_GETLIST2
    Consolidate the orders which are in scheduled status for each product, resource and PPM.
    Sum the quantities.Create the Orders and delete the old orders.
    Use BAPI_MOSRVAPS_DELEMULTI (For deleting the Orders)
    Use BAPI_MOSRVAPS_SAVEMULTI3( For creating a new Order)
    Thanks,
    nandha

  • Can I run two PIDs from the same vi?

    Hi
    I want to control speed of the rotating shaft and force applied by the pneumatic cylinder using two different PIDs from the same program.
    I managed to get two PIDs to work separatly using PID control loop VI`s supplied with labview 6.1 (I got Kc, I and D right, so there is no overshoot). When I try to run both PIDs within my vi they don`t work. I again tried various gains and managed to get one PID to work but not the other. Then through trial and error I managed to get a second PID to work but I had to change refresh time of the FOR loop from 100msec to 1msec.
    Does anyone have experience with running two PIDs in the same program? Does the timing of the FOR loop influence PID contorller? Does equiring of other data while run
    ning PID has effect on the PID?
    I would really appreciate any comments/help. I am pretty thrustrated at this time
    Thanks"

    The timing of the FOR loop will influence your PID control, which is a fundamental part of PID control. Acquiring data doesn't affect the PID although it could affect the timing of the loops. For instance if you only have one DAQ card you would want to have it all in one loop because you can not have two AI sessions open to the same card.
    For more detailed information on PID I would recommend reading the "PID Control Toolset
    User Manual" which should have been installed to your machine but can also be found at : PID Control Toolset User Manual"
    Regards,
    JR A.
    Application Engineer
    National Instruments

  • Syncing & Streaming from the same Library? - Noob question

    Good Evening - I have a silly noob question that I can't believe I can't find the answer to on my own: I have been trying to determine if it is possible to sync and stream from the same library simultaneously.
    I purchased the 40GB aTV and it has been syncing just fine with my Windows iTunes. I told it not to sync a few albums I never listen to so I wouldn't have issues with other songs or movies. I am upgrading to a new iMac and I am am going to re-rip many of my existing CD's to get them into a consistent audio quality of 192 AAC or above. This is going to push my library size to well over the 40GB limit in just music, not including any movies or TV shows I choose to pull in.
    The manual does not make it obvious (or I am not reading clearly) what happens to items that don't sync over - I assume they are still playable but will have to stream. Is there anyway to mark "preferred" albums or artists that should get synced and not streamed in case the iTunes library is unavailable for whatever reason?
    Also, when I change libraries is the aTV going to completely re-sync even though the music is must going to be migrated?
    Thanks for taking the time to answer these silly questions.

    That's not quite what I was looking for.
    My question remains, what happens to the items that can't be synced from my main library to my aTV? My library is just a smidge bigger than the available space on the aTV and not everything syncs over. Does that mean I won't be able to play those items not synced from my main library...
    As my library grows I don't want to have to choose what does and doesn't get synced from my library by mood. For example, every year my wife buys new christmas music - right now I could exclude it and everything else gets copied over, but come thanksgiving that stuff better be there for her and I don't want to choose other music or movies to remove.
    I guess I will just have to play to try it out.

  • (LR5) Is there a way to keep the history of separate developments from the same RAW file?

    For example, I want to create both a color and a B/W version from the same original. Let's say that in the color version I want to use one value for contrast, while in the B/W version I want a higher contrast. I want to keep track of both sets of changes.
    Right now, after I finish developing the color version and export to a final file, I reset to the original and start developing the B/W version up to its export phase. But then, if I realize that I want to do some adjustment to the color version, if I go back in history to the final change for the color version and do the adjustment on it, the history of changes for B/W gets overwritten.
    What I want is to keep track of the changes of each version as some sort of separate history branches...
    (I'm using Lightroom 5)

    Yes you can create a virtual copy. Select your image and from the top toolbar click:
    Photo >> Create Virtual Copy
    Then change to B&W and use you different settings.
    Good news - this does not duplicate your image on disk; it’s stored as metadata in the catalog.

Maybe you are looking for

  • How to get the file name from Oracle B2B 10g

    Hi My requirement is I am getting a CSV file from Trading partner, I am using oracle 10g b2b to translate the data. In my BPEL 10g I am using AQ adapter to get the message from IP_IN_QUEUE. Now I want to get the file name Eg: SampleFile.dat of the CS

  • How to use PUSHBUTTON in ABAP Program?

    Hi, I'm not able to get any output for the below code. SELECTION-SCREEN BEGIN OF BLOCK TT WITH FRAME TITLE TEXT-004. PARAMETERS : X(15) TYPE C DEFAULT 'HI SAPERS'. SELECTION-SCREEN SKIP. SELECTION-SCREEN BEGIN OF LINE. SELECTION-SCREEN COMMENT 1(70)

  • Report for each project from sales order

    Hi All, I am creating a project network from sales order. Now i want a report from the sales order showing what is invoiced and the balance in each line item for the sales order. Is there any standard report available. Thanks in advance. Amit

  • Why does, Apple suggest that I turn off firewall to use features of itunes?

    I'm just wondering why i have to turn off the only defense my mac has to use, Apple tv or Airplay? Is this safe?

  • Moved house and am now on the wrong exchange

    Hey guys.  I'm hoping that someone could give me a straight answer as to where to go from here before I head to Telecommunications Ombudsman as I'm over trying to speak with people that are not willing to help.  I moved house 6 months ago from anothe