Using the Composite/Component AV cable for slideshows

iPad 32G WiFi
Hi,
I plan to use the Composite or Component AV cable for slideshows in the Photo app. There is a setting (TV Out) for Videos in Settings, I will set it to PAL when I run the slideshows in Asia later this week.
Question: Once set, will this setting under Videos apply to the Photo app for slideshows as well, or this setting is only good for videos?
Any suggestion will be greatly appreciated! /Kenny

No problem
enjoy your magic machine

Similar Messages

  • Updated iPhoto could no longer use the music from iTunes library for slideshow

    Anybody checked if you can still use your music from iTunes library for slideshows?
    After updating both iPhoto and iTunes to the latest version in Mavericks, all music links in the iPhoto's slideshows became invalid. Tried even to re-establish the music links, but it seems like the iPhoto would not play any music from the iTunes library. Only the sample music from iPhoto is usable. The iTunes works fine by the way.
    Thanks a lot!

    I think I found a workaround that seemed to correct the problem. In iTunes, go to the File menu and choose Library. Then select Organize Library. Next choose Reorganize files in the folder "iTunes Media".  Click OK.

  • Is there any way to extend the length of the Apple component AV cable for the original iPad?

    I have an original iPad, but the component video cable is too short to really do any good. Can it somehow be extended. It would really be useful if there was an adapter for the 30-pin connector that goes into the iPad itself so that one wire could extend the AV cable another 10-15 feet. I know of no such adapter. Is there one out there?
    My goal is to stream YouTube videos from my iPad to my Samsung HDTV. I guess I could buy an Apple TV and do it wirelessly through my Airport Expresses.
    Anyway, I would appreciate some advice from anybody who has tried to accomplish the same or similar things.

    Have you been able to get this cable to work on your iPad? I just went out and bought this cable so I could stream YouTube, Netflix and my other video on my iPad and the component cable wasn't working. I went back to my Apple store and replaced it with the composite video cable and everything works fine. I do not think that the component cable works with the original iPad because its output is not HD. Anyhow, you should be able to buy extender type cables at any Radio Shack, or any audio/video retailer. Look in the cables section. keep in mind you'll need both Audio cable and component video cable extended cables to increase the distance you are using these at. Keep in mind, also, that the iPad is basically useless while playing video. You can't multitask while watching the video because,depending on what apps you have that do video mirroring, you'll end up leaving the video and whatever app you're working in will show up on your TV screen. When I watch video I just leave my iPad close by the TV and walk up to it to play or pause video. Can't use it for anything else while the movie is playing, anyway. ;)

  • Using a composite component from an xhtml that is included in another xhtml

    JBoss 7.1.1
    JSF 2.1
    I have the following composite component:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <ui:component xmlns="http://www.w3.org/1999/xhtml"
            xmlns:h="http://java.sun.com/jsf/html"
            xmlns:composite="http://java.sun.com/jsf/composite"
            xmlns:f="http://java.sun.com/jsf/core"
            xmlns:ui="http://java.sun.com/jsf/facelets"
            xmlns:rich="http://richfaces.org/rich">
            <composite:interface>
                <composite:attribute name="for" required="true" />
            </composite:interface>
            <composite:implementation>
                <rich:panel styleClass="aas-msg-tt-p">
                    <rich:message id="#{cc.attrs.for}-msg"
                        for="#{cc.attrs.for}" />
                    <rich:tooltip id="#{cc.attrs.for}-msg-tt">
                        <rich:message for="#{cc.attrs.for}"
                            styleClass="aas-rf-det-tooltip" />
                    </rich:tooltip>
                </rich:panel>
            </composite:implementation>
    </ui:component>It is in WebContent/resources/aas-composite/messagetooltip.xhtml ( where WebContent is the root directory or root context directory of the deployed WAR )
    h3. *1. Using the composite component and working as expected*
    If I use the composite component directly as follows, it all works:
    1) Create test.xhtml in WebContent
    2) Content of test.xhtml as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich"
          xmlns:aas="http://java.sun.com/jsf/composite/aas-composite">
    <h:head>
        <meta http-equiv="X-UA-Compatible" content="IE=8" />
    </h:head>
    <h:body>
        <h:outputStylesheet library="css" name="richfacesoverrides.css"/>
        <h:form id="testform">
           <table>
                <tr>
                    <td><aas:messagetooltip for="id2"/></td>
                    <td><h:outputLabel>Input 2: </h:outputLabel></td>
                    <td><h:selectOneMenu id="id2"
                            required="true"
                            requiredMessage="Cause of Death is required"
                            value="${death.causeOfDeath}">
                           <f:selectItem itemValue="" itemLabel="-- Select One --" />
                           <f:selectItem itemValue="COD01" itemLabel="Cancer" />
                           <f:selectItem itemValue="COD02" itemLabel="Diabetes" />
                           <f:selectItem itemValue="COD11" itemLabel="Other" />
                        </h:selectOneMenu>
                    </td>
                </tr>
           </table>
           <h:commandButton id="submit" value="Submit"/><br/>
    </h:form>
    </h:body>
    </html>3) Deploy and test, all good
    h3. *2. Using the composite component but NOT working as expected*
    Now if I use the composite component as follows:
    4) Create XHTML file called includeThisFromRoot.xhtml under WebContent directory
    5) with content as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich"
          xmlns:aas="http://java.sun.com/jsf/composite/aas-composite">
        <ui:composition>
           <table>
                <tr>
                    <td><aas:messagetooltip for="id2"/></td>
                    <td><h:outputLabel>Input 2: </h:outputLabel></td>
                    <td><h:selectOneMenu id="id2"
                            required="true"
                            requiredMessage="Cause of Death is required"
                            value="${death.causeOfDeath}">
                           <f:selectItem itemValue="" itemLabel="-- Select One --" />
                           <f:selectItem itemValue="COD01" itemLabel="Cancer" />
                           <f:selectItem itemValue="COD02" itemLabel="Diabetes" />
                           <f:selectItem itemValue="COD11" itemLabel="Other" />
                        </h:selectOneMenu>
                    </td>
                </tr>
           </table>
           <h:commandButton id="submit" value="Submit"/><br/>
        </ui:composition>
    </html>6) Make a copy test.xhtml, but call the new one testWithInclude.xhtml, with content as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich"
          xmlns:aas="http://java.sun.com/jsf/composite/aas-composite">
    <h:head>
        <meta http-equiv="X-UA-Compatible" content="IE=8" />
    </h:head>
    <h:body>
        <h:outputStylesheet library="css" name="richfacesoverrides.css"/>
        <h:form id="testform">
            <ui:include src="includeThisFromRoot.xhtml" />
        </h:form>
    </h:body>
    </html>h3. Summary of change
    You can see here that I simply moved all of the content between the form tags from the original XHTML to a separate XHTML, and included that separate XHTML using <ui:include>.
    h3. Result
    7) Deploy and access testWithInclude.jsf from browser, and I get:
    15:17:55,310 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/richfacestest].[Faces Servlet]] (http--0.0.0.0-8081-5) Servlet.service() for servlet Faces Servlet threw exception: javax.faces.view.facelets.TagException: /includeThisFromRoot.xhtml @13,52 <aas:messagetooltip> Tag Library supports namespace: http://java.sun.com/jsf/composite/aas-composite, but no tag was defined for name: messagetooltip
            at com.sun.faces.facelets.compiler.CompilationManager.pushTag(CompilationManager.java:304) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.compiler.SAXCompiler$CompilationHandler.startElement(SAXCompiler.java:266) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:496)
            at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(AbstractXMLDocumentParser.java:180)
            at org.apache.xerces.impl.dtd.XMLDTDValidator.emptyElement(XMLDTDValidator.java:810)
            at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(XMLNSDocumentScannerImpl.java:275)
            at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1653)
            at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:324)
            at org.apache.xerces.parsers.XML11Configuration.parse(XML11Configuration.java:845)
            at org.apache.xerces.parsers.XML11Configuration.parse(XML11Configuration.java:768)
            at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:108)
            at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1196)
            at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.java:555)
            at org.apache.xerces.jaxp.SAXParserImpl.parse(SAXParserImpl.java:289)
            at javax.xml.parsers.SAXParser.parse(SAXParser.java:195) [rt.jar:1.7.0_09]
            at com.sun.faces.facelets.compiler.SAXCompiler.doCompile(SAXCompiler.java:434) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.compiler.SAXCompiler.doCompile(SAXCompiler.java:410) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.compiler.Compiler.compile(Compiler.java:124) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.impl.DefaultFaceletFactory.createFacelet(DefaultFaceletFactory.java:305) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.impl.DefaultFaceletFactory.access$100(DefaultFaceletFactory.java:93) [jsf-impl-2.1.7-jbossorg-2.jar:]
            at com.sun.faces.facelets.impl.DefaultFaceletFactory$1.newInstance(DefaultFaceletFactory.java:160) [jsf-impl-2.1.7-jbossorg-2.jar:]What gives ? Am I missing something simple ?

    I think I may have found a workaround.
    In the XHTML file that is included and using the composite component, add the namespace as part of the custom component, like so:
    <aas:messagetooltip xmlns:aas="http://java.sun.com/jsf/composite/aas-composite" for="id2"/>So that it now becomes:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich"
          xmlns:aas="http://java.sun.com/jsf/composite/aas-composite">
        <ui:composition>
           <table>
                <tr>
                    <td><aas:messagetooltip xmlns:aas="http://java.sun.com/jsf/composite/aas-composite" for="id2"/></td>
                    <td><h:outputLabel>Input 2: </h:outputLabel></td>
                    <td><h:selectOneMenu id="id2"
                            required="true"
                            requiredMessage="Cause of Death is required"
                            value="${death.causeOfDeath}">
                           <f:selectItem itemValue="" itemLabel="-- Select One --" />
                           <f:selectItem itemValue="COD01" itemLabel="Cancer" />
                           <f:selectItem itemValue="COD02" itemLabel="Diabetes" />
                           <f:selectItem itemValue="COD11" itemLabel="Other" />
                        </h:selectOneMenu>
                    </td>
                </tr>
           </table>
           <h:commandButton id="submit" value="Submit"/><br/>
        </ui:composition>
    </html>I tried this after finding a similar bug about nested composite components, which I do not use, but thought I would give it a try:
    http://stackoverflow.com/questions/10898906/myfoo-tag-library-supports-namespace-http-java-sun-com-jsf-composite-mycom
    http://stackoverflow.com/questions/9735593/nested-composite-component-broken-in-jboss-7-1-1
    Have to keep track of all these workarounds that I am doing.

  • TS1409 What if I don't have the Apple Component AV Cable or Apple Composite AV Cable to connect my iPod to? Do I have to buy one to watch videos on my iPod?

    What if I don't have the Apple Component AV Cable or Apple Composite AV Cable to connect my iPod to? Do I have to buy one to watch videos on my iPod?

    Hi there,
    I am assuming you have an ipod nano 6th gen (the small one with a touch screen)
    unfortunately, the ipod nano 6 gen can not play videos whatsoever unless you hack it so even with a cable it does not work.
    I hope this helps cus im new
    (if other generation ipod nano, just reply and i will help again )

  • Can i use one JSF component's value for other component in the same page.

    Can i use one JSF component's value for other component in the same page.
    For example
    I have a <h:selectBooleanCheckbox id="myChk"> in my jsf page, i want to access its value for another component like:
    <h:commandButton disabled="#{myChk.checked}" action="myAction" value="myValue" />
    ** "myChk.checked" >> I am just asuming "checked" property is available...

    Bind the checkbox to a UIInput myChk property. Then you can reference this property from the page, e.g.
    <h:selectBooleanCheckbox binding="#{myBean.myChk}" onchange="submit();" />
    <h:commandButton disabled="#{myBean.myChk.value}" action="myAction" value="myValue" />

  • Does the iPod Universal Dock work with the Apple Component AV Cable?

    I have the iPod Universal Dock (MA045G/A) and the Apple Component AV Cable (MB128LL/B)...the ones in the original black packaging.
    I had wanted to connect either my Nano 3G or my iTouch 1G to my TV, but neither would work through the docking station with the AV cable. Both did work when I tried not using the dock and connected both the Nano and the iTouch directly into the AV Cable.
    My dock works great on my Computer, and I tried a second dock (same model) that I had into the TV with the AV cable and it still did not see the connection.
    Is my particular iPod Universal Dock NOT COMPATIBLE with this Apple Component AV Cable (or for that matter, the Composite AV Cable-MB129LL/B)?
    It's not a big deal since both do work with the AV cable by itself...it's just annoying I can't use the dock...

    Are you sure it is genuine Apple cable? If you bought it on eBay or non-authorized Apple dealer it probably isn't. If it is a genuine cable, it is defective, and should be returned.
    When a working genuine Apple A/V cable is plugged into iPhone, a popup appears asking if you want to enable the TV output. Since you are not getting this popup, your cable is bad.

  • How to use the same component in different applications

    Hi All,
    I need to use the same component in different applications. i.e In opportunity, Quotation & Promotion.
    The Search help view in the component PRD01QR should be used in all these components but with different search criteria.
    With help of the DO_determine_configuration, different view configurations are possible but Different search criteria is not possible.
    for Eg. search parameter without DDLB, F4 options in another components.
    How can I control the behavior of the search view in different applications with restricting the field properties?
    Is it possible to find out where and in which component these search_help_search component is used?

    Hi Harry,
    Is it possible to find out where and in which component these search_help_search component is used?
    ans: I am giving an Example for your question go through that u might get clear about this.
    Ex: BT115IT_SLSO  sales order component
    below screen they component usage using for populate the product search component.
    please let me know any help required .
    Regards,
    vishwa.

  • Can I use the optical digital audio cable to connect INSTEAD of the hdmi?  My tv only has 2 hdmi ports, and they're both taken

    Can I use the optical digital audio cable to connect INSTEAD of the hdmi?  My tv only has 2 hdmi ports, and they're both taken

    I'm afraid that's very misleading and inaccurate.
    Firstly an adapter won't work, it would need to be a converter and then if it's a compliant converter it won't let you watch HDCP protected content such as that from netflix or from the iTunes Store.
    Secondly, whilst I'm not going to debate whether component or HDMI is better, component is certainly not better if it's been converted from an HDMI signal. You can't make anything better by simply converting it to another type of signal.

  • Can I use the ac charger I bought for my mini with my new nano

    Having just bought a Nano, I want to know if I can use the ac charger I bought for the mini to charge it. I don't have enough access to a pc to charge it via the USB cable.

    Here are the specs on the Apple AC converter:
    Input AC 100-240 V 50-60 HZ
    AC input 0.35A max
    Output 5V, 1A
    I'm not sure how this matches up with the specs on your charger. Maybe you could find a website for your supplier and see if they advertise the unit for Nanos?

  • Dynamic Tabs using the PanelTabbed component

    I would like to use the PanelTabbed component which is bound to a managed bean to render tabs dynamically. The page will simply consist of a navigationTree on the left and the panelTabbed on the right. When the user clicks a node in the tree I would like to PPR the panelTabbed component to display the new tab. If you know of any examples or could point me in the right direction it would be greatly appreciated!
    Thanks,
    Matt

    Hello Matt,
    panelTabbed won't do for that, you're going to need navigationPane using "tabs" hint. The navigationPane should have a partialTriggers on the tree and its value should be a custom MenuModel instance that get populated from click made on the tree.
    It's not overwhelming, but I fear there's some complexity in achieving what you want.
    Regards,
    ~ Simon

  • I just want know if is possible use the iphone's charge battery for the i-pod touch. Thank you!

    i just want know if is possible use the iphone's charge battery for the i-pod touch. Thank you!

    Using an  iPhone wall charger for the iPod is fine.  You can also use an iPhone cable for the iPod.
    The term " iphone's charge battery" is not really clear.

  • Anyone know how to use the QuickTime Component Manager

    I have been reading that you can somehow enable the DV out in QuickTime to play video out via Firewire, but have had no luck. I guess by using the Quicktime Component Manager you can enable certain features and disable certain features. Does anyone have any idea on how to do this? Thanks everyone for the help.

    You can send a .dv file over Firewire (back to a camera for example) using iMovie.
    Maybe if your better explained your objective we could offer some suggestions.
    Many third party hardware devices can also be used to move .dv files to tape drives (like a VCR) or send the signal to broadcast devices.

  • HT4108 I just bought a composite a/v cable for my iPhone 4S and I can hear sound but no video on my JVC tv what can I do to fix it?

    I would like to no how I can see my iPhone 4S screen on my JVC TV any ideas I bought a composite A/V Cable for it but nothing?

    Applecare+ for iPhone covers two instances of accidental damage for a fee of £49 per claim (in the UK).
    Becca2011 wrote:
    Okay so I dropped my iPhone 3G today and ever since it has been stuck on this white screen that has stripes on it. I have tried holding the home button with the up volume and the power button for a while and that didn't work. I also tried just the home button and the power button. I also tried taking it apart to see if something was loose but nothing was. PLEASE HELP I don't want to get rid of my iphone!
    If you don't have Applecare you can usually get a refurbished unit from an Apple Retail Store cut price - though they may not have any 3 models in stock and you may be 'forced' to upgrade to a 3GS.

  • How can I change the order of thumbnails so it affects the order in the lightbox when using the composition widget - lightbox display?

    Hi, I'm making my portfolio in Muse, and I'm using the composition widget - lightbox display. I imported all the images and then I wanted to reorganize the thumbnails - and when I do that, the order in the lightbox doesn't change and so it's not the same as the order of the thumbnails (after rearranging them). Please let me know if there is a way to fix this quickly, or do I have to do it all one more time

    The order the items display in a composition widget is the front to back order of the items. You can rearrange the stacking order of the thumbnails/triggers using the Layers panel and/or the Object > Bring To Front, Send To Back, etc. menu items to adjust the order they're displayed during auto play or when clicking the next/previous buttons.

Maybe you are looking for

  • How do i download my photo gallery to i cloud ?

    How do I download my mobile me photo gallery to i cloud ?

  • Gallery files included on a page without gallery images/thumbnails

    Hi, I included the .js files for the gallery on a page without gallery images/thumbnails. The effect is, that the first image with a link on that page gets a yellow border (as normally the first thumbnail does). To correct the problem, I changed the

  • Horizontal menu bar displays grey in IE - Please Help

    These are my first websites and i have created it in DW CS4. Everything is working and i have checked in multiply browsers. The one issue i can't work out is that when viewed in IE the horizontal menu bar looks grayed out. The main menu should be tra

  • Sound Clip Organization Software?

    Hello, I recently acquired a Tascam portable recorder, and I am wondering if there is any software that I could use to organize and keyword my sound clips. Do you have any suggestions? Thanks in Advance, Spencer ><>

  • Certificate problem? Take my help but I need help too

    Thanks to every one who views my post. I have tried around 4 tecniques for obtaining a self certificate for my mobile application. If any one have tried or succeeded in self certifing your application ,please help me. Or if u too r struggling with it