Zen Sleek... any way to hook to car speake

<FONT color=#ff0000 size=4>Hello,
<FONT color=#ff0000 size=4>
<FONT color=#ff0000 size=4>Is there any type of adapter or hook ups that will let you hear your songs in your car thru the speakers?
<FONT color=#ff0000 size=4>I only have a CD player... no cassette. :smileyindifferent:
<FONT color=#ff0000 size=4>
<FONT color=#ff0000 size=4>Please anyone HELP!!! I received the Zen Sleek for my birthday.
<FONT color=#ff0000 size=4>If this can't be done, I guess it will get returned to the store or swapped for another type of mp3 player so I can use it in my car.
<FONT color=#ff0000 size=4>
<FONT color=#ff0000 size=4>Thank you in advance for any help or ideas!
<FONT color=#ff0000 size=4>Have a great day!

Hi Whit!,
You will encounter this same question with another player aswell if you purchase one.
Check if your car stereo/CD player has any inputs. The manual should cover this. If you have an auxiliary/line input, then you're set, you'll just need the right cables to connect. Some stereos (like some Pioneer models) have a connection on the back that you'd need a special cable for, but once you have that you'd have an aux input.
If you don't have this, the other option is always an FM transmitter, it connects to your player and transmits the audio at a certain frequency, you tune into that on your car stereo's radio and you can receive the signal (so wirelessly). Check out this page for some more info (and a picture).
If you li've in the UK though, bear in mind that FM transmitters are still illegal there (last time I checked).
CatMessage Edited by Catherina-CL on 07-07-2006 2:07 PM

Similar Messages

  • Is there any way to hook into the SQL report pagination process?

    I have a SQL report (based on EMP) with a radiogroup row selector.
    The scenario 1 and 2 are in place
    1) When the employee row radio group is clicked the P900007_JOB the text item is populated with the JOB for the employee.
    2) When the page is initially displayed or submitted via the button the first row’s radio group is programmatically clicked and therefore populates the additional job information in P900007_JOB
    Info (radio Group) Employee No Name
    (+) 7369 SMITH
    () 7499 ALLEN
    () 7521 WARD
    P900007_JOB CLERK
    1-3 Next>
    Once the report has been displayed and the next or previous pagination is used then none of the radio groups will be selected and the data in the P900007_JOB text item will still display the job of the last selected employee row.
    What I require is on pagination some sort of mechanism to either
    a) Call the page_init() that should then set the first row as selected and populate the text item via the programmatic click. (preferred option)
    b) OR blank out the additional text item P900007_JOB.
    Is there any way to hook into the pagination process?
    I have a work around – Set the ‘Enable Partial Page Refresh’ to ‘No’ but this means a full refresh every time the pagination is used.
    Details of my page
    Report Region (Based on EMP table) – radio group as a row selector
    select     APEX_ITEM.RADIOGROUP(1,EMPNO,'X21',null) CHECKRG, EMPNO,
         ENAME,
         JOB
    from     EMP
    Report Attributes -
    Report template :- P900007_ROWTEMPLATE (custom template see later)
    Report Attributes Substitution :- id="emp_report" (used in page_init see later)
    Enable Partial Page Refresh :- Yes
    Columns – All columns are selected as show but job is left out of the template below.
    P900007_JOB - Text item in report region (disabled does not save state). Populated with the employees job when the radio group is clicked.
    Control region :- HTML region that just holds a button <GO> just to submit the page and redirect back to the same page.
    P900007_ROWTEMPLATE (named column row template)
    Row template 1
    <tr style="cursor: hand; cursor: pointer;" onmouseover="row_mouse_over(this, 1)" onmouseout="row_mouse_out(this, 1)" #HIGHLIGHT_ROW# ">
    <td class="t15data" onclick="selectRow('#JOB#');">#CHECKRG# </td>
    <td class="t15data">#EMPNO# </td>
    <td class="t15data">#ENAME# </td>
    </tr>
    Before rows
    <table class="t15standard" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#" >
    <th class="t15header" #ALIGNMENT# >Info</th>
    <th class="t15header" #ALIGNMENT# >Employee Number</th>
    <th class="t15header" #ALIGNMENT# >Name</th>
    After Rows
    <tr>
    <td colspan="99" class="t15afterrows">
    <span class="left">#EXTERNAL_LINK##CSV_LINK#</span>
    <table style="float:right;text-align:right;" summary="pagination">
    #PAGINATION#</table>
    </td>
    </tr>
    </table>
    *Javascript in page Header*
    <script src="#WORKSPACE_IMAGES#apex_show_hide_region.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    function selectRow(pJob)
    /* console.log('pete got here!'+pJob)*/
    $x('P900007_JOB').value =pJob;
    /* Start Page init*/
    function *page_init*()
    /* Used to set radio groups on reports */
    /*console.log('START pete got here!');*/
    var is_checked = false;
    var l_check = $x_FormItems($x('emp_report'), 'radio');
    /*Loop and set flag if checked*/
    for(var i=0,len=l_check.length;i<len;i++)
    if(l_check.checked){
    is_checked = true;
    /*end loop*/
    /*If none checked force a click*/
    if(!is_checked){
    /*no longer need as doing click below*/
    l_check[0].checked=true;
    /*Force a click on the first radio group - extra details should then be
    populated*/
    var l_click = l_check[0].click();
    /* console.log('END pete got here!');*/
    /*END page_init*/
    // -->
    </script>
    *Application shared component.* – This fires a DB packaged procedure when the page is loaded.
    P330_PART_NO_HIST
    Process Point On load after Body region
    Process Text show_hide_memory.part_no_history_details();
    *Packaged Procedure* – This kicks off the page_init javascript in the header (earlier) to click on the radio group in the first row.
    PROCEDURE part_no_history_details AS
    BEGIN
    htp.prn('<script type="text/javascript">' || CHR(10));
    htp.prn('<!--' || CHR(10));
    htp.prn('page_init();'|| CHR(10));
    htp.prn('//-->' || CHR(10));
    htp.prn('</script>' || CHR(10));
    END part_no_history_details;
    Thanks Pete
    Edited by: Pete @ LSC on 26-Jan-2010 06:56

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

  • Is there any way to hook up to a vga display

    My apple TV is on route and one of my TVs only has a VGA port. Is there any way to hook it up to that TV?

    Welcome to the Apple Community.
    You'd need a hardware converter to do that, even then you will not be able to watch protected content from iTunes and netflix. You may also have aspect ratio issues if your TV is not widescreen, and even with a converter it may not work at all if your TV doesn't support 720p and the converter doesn't also scale.

  • Is there any way to hook into the TextModel from ICompositionStyle?

    When creating a new custom attribute in IAttrReport there is the ability to hook into the ICompositionStyle interface. But I don't see any way from there to see which TextIndex it is composing. Does anyone know if it's possible?

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

  • Is there any way to hook my iPhone up to my iPad to' transfer pictures?

    I would like to hook my iPhone up to my iPad to transfer pictures. Is there any way to do this?

    Meg is correct. I have transferred from iPhone to iPad with the camera connection kit.
    I use the photo transfer app mostly because it requires no cables and allows transfer in any direction. iPhone, iPad and computer.

  • Is there any way to hook up the iPad 2 to an external CD/DVD drive?

    I want to get my girlfriend an iPad for college, but her textbooks frequently come with CD's with supplemental learning resources. She also enjoys watching DVD's. Unfortunately, the iPad lacks a USB port, so it can't be connected to an external CD/DVD drive. Is there any workaround, such as a USB adapter that can be used with the existing iPad interface? Or is there some sort of wireless solution to be able to use an external CD/DVD drive? Knowledgeable feedback is appreciated, and please don't suggest buying a laptop, as I have already considered that. My inquiry refers strictly to my query regarding hooking up an external CD/DVD drive to the iPad 2. Thanks in advance!
    Lou

    louven23 wrote:
    please don't suggest buying a laptop, as I have already considered that.
    Ok - then since the answer to your question is NO - then you have all of ....
    Knowledgeable feedback
    that there is on the subject. There is no way to connect any device to the iPad except for a camera using the camera connection kit.

  • TS3308 is there any way to hook up a wireless air card that hooks up through a usb to a ipad

    i have a ipad 2 and i want to hook up a wireless air card to it, is it possible do they make a cable for it

    There used to be some wifi routers around with a USB port made just for these USB wireless sticks to create a personal hotspot. I don't think they really caught on since they are pretty tough to find by searching the net. I believe they need to be made specifically for this function, routers with USB ports for printers and hard drives do not work. Your other option is to plug it into a computer and create an "ad-hoc" wifi network with the computer.

  • Is there ANY way to hook up l and r rca cable to x-

    or am I looking at getting a converter?

    No offense, but 428 posts it's surprising you would ask such a question; so maybe I'm simplifying the answer too much. It should be the same quality, if that's the question. If you're looking to connect digital you need a 3.5mm (/8") mono miniplug to RCA mono converter which plugs into the digital input of your receiver. Replace mono with stereo in the previous statement if you're looking to hook up the analog outs and connect them to the external input of your receiver.

  • Is there any way to hook up to beatbox by dre bluetook to my pro?

    ?? I try and select it and it just says an "error occured cnnecting to this device"
    is the pro not capable of running this stereo via bluetooth?

    Mactracker show that you have a mini-dvi port on the 2006 iMac.  Should be able to use the mini-dvi to Hdmi adapter.
    Regards,
    Captfred
    On my late 2006 20" imac, it's the port closest to the center of the machine. (On the far right looking at the back)

  • Best way to hook up Zen Sleek to Car Ster

    Dear fellow Zen owners,
    I have a Zen sleek and love it. I want to integrate this into my car as much as possible. I have a Alpine CDA9827 Reciever with an aux in. I just ordered a PIE LD- Amp that amplifies the aux input to make the zen sound better.
    What I am mostly looking for is a vent mount that will fit this player. Another thing I am looking for is a DC power adapter for the sleek in my car so the backlight will always be on showing what is playing.
    I found this dc adapter on the creative site.
    http://us.creative.com/products/product.asp?category=3&subcategory=&product=2204
    I dont understand how that will plug into the sleek unless the picture is wrong.
    Please give me feedback on a good mount for this and a dc adapter.
    Thanks,
    Mike

    well, that adapter plugs into the headphone jack, I assume. They need to start releasing some FM transmitters that hook up to the Sleek's dock connector, which would charge it and have music playback. Like the iPods have.
    Or, can that connector at the bottom even be used for audio output, or is it just for USB transfer/charging? Can anyone confirm this?
    Edit: *most* iPod mounts should fit the sleek, may it be a bit looser or tighter. Both players' dimensions are near the same. I haven't seen or heard of any specifically made for the Sleek. Creative needs to get on the ball as far as accessories go..Message Edited by shotgunxmessage on 09-5-2005 06:6 AM

  • Car Charger for Zen Sleek Pho

    Hi. Are there any plans for Creative to release a car charger for Zen Sleek Photo The charger they have on the web site is not the right configuation.
    Thanks

    There's one for the Sleek. How does the Sleek Photo differ?

  • Zen sleek adaptor for Ipod car connect

    I have a Zen Sleek 20 and have just bought a new car which has an Ipod connector fitted. Are there any adaptors available to connect the Sleek 20? Other ideas gratefully received.

    I HAVE THE SAME PROBLEM. i have a kenwood kvt-514 head unit. once i updated my ipod touch to v4.2.1 some songs didn't play, no album artwork was displayed, ect. i tried doing all of the above and nothing. hopefully apple is working this out.

  • I just got the iPhone 5 and took it on a trip and took a bunch of photos on it. I just came home and hooked it up to my Mac for the first time and hit restore. All of my trip pictures disappeared. Is there any way I can retrieve them?

    I just got the iPhone 5 and took it on a trip and took a bunch of photos on it. I just came home and hooked it up to my Mac for the first time and hit restore. All of my trip pictures disappeared. Is there any way I can retrieve them?

    Did you by chance have photo stream turned on? If so then they might be there. When you restored your phone it deleted everything and they will be unretreivable from your computer.

  • Is there any way to increase the font size in the Creative Cloud. Using a Lenovo Yoga 2 with 14" screen and care barely see the menus

    Is there any way to increase the font size in the Creative Cloud. Using a Lenovo Yoga 2 with 14" screen and care barely see the menus.

    In short, no. There is no fix yet. They only barely acknowledge there is a problem. The "fix" is to enable 200% UI scaling which makes everything comically huge and unusable. This is pretty much of a joke. A really, really EXPENSIVE joke.

  • I have my Macbook Air hooked up to a Tunderbolt Display, is there any way to either power on or wake from sleep mode using an Apple USB keyboard pluged into the Thunderbolt display?

    I have my Macbook Air hooked up to a Thunderbolt Display, is there any way to power on the Macbook Air using an Apple USB keyboard plugged into the Thunderbolt display? I would like to be able to keep the Macbook Air in the Archbook dock and not have to open it to power it on?
    Thanks for any advise.

    SadisticIron wrote:
    i just baught my first iphone and it is a jalbroken
    Buzz! Thank you for playing!
    Discussing jailbroken devices is forbidden here by the Terms of Service.
    You can not get help here.

Maybe you are looking for

  • Can't login to my account after installing OS X Server

    Just some background info: I have had a mac mini for 2 years now and I backup to an external hard drive using Time Machine. My wife just got a new Macbook Air and I wanted to make sure her she was covered with Time Machine, but without having to unpl

  • Help me get my email, please!

    Hi, I have just moved into my new university accomadation but they seem to be blocking mail via proxies and i can't seem to access my gmail through mail as going online is a pain. http://kingston.ac.uk/support/ports.html This is there page about port

  • Export pix from iPhoto 4.0.3 to a digital picture frame (Tiger OS)

    Can't succeed in downloading pix using a card reader. Desired pix moved to an album, then export selected. In dialog box, file export and album name are selected, jpg extension selected, pixel size changed and use extension is selected. The jpg file

  • IPhone 5 lightning to hdmi adapter?

    Is there a way to do this? If so, what would I need? Thanks!

  • IPhone 3GS not showed in iTunes after update to Version 4.0

    Hi, I just made an firmware update using iTunes to my 3GS. The installation went well, and the iPhone is working great. But the problem is that iTunes is not displaying the iPhone anymore. I already tried everything listed on the Apple support page,