Amp help

ok hi! Im new here, and I need some help. I am currently building an amplifier out of the parts of an old creative SBS 4.1 . I have found the datasheet for the philips TDA a85j ic, and have dowloaded a schematic for it so I can build an amp with it. I would like to make it a full range amp instead of having the bass frequencys cut off so as not to damage the sats, I want to power some other speakers with this amp. My question is about the amp ic that powers the sub. Its labled CREATIVE CT975-SAM , and so far as I know, Creative does not manufacture semiconductors. Any help on finding a datasheet on this ic, and possibly a n application diagram? any help from anyone, or from creative techies would be greatly appreciated. I also need help with another system I have. Thanks,
~Roadrunner~

Thank you for the help lacy ,
I'm having the same problem with a single stage amp. If you fell like looking at it I've attached a picture and the sim file.
Ken
Attachments:
single stage iop amp test.ms10 ‏83 KB
3 Stage op amp pic.gif ‏25 KB

Similar Messages

  • Op-amp help for a newbe

    Hello all,
     I'm new to Workbench so I like to start by saying, thank for any and all help.
    When I used the stranded scope the input sin was the same as the output sine in voltage, but when I tried the Tektronixi scope and put in 1 mv the output was 3.1 volts dc. Could someone tell what may be going. on.
    Best regards,
     Ken
    P.S. I would like to get an output of  40 khz square  @ 5v
    Attachments:
    3 Stage op amp pic.gif ‏25 KB

    Thank you for the help lacy ,
    I'm having the same problem with a single stage amp. If you fell like looking at it I've attached a picture and the sim file.
    Ken
    Attachments:
    single stage iop amp test.ms10 ‏83 KB
    3 Stage op amp pic.gif ‏25 KB

  • ABAP and Java mapping

    Wanted to confirm my understaing for ABAP and JAVA mapping.
    Am I correct in my assumption that these mapping techniques can be used only if input and ouput is in XML format ?
    So if XI is receiving a flat comma separated text/non-XML file or an IDOC for that matter and output is NOT in XML format, say again flat text file or IDOC, I cannot use above two techniques?
    All the docs I have read suggest that 'Execute' method is called when XML file/data is received, paresed using DOM/SAX/JAXB (for Java mapping) or IXML lib (for ABAP mapping) and then create a output XML file.
    -Thanks in advance

    Hi Bob,
    Here you have a code sample for deescaping. I have have written this code a couple of time ago. The incoming file can be any text format. It might be XML, but not necessarily.
    The main method is not reqired, but good for testing.
    Regards
    Stefan
    * Created on 28.09.2005
    * To change the template for this generated file go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    package sample;
    import  com.sap.aii.mapping.api.*;
    import  java.io.*;
    import  java.util.Map;
    public class Deescaping implements StreamTransformation{
              public static void main (String[] args) {
                   try {
                        InputStream in = new FileInputStream(new File("in.xml"));
                        OutputStream out = new FileOutputStream(new File("out.xml"));
                        Deescaping change = new Deescaping();
                        change.execute(in, out);
                   } catch (Exception e) {
                        e.printStackTrace();
              public void setParameter (Map map) {
              public void execute (InputStream in, OutputStream out)
                   throws StreamTransformationException {
                   try {
                        int c;
                        while ((c = in.read()) != -1) {
                             if (c != '&') {
                                  out.write(c);
                             } else {
                                  // ampersand
                                  String help = "&";
                                  boolean exit = false;
                                  // check the next 5 chars, if there is a ';'
                                  for (int i = 0; i < 5 && !exit; i++) {
                                       c = in.read();
                                       if (c == -1) {
                                            exit = true;
                                       } else {
                                            // another ampersand?
                                            if (c == '&') {
                                                 out.write(help.getBytes());
                                                 help = "&";
                                                 i = 0; // check the next 5 chars
                                            } else {
                                                 help = help + (char) c;
                                                 if (c == ';') {
                                                      exit = true;
                                                 if (help.equals("&amp;")) {
                                                      help = "&";
                                                 if (help.equals("&lt;")) {
                                                      help = "<";
                                                 if (help.equals("&gt;")) {
                                                      help = ">";
                                                 if (help.equals("&quot;")) {
                                                      help = """;
                                                 if (help.equals("&apos;")) {
                                                      help = "'";
                                  } // for
                                  out.write(help.getBytes());
                        } // while
                        out.flush();
                   } catch (Exception e) {
                        throw new StreamTransformationException(e.getMessage(),e);

  • HT204368 I have an IPhone 5 & Bluetooth just keeps searching & doesn't connect to devices I'm trying to pair with. Says "not supported"

    Sorry, if I've posted in the incorrect place. First post, please bare with me.
    I've been trying to transfer photos from my old Samsung Galaxy Ace &amp; Toshiba laptop via Bluetooth to my iPhone 5.
    iPhone but message of "not supported" comes up when pairing. iPhone stays in search mode when trying to discover devices &amp; does nothing.
    Thanking you all in advance for your patience, understanding &amp; help.

    All you can connect via BT are headsets and keyboards. You cannot connect to your Galaxy or laptop. That's why it says "not supported."

  • Jspx template migration to jsf 2 problematic

    Hello experts,
    I have a ADF web application developed with JDeveloper 11.1.1.4 using JSF 1.2 deployed on WebLogic server 10.3.4.
    When I migrate to the new version jsf 2: Build JDEVADF_11.1.2.2.0_GENERIC_120418.2212.6183.1 and WebLogic server 10.3.5, the jspx template below misbehaves.
    The menu is brought from the left to the right hand side, though it expands and navigates well, the page contents, but the menu and logo, are not displayed.
    In other words, I can only see the logo, the moved but working menu but nothing else.
    Is there any way of correcting that kind of behaviour and migrate the app?
    Thank you in advance!
    NA
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <af:pageTemplateDef var="attrs">
    <af:panelStretchLayout id="pt_psl1" topHeight="113px">
    <f:facet name="center">
    <af:panelSplitter id="pt_ps1" orientation="vertical"
    splitterPosition="792">
    <f:facet name="first">
    <af:decorativeBox id="pt_db2" topHeight="26px">
    <f:facet name="center">
    <af:panelGroupLayout layout="scroll"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="pt_pgl7">
    <f:verbatim>
    <div align="center">
    <af:facetRef facetName="content"/>
    </div>
    </f:verbatim>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="top">
    <af:menuBar id="pt_mb1">
    <af:group id="pt_g1">
    <af:popup id="aboutPopup">
    <af:dialog id="pt_d1" type="ok"
    title="About Auction Bazaar">
    <af:panelGroupLayout id="pt_pgl3" halign="center"
    layout="vertical">
    <af:outputText value="Developed by Nick Aiva. Version #{initParam.ActionBazaarApplicationVersion } Copyright
    2012 #{requestContext.timeZone.displayName} "
    id="outputText1"/>
    <af:outputText value="Language and locale settings follow:
    #{facesContext.application.defaultLocale.displayLanguage}
    #{facesContext.application.defaultLocale.language}
    #{facesContext.application.defaultLocale.displayCountry}
    #{facesContext.application.defaultLocale.ISO3Country}
    #{facesContext.application.defaultLocale.ISO3Language}" id="pt_ot3"/>
    <af:spacer width="20" height="10" id="spacer1"/>
    <af:outputText value="For newer versions please visit:" id="pt_ot2"/>
    <af:spacer width="20" height="10" id="spacer3"/>
    <af:goLink id="goLink1" targetFrame="_blank"
    destination="http://nickaiva.blogspot.com"
    inlineStyle="font-size:medium;"
    text="http://nickaiva.blogspot.com"/>
    <af:spacer width="20" height="10" id="spacer2"/>
    </af:panelGroupLayout>
    </af:dialog>
    </af:popup>
    <af:menuBar id="menuBar1">
    <af:menu text="User" id="menu2">
    <af:commandMenuItem text="Add new user"
    id="commandMenuItem3"
    action="createUser"/>
    <af:commandMenuItem text="Query users"
    id="commandMenuItem4"
    action="queryUsers"
    rendered="#{securityContext.userInRole['ADMINISTRATOR']}"/>
    <af:commandMenuItem text="Change bidder status"
    id="pt_cmi3"
    action="changeBidderStatus"
    rendered="#{securityContext.userInRole['ADMINISTRATOR']}"/>
    <af:commandMenuItem text="My personal details"
    id="commandMenuItem12"
    action="home"/>
    <af:commandMenuItem text="Log out" id="pt_cmi4"
    rendered="#{securityContext.authenticated}"
    action="#{login.performLogout}"/>
    </af:menu>
    <af:menu text="Bid" id="menu3"
    textAndAccessKey="&amp;Bid">
    <af:commandMenuItem text="Add new bid"
    id="commandMenuItem5"
    action="addBid"
    rendered="#{securityContext.userInRole['BIDDER , ADMINISTRATOR']}"/>
    <af:commandMenuItem text="Query bids"
    id="commandMenuItem6"
    action="queryBids"/>
    <af:commandMenuItem text="Withdraw a bid"
    id="commandMenuItem11"
    action="withdraw"
    rendered="#{securityContext.userInRole['BIDDER , ADMINISTRATOR']}"/>
    </af:menu>
    <af:menu text="Item" id="pt_m2"
    textAndAccessKey="&amp;Sell">
    <af:commandMenuItem text="Add new item" id="pt_cmi2"
    action="addItem"
    rendered="#{securityContext.userInRole['SELLER, ADMINISTRATOR']}"/>
    <af:commandMenuItem text="Query items"
    id="commandMenuItem1"
    action="queryItems"/>
    <af:commandMenuItem text="Update item"
    id="commandMenuItem14"
    action="updateItem"
    rendered="#{securityContext.userInRole['SELLER, ADMINISTRATOR']}"/>
    <af:commandMenuItem text="Place item in category"
    id="commandMenuItem16"
    action="placeItemInCategory"
    rendered="#{securityContext.userInRole['SELLER, ADMINISTRATOR']}"/>
    </af:menu>
    <af:menu text="Category" id="menu4"
    textAndAccessKey="&amp;Bid">
    <af:commandMenuItem text="Add new category"
    id="commandMenuItem7"
    action="addCategory"
    rendered="#{securityContext.userInRole['ADMINISTRATOR']}"/>
    <af:commandMenuItem text="Query categories"
    id="commandMenuItem8"
    action="queryCategories"/>
    <af:commandMenuItem text="Update category"
    id="commandMenuItem15"
    action="updateCategory"
    rendered="#{securityContext.userInRole['ADMINISTRATOR']}"/>
    </af:menu>
    <af:menu text="Order" id="menu5"
    rendered="#{securityContext.userInRole['BIDDER,ADMINISTRATOR ']}">
    <af:commandMenuItem text="Create Shipping Info"
    id="pt_cmi1"
    action="createShippingInfo"/>
    <af:commandMenuItem text="Add new order"
    id="commandMenuItem9"
    action="addOrder"/>
    <af:commandMenuItem text="Query orders"
    id="commandMenuItem10"
    action="queryOrders"/>
    </af:menu>
    <af:menu text="Help" id="menu1"
    textAndAccessKey="&amp;Help">
    <af:commandMenuItem id="commandMenuItem2"
    textAndAccessKey="&amp;About"
    text="About">
    <af:showPopupBehavior popupId="aboutPopup"
    triggerType="action"/>
    </af:commandMenuItem>
    <af:goMenuItem text="Diagnostics" id="goMenuItem1"
    destination="/servlet/SuperSnoop"/>
    <af:commandMenuItem id="commandMenuItem13"
    action="resetLog4j"
    text="ResetLog4j"/>
    </af:menu>
    </af:menuBar>
    </af:group>
    </af:menuBar>
    </f:facet>
    </af:decorativeBox>
    </f:facet>
    </af:panelSplitter>
    </f:facet>
    <f:facet name="top">
    <af:decorativeBox id="pt_db1" topHeight="50px">
    <f:facet name="center">
    <af:panelGroupLayout id="pt_pgl1" layout="horizontal"
    valign="middle">
    <af:goLink id="pt_gl1"
    targetFrame="_blank"
    destination="http://nickaiva.blogspot.com"
    inlineStyle="font-size:medium;">
    <af:image id="pt_i1" shortDesc="http://nickaiva.blogspot.com"
    inlineStyle="height:auto; width:auto;"
    source="/images/cropped-small-sea-wave .jpg"/>
    <af:spacer width="20" height="10" id="pt_s1"/>
    </af:goLink>
    <af:outputText value="#{attrs.pageTitle}" id="pt_ot1"
    inlineStyle="color:Navy; font-size:large;"/>
    </af:panelGroupLayout>
    </f:facet>
    </af:decorativeBox>
    </f:facet>
    <f:facet name="bottom">
    <af:panelStretchLayout id="pt_psl3" startWidth="200px">
    <f:facet name="center">
    <af:panelGroupLayout id="pt_pgl2" halign="end" layout="horizontal">
    <af:panelGroupLayout id="pt_pgl4" layout="vertical">
    <af:spacer width="230" height="8" id="pt_s2"/>
    <af:outputFormatted value="Copyright &amp;copy; 2012 http://nickaiva.blogspot.com. All rights reserved."
    id="pt_of1" styleUsage="pageStamp"
    inlineStyle="text-align:right;"/>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="start">
    <af:panelGroupLayout id="pt_pgl5" layout="vertical">
    <af:spacer width="200" height="8" id="pt_s3"/>
    <af:panelGroupLayout id="pt_pgl6" layout="horizontal">
    <af:spacer width="4" height="10" id="pt_s4"/>
    <af:switcher id="pt_s5"
    facetName="#{securityContext.authenticated?'loggedon':'loggedoff'}"
    defaultFacet="loggedoff">
    <f:facet name="loggedoff">
    <af:outputFormatted value="[Not Connected]" id="pt_of5"
    styleUsage="pageStamp"/>
    </f:facet>
    <f:facet name="loggedon">
    <af:outputFormatted value="[Connected as  #{securityContext.userName}]"
    id="pt_of6" styleUsage="pageStamp"/>
    </f:facet>
    </af:switcher>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>
    </af:panelStretchLayout>
    <af:xmlContent>
    <component xmlns="http://xmlns.oracle.com/adf/faces/rich/component">
    <display-name>templateABDef</display-name>
    <facet>
    <facet-name>content</facet-name>
    </facet>
    <attribute>
    <attribute-name>
    pageTitle
    </attribute-name>
    <attribute-class>
    java.lang.String
    </attribute-class>
    <default-value>
    Auction Bazaar
    </default-value>
    </attribute>
    </component>
    </af:xmlContent>
    </af:pageTemplateDef>
    </jsp:root>
    Edited by: NickAiva on Aug 1, 2012 4:01 PM

    Submitted bug at http://java.net/jira/browse/ADFEMG-43
    under the title:
    Problematic jspx template migration to jsf 2
    Edited by: NickAiva on Aug 2, 2012 8:52 AM
    Removing some jdev visual editor libraries solved the issue
    Edited by: NickAiva on Aug 7, 2012 9:25 AM

  • Will not load I see a black screen

    Hi
    At first I had just mono sound nothing from my surround sound then my son figured out but now!!
    I get a black screen ??
    I've tried almost all sorts of combo's on back of amp
    Help please

    Try running Safari in 32 bit mode.  In get info box for Safari,
    check open in 32 bit mode.  There have been some oddities
    on some systems that can cause some issues.
    I had thought MS had fixed this, but may not have.

  • Popup Command Button - ActionListener not accessed

    Hi there, I'm working with the JDeveloper 11.1.1.6.0.
    I have a view in a popup. Which creates a new empty row, if there could not be found any data in the database. So far so good.
    When i know enter some values and then click a command button the values should be filled into the VO and EO, and also commited to the DB.
    I have to do that in a ActionListener, beacuse i have to set some value programmatically, because they come from the calling page, and could not be seen by the user.
    So, when i now click the button, the popup dissapears, but the ActionListener was not entered. I tried it via breacking points and debuging and via some Outputs, but neither they are reached. Do I have to make something more to reach the listener to perform my actions?
    Thanks in advance.
    Alex.

    John Stegeman wrote:
    Show us the code for the af:popup.
    Have you read about the auto cancel behaviour in af:popup?
    JohnNo, i haven't read about it.
    <af:popup id="p1" binding="#{viewScopeMyBB.popup}"
                    contentDelivery="lazyUncached">
            <af:panelWindow id="pw1" title="MyPopUpTitle">
              <af:panelGroupLayout id="pgl6" layout="scroll">
                <af:panelHeader text="MyPanelHeaderText" id="ph4">
                  <af:panelLabelAndMessage label="Label 1" id="plam4">
                    <af:panelGroupLayout id="pgl8" layout="horizontal">
                      <af:inputText label="Label 7" id="it8"
                                    simple="true" columns="3"
                                    value="#{bindings.att1.inputValue}"/>
                      <af:outputLabel value="Std" id="ol1" for="it8"/>
                      <af:inputText label="Label 8" id="it7"
                                    value="#{bindings.att2.inputValue}"
                                    simple="true" columns="2" autoSubmit="true"/>
                      <af:outputLabel value="Min" id="ol2" for="it7"/>
                    </af:panelGroupLayout>
                  </af:panelLabelAndMessage>
                  <af:inputText label="Label 9" id="it9"
                                value="#{bindings.att3.inputValue}"
                                binding="#{viewScope.MyBB.inputText1}"
                                rendered="false"/>
                  <af:inputText label="SID" id="it10"
                                value="#{bindings.att4.inputValue}"
                                binding="#{viewScope.MyBB.inputText2}"
                                rendered="false"/>
                  <af:selectBooleanCheckbox text="MyText"
                                            label="My Label" id="sbc3"
                                            simple="true"
                                            value="#{bindings.boolVal}"/>
                </af:panelHeader>
                <af:panelGroupLayout id="pgl7" layout="horizontal" halign="center">
                  <af:commandButton id="cb7" textAndAccessKey="&amp;Ok"
                                    actionListener="#{viewScope.MyBB.test}"/>
                  <f:facet name="separator">
                    <af:spacer width="10" height="10" id="s5"/>
                  </f:facet>
                  <af:commandButton id="cb8" textAndAccessKey="&amp;Cancel"/>
                  <af:commandButton id="cb9" textAndAccessKey="&amp;Help"/>
                </af:panelGroupLayout>
              </af:panelGroupLayout>
            </af:panelWindow>
          </af:popup>For testing in the ActionListener i just print the values and some text.

  • Transferring Data From MacBook To iMac

    I'm not exactly sure what category to file my question under due to it's unique circumstances, so I tagged &amp; selected areas &amp; categories that I thought were appropriate to widen the range of people who will see it &amp; hopefully, make it more likely that I'll find the answer I'm looking for.
    I was given an older iMac computer by a family friend, it's old enough to not have an iSight camera built into it, but new enough to have well-working wifi &amp; Bluetooth connectivity available on it &amp; support it's updated software without posing any problems. I believe from what I can gather &amp; the looks of it, it's currently running Snow Leopard, but I can't be completely sure because the newer software was installed previously, before I received the computer, although I'm pretty sure that it is Snow Leopard.
    I also have a MacBook that stopped taking a charge long before I got the new (to me) iMac, the repair is not worth the cost, so I would like to transfer the data from my MacBook (irreplacable pictures, music, etc.) to the iMac, I'm planning on purchasing an external hard drive &amp; an external battery charger, but I can't afford it at the moment &amp; would like to transfer the data as soon as possible, so that I can access it all again, but there's only so much battery life left on my MacBook battery right now, about 10% at the very most, which is certainly not enough to keep the computer on long enough to transfer it all with file sharing via wifi/Bluetooth.
    So, I was wondering if I could possibly connect the two through a USB cord &amp; transfer it without the MacBook being turned on or if there was any other way to transfer information without having to turn on the MacBook to do so?
    My MacBook has a unibody &amp; was purchased brand new in about mid-2010, it was either the last or at least, one of the last models of MacBooks made before MacBooks were discontinued, &amp; it also runs Snow Leopard. I could never figured out how to work Time Machine &amp; from what I could figure out from the program it either cost money to use/I didn't have any external place to store a large amount of data, so no, I don't have a working Time Machine because I never could set it up. I don't what might have relevance to my situation or not so, I tried to give as much information as possible in case it could be helpful.
    Thank you all so much for your time, input, &amp; help, I really appreciate it! (:

    You could pull the hard drive out of your MacBook and put it in an external case.
    Here are video instructions on replacing the hard drive on the White Unibody http://eshop.macsales.com/installvideos/macbook_13_09_unibody_hd/
    Here's a cheap SATA external hard drive case on Amazon http://www.amazon.com/Vantec-NexStar-2-5-Inch-External-Enclosure/dp/B002JQNXZC/r ef=pd_cp_pc_0
    If you don’t have the tools to open up the MacBook OWC has a set for $5
    http://eshop.macsales.com/item/OWC/TOOLKITMHD/

  • IPad 2's Back

    What is iPad 2's Back made of?
    Stainless steel? (:O!)
    Aluminum?
    Or what?
    Will it rust/corrode easily?
    Like if I got sweaty palms and took it out of the cover and sweat got on it..
    If it does, how to stop it from rusting further?
    Apply powder to absorb the water?
    Thanks in advance for your replies &amp; help!

    Certainly not SS.  Probably aluminum.
    Don't worry about it.  Just don't dunk it in the bathtub!

  • HT1222 iOS 6 update now iTouch

    Updating iTouch to iOS 6 and it froze my iTouch mid-update and now my iTouch has a blank screen and is not recognized when I plug it in to my computer.

    Obviously I have no idea what I am doing. So I went to the settings &amp; the mail account like you said. My yahoo account info was never put in there. iCloud was the only account that was there. I have been going to my email through the yahoo app. So I added my account &amp; it didn't seem like it worked but then after a few minutes all my emails started coming through the email app. So I still can't sign in to my yahoo account through the yahoo app or safari but I am now getting my emails through the email app. So THANK YOU for being patient &amp; helping me out! Thank u thank u thank u! I really appreciate it!

  • Audigy 2 ZS clicks when record

    Hello everyone.
    I could use a little help. A while ago, I built a system, and included the Audigy 2 ZS. I only have just gotten around to trying to record with it, up until now it has all been play back.
    So once I got everything working satisfactory, I noticed a clicking and/or popping sound present only in the recorded sound. Trying to fix this, I updated my drivers, and maximised my audio buffer. Now the clicking has improved, about 50%, but it is still there.
    I did read the FAQ about the distortion in play back, but I assumed that because this is recording and not play back, that maybe the solution would be different. All apologies if I was wrong.
    I'm using Cakewalk Home Studio 2002 to do my recording.
    Can anyone offer any help? Thank you.

    *Bump*
    Can anyone offer any assistance? Would pre-amping help at all? Is it just the chipset, or is there something I can do about this?

  • How can I boost the volume so I can hear a movie on a plane

    I cannot hear movies while I am on a plane using MacBook Pro or my ipad. I have tried using the apple ear buds and sony noise cancelling headset. Will a headphone amp help?

    I actually bought an App in the Mac App Store called Boom (sorry, I don't name these things).  It was well reviewed, and it really boosts the sound out of my MacBook Pro.  I can actually watch a movie listening to it through the MBP speakers.
    It doesn't use up much RAM, and it really works.  And no, I don't get a kickback for recommending it, but I can tell you it's changed my viewing and listening experience with the MBP.
    A headphone amp also works, but it's just more junk to carry.
    http://itunes.apple.com/us/app/boom/id415312377?mt=12

  • I have garagaband for iOs in my iPhone 4S, I connect my squire iOs guitarr to the iPhone, I select a Guitar Amp at the GB app then I Only can tune the guitar but I m not able to make the guitar ring with the amps. May some one help me?

    I have garagaband for iOs in my iPhone 4S, I connect my Squire iOs guitarr to the iPhone, I select a Guitar Amp at the GB app then I Only can tune the guitar but I m not able to make the guitar ring with the amps. May some one help me?

    You got the new iphone?????   I have same problem.  I transferred audiobooks to device to find no audiobooks on device (despite it being in iTunes as if it was).  Have you found a solution?????   I even tried to change import settings on format transfer but hasn't worked. 

  • I have a Comcast system and am going through a Bose amp for sound.  The comcast box has an HDMI port which I've used for the Apple TV connection.  Nothing works! Help.

    have a Comcast system and am going through a Bose amp for sound.  The comcast box has an HDMI port which I've used for the Apple TV connection.  Nothing works! Help.

    Thanks.  Thought that would be the solution but for my wall mounted TV it's going to be a problem but many thanks for your reply.....

  • Help on either using a DI Box or a Pre Amp?

    I recently bought an iMac 3.06 and I was wondering whether i should use a DI Box or a Pre Amp to connect my bass guitar through the Mac. I have no idea what I am doing any help would be great!
    Thanks Nick

    Hi Nick
    Welcome to Apple Support Communities
    Actually there are a couple of inexpensive little gadgets that will allow you to connect your guitar to the iMac.
    An [MXL iBooster Guitar|http://pro-audio.musiciansfriend.com/product/MXL-iBooster-Guitar-and-Mic rophone-Interface?sku=243800] to the 3.5mm Input Jack.
    Or a [Griffin iMac|http://www.griffintechnology.com/products/imic> to a USB port.
    Dennis

Maybe you are looking for

  • Adding Namespace in Sender File Adapter Scenario.

    Hi All I have a scenario where  XI has to Pick Up XML a file and process it. The structure of the file is as follows <?xml version="1.0" encoding="UTF-8" ?> <Header>      <Seg1>      </Seg1> </Header> This file does not contain any any namespace tag.

  • How to Insert more than one record at a time- with fixed set of values in one field

    Can someone guide as to how to insert multiple records at a time using ASP VBScript in Dreamweaver CS4 or ADDT. If someone can guide then the exact problem is given below. I have a MS access database with one table. The table has three fields. The fi

  • At a dead end.  A java student in need of help.

    I've hit a wall. The program is supposed to allow the user to draw five different polygons using the polygon class and let the user pick the color for each polygon and move each polygon around the screen once it is filled in. The user clicks to add t

  • Pse 13 wia driver

    On my desktop I'm running win7 64bit and my scanner is CanoScan 8400f. It worked ok with pse 11, so I installe pse13 and the so the "fun" stared. When trying to import image it sayes "No WIA compatibele devices were detected etc". I have tried suppor

  • Calling unix shell script from SAP

    Hi, 1. i created command in SM69 as Zshell. 2. i pass this command to FM SXPG_COMMAND_EXECUTE. it is working fine when the file is having read write execute permisson on unix level. but the problem is my unix administrator he don't want to give this