Subwoofer seems not to be working?

Last week, I purchased Best Buy's daily deal, the Insignia rocketboost wireless subwoofer.  With it I purchased the Rocketfish-rocketboost wireless receiver/transmitter.  I hooked up the transmitter to the back audio out of my Sony Bravia tv.  I plugged in the subwoofer across the room.  I was able to easily connect them.  Both blue lights are on the back of the subwoofer, and all lights are steady on the transmitter.  But I hear nothing coming from the subwoofer?  I tried changing the input on my tv, but none other worked than the HMD1.  I then plugged in the transmitter to the audio out of my dvd player and plugged that back into my tv where it was, but still nothing.  Not sure what is wrong? Can anyone help?
Thanks!
Olivia

You might have to post some pictures of your set up, that might make this easier. Or atleast post some model numbers as products are different even within manufactures product lines.  
But, I still believe on Sony tv's you have to tell them you are using some time of audio out. 
I dont' know why you're using ANY type of external sound without a A/V reciever anyways. Unless it's a soundbar. 
Former BBY Home Theater Associate 2010 - 2012. Now I work as a graphic designer in the print and prepress industry.

Similar Messages

  • Having upgraded all my devices to IOS 6, including iPad And upgraded no montan limón no my macbookpro, iCloud seems not to be working as smoothly anymore And some impagos docs have not transferred. Help

    Having upgraded all my devices to IOS 6, including iPad And upgraded no montan limón no my macbookpro, iCloud seems not to be working as smoothly anymore And some impagos docs have not transferred. Help

    Having upgraded all my devices to IOS 6, including iPad And upgraded no montan limón no my macbookpro, iCloud seems not to be working as smoothly anymore And some impagos docs have not transferred. Help

  • HT4628 My airport seems not to be working anymore. I have internet but now I can't play music through Itunes remotely. Airport kept flashing amber. Now I have tried to reset it it only flashes briefly amber and then no more light and it seems disconnected

    My airport seems not to be working anymore. I have internet but now I can't play music through Itunes remotely. Airport kept flashing amber. Now I have tried to reset it it only flashes briefly amber and then no more light and it seems disconnected?? Any help out there?

    Unfortunately the Netgear DG834N router is rubbish with Macbook Pro's. I've had a few netgear routers, which were all good with my mac, which is why I bought the 'N' series one as an upgrade to the 'G' version, but basically it crashes my Mac constantly. I get the fade up grey screen forcing my to hard power off my book. everything freezes. It plain just doesn't work. wireless 'N' is still just in draft form and the difference between the Netgear and Mac version on the macbook pro just clash. Netgear haven't updated the firmware on the router since last year, so hopefully the will soon, but I've just gone back to my old 'G' version, and stuck the DG834N on ebay. I tried all the configs, with and with out security and no luck, it always disconnected, froze and crashed.

  • A Cooling Fan seems not to be working

    A message from HP: A cooling Fan seems non to be working, the system will shut dowin in 15 seconds

    Hi ErmannoFelici,
    Thank you for visiting the HP Support Forums and Welcome. I have read your thread on your HP Notebook and getting a cooling fan error. Here is a link to troubleshoot overheating.
    I would be happy to assist if needed. How Do I Find My Model Number or Product Number?
    Please respond with which Operating System you are running:
    Which Windows Operating System am I running?
    Please let me know.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Items BulkAction - "Copy" seems NOT to be working?

    I AM TRYING TO COPY MANY ITEMS USING THE "BULK ACTION" FROM ONE FOLDER TO ANOTHER IN THE SAME CONTENT AREA.
    I FOLLOWED THE CORRECT STEPS BUT NO ITEM IS COPIED.
    THE BULK ACTION "DELETE" SEEMS TO BE WORKING OK.
    DID ANYBODY EXPERIENCE THE SAME PROBLEM?
    I AM USING PORTAL 3.0.9 / W2000
    I WORK IN SPANISH LANGUAGE.
    ANOTHER THING, COPYING ONE ITEM AT A TIME (USING THE NORMAL "COPY ITEM" FUNCTION WORKS FINE).
    TKS!

    Maria,
    It works fine for me. Have you applied all the relevant 3.0.9 patches? Please check Metalink. Note that some of the patches include other patches, so read the patch release notes carefully.
    Regards,
    Jerry

  • Real Player seems not to be working properly.It downloads the video but I click "play", nothing appears on the screen.It worked ok till some days ago.I've tried resetting real player but nothing happens.How can I solve this?

    Real Player is not working properly.It downloads videos but when I click "play" ,it doesn't reproduce the video. I tried resetting Real Player but nothing happens.
    It worked fine  up until a couple of dyas ago.
    What can I do?

    compuma wrote:
    What can I do?
    Ditch RealPlayer and use a real audio app.

  • Oracle Text Context index keeps growing. Optimize seems not to be working

    Hi,
    In my application I needed to search through many varchar columns from differents tables.
    So I created a materialized view in which I concatenate those columns, since they exceed the 4000 characters I merged them concatenating the columns with the TO_CLOBS(column1) || TO_CLOB(column)... || TO_CLOB(columnN).
    The query is complex, so the refresh is complete on demand for the view. We refresh it every 2 minutes.
    The CONTEXT index is created with the sync on commit parameter.
    The index then is synchronized every two minutes.
    But when we run the optimize index it does not defrag the index. So it keeps growing.
    Any idea ?
    Thanks, and sorry for my poor english.
    Edited by: detryo on 14-mar-2011 11:06

    What are you using to determine that the index is fragmented? Can you post a reproducible test case? Please see my test of what you described below, showing that the optimization does defragment the index.
    SCOTT@orcl_11gR2> -- table:
    SCOTT@orcl_11gR2> create table test_tab
      2    (col1  varchar2 (10),
      3       col2  varchar2 (10))
      4  /
    Table created.
    SCOTT@orcl_11gR2> -- materialized view:
    SCOTT@orcl_11gR2> create materialized view test_mv3
      2  as
      3  select to_clob (col1) || to_clob (col2) clob_col
      4  from   test_tab
      5  /
    Materialized view created.
    SCOTT@orcl_11gR2> -- index with sync(on commit):
    SCOTT@orcl_11gR2> create index test_idx
      2  on test_mv3 (clob_col)
      3  indextype is ctxsys.context
      4  parameters ('sync (on commit)')
      5  /
    Index created.
    SCOTT@orcl_11gR2> -- inserts, commits, refreshes:
    SCOTT@orcl_11gR2> insert into test_tab values ('a', 'b')
      2  /
    1 row created.
    SCOTT@orcl_11gR2> commit
      2  /
    Commit complete.
    SCOTT@orcl_11gR2> exec dbms_mview.refresh ('TEST_MV3')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> insert into test_tab values ('c a', 'b d')
      2  /
    1 row created.
    SCOTT@orcl_11gR2> commit
      2  /
    Commit complete.
    SCOTT@orcl_11gR2> exec dbms_mview.refresh ('TEST_MV3')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- query works:
    SCOTT@orcl_11gR2> select * from test_mv3
      2  where  contains (clob_col, 'ab') > 0
      3  /
    CLOB_COL
    ab
    c ab d
    2 rows selected.
    SCOTT@orcl_11gR2> -- fragmented index:
    SCOTT@orcl_11gR2> column token_text format a15
    SCOTT@orcl_11gR2> select token_text, token_first, token_last, token_count
      2  from   dr$test_idx$i
      3  /
    TOKEN_TEXT      TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    AB                        1          1           1
    AB                        2          3           2
    C                         3          3           1
    3 rows selected.
    SCOTT@orcl_11gR2> -- optimizatino:
    SCOTT@orcl_11gR2> exec ctx_ddl.optimize_index ('TEST_IDX', 'REBUILD')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- defragmented index after optimization:
    SCOTT@orcl_11gR2> select token_text, token_first, token_last, token_count
      2  from   dr$test_idx$i
      3  /
    TOKEN_TEXT      TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    AB                        2          3           2
    C                         3          3           1
    2 rows selected.
    SCOTT@orcl_11gR2>

  • My apple ID's seem not to be working

    Hi  for some reason l am having heaps of trouble with my IDs for apple TV.
    It has been working fine untill yesterday now its all gone to *#&#* and l cant even get apple to send me an email to change my passwords, which l should not have to do.
    It all started when l downloaded a purchased movie on my Ipad as l was watch something else on the TV, then when l tried to access this from my Apple TV nope cant see this purchase, however when l do to re purchase the rented movie its states do you want to purchase this again?? what the!! so the apple TV knows lve done this purchase but the system cannot find the purchase!!
    HELP
    l have tried logging in and reset passwords but to no avail, tried looking for the on my Imac, can see this but does not play on imac ... so l am at a bit of a loss at the moment.
    Apple please dont let this Apple TV be a lemon!

    Same here. It worked fine this week, and now it is kicking me out.

  • My loop statement in smartforms seems not to be working...

    Hello Experts,
    I am currently practicing smartforms and I am trying to display the records of my internal table.
    What I did was in my table under MAIN window I have put the statement:
    it_spfli into wa_spfli and also in my main area of my table I have a loop statement. Now, in one of my text
    i put wa_spfli-carrid, wa_spfli-countryfr, etc. But it still does not show any data.Help would be greatly appreciated.

    u will be getting a function module name for the smartform then
    goto se37-->enter the FM name -->search for the ITAB you r using then put a break point.
    come back to u r program the run.. controle will stops over there then check whether the data is populating or not.
    INPUT and OUTPUT patameters are for program line and INITIALIZATION tabs.. when you want to modify some data in these you need to give the veriable or ITABs u r using inside. so that system will determine the global declarations(veriable or ITAbs).
    for more info refer these links
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm

  • Changing a mapplet select seems not to be working

    I am trying to change the mapplet select for the BOM Header extraction task. I've copied the mapping from the ORA R12 Adaptor to my custom folder and I've altered the mapplet in my custom folder. I've also copied the informtica task and workflow.
    In DAC I've pointed the task BOM Header to pick the task from my custom folder.
    Session Log says custom folder... but it seems that the mapplet is still running the original select. (I've changed the mapplet to limit the number of rows ROWNUM < 10 but I can see in DS table more than 400K records...
    Anything I am forgotting ?
    Txs. a lot.
    Antonio

    Sometimes the SQL in a mapping is ignored because there is a session SQL override in the workflow? In workflow manager, select workflow, select task, select tab mapping, select source qualifier, look at property "SQL Query".

  • After upgrade to MLion most of my main accoungs seem not to be working. How do I fix?

    I upgraded, and mosty of my mail accounts now don't let me send mail, although I can get it. Any fix for this?

    Ditto; After upgrading to Mtn Lion and using Mac Mail and POP accounts, I am able to send email but not able to receive email. In the Advanced window of Preferences/Accounts, if I choose the Authentication method "Password", there is no place to confirm my User Name and Password for my outgoing SMTP server. Any help ideas? Thx

  • Satellite P200D-12o - subwoofer does not work

    Recently I bought Satellite P200D-12o. Subwoofer does not work. It seems that the notebook does not see it.
    Please, tell me what have I to do!

    Hi guys
    I think the issue is related only to the wrong sound settings.
    In the product flyer is something mentioned with Toshiba Bass Enhanced Sound System with Dolby Home Theater.
    This is a sound feature enables the Dolby virtual speaker.
    In my opinion you should check if this feature was enabled.
    To enable the Dolby Home Theater do the following:
    Go to Control Panel -> Hardware and Sound -> Sound
    Mark the Speaker -> Properties -> Choose the Dolby tab and check the "Dolby Home Theater".
    Unusually this should helps!
    PS:
    There are different notebooks models and not all are equipped with a subwoofer.
    In my knowledge there is an speaker at the bottom of the unit but *this third speaker indicates only the BIOS beeps. Its not a subwoofer!!!*
    Bye

  • TS3899 can send email from my personal (aol) account but not from my work account. My email works fine on my lap top. I have contacted my IT department. They cant seem to fix it. any suggestions?

      I have 2 eamil accounts on my iphone, one personal (aol) and one work. I can send email on my aol account but not on my work account. My email on my laptop works fine. I have contatced my IT epartment but they cannot seem to fix it. Any suggestions?

    I have just encountered exactly the same issue for the last 24 hrs - mail goes to outbox from iPad yet send OK from icloud account on my powerbook. Tried resetting the push email settings on the iPad but no chnage.

  • The function AirDrop on my Mac BookAir seems not to work, not detect my iPad. How to fix this?

    The function AirDrop on my Mac BookAir seems not to work, not detect my iPad. How to fix this?

    AirDrop on iOS devices (iPads, iPhones, iPod touches) can only AirDrop things with other iOS devices. AirDrop on Mac can only AirDrop things with other Macs.
    I hope this solves your question.
    Austin

  • I have a Verzion iPhone 4s with iOS 7 installed on it and the friend my friends dose not seem like it is working, and it is when it is trying to find a certain person, it says location unavaiable, and the other person with the other iphone it friend my fr

    I have a Verzion iPhone 4s with iOS 7 installed on it and the friend my friends dose not seem like it is working, and it is when it is trying to find a certain person, it says location unavaiable, and the other person with the other iphone it friend my friend is on in locations service and on the verzion iPhone it is on

    Little hard to understand what you are asking.  Let me guess that this not an Iphone4S issue.  Its a problem with your service provider.  Contact them.

Maybe you are looking for

  • A failure occurred while the server was processing report file

    Hi All, I keep getting this error while opening the report in Infoview,  "A failure occurred while the server was processing report file". I checked Event viewer there i have lot of errors with the same message and the source is "BusinessObject_crpro

  • Everyone:  This time repair your permissions before and after 10.4.8 update

    Hello All, Just a reminder for all those who are updating to OS 10.4.8. While many people do ignore all the recommendations that we provide and still come through fine, please do consider observing the following to minimize your problems. To insure t

  • Payment issue in project cash managemnet

    hi all in our client process we are using  project cash management to track payment and  invoice for the projects , in our  process i can able to see the invoices posted to the project but payment is not updating please help to solve this issue. rega

  • I am unable to view e-mail attachments from a when logging on through a website

    I am not view or retrieve e-mail attachments from a web based e-mail account. I can log into my account and view e-mails but the attachments are not showing up. This problem only recently appeared previously I was able to view and read attachments. I

  • MRP Error

    Hello Experts, We had run MRP wizard agains Forcaste senireo. After save ,Order recommendation create numbers of production order and purchase order But when we                1.Create Purchase order then show me Error Could Not Commit Transaction(AD