Samples of Keynote Projects

Because of the great advice given in all the messages below, I suggest to add a permanent entry on top of the list where people could post the URLs of the projects they have made. I find looking at actual projects a great inspiration.

That is correct.  Samples do not sync.  Also, samples are lost in, say, a restore operation.  The assumption is you can re-download samples (if they're still available).
Purchases, on the other hand, do sync.

Similar Messages

  • ICloud messed up my Keynote projects- how to get them back?

    Please help- iCloud is just a beta, and it already messed up my Keynote projects!!! Help me!!! Show me a way to get them back!

    You'll need to tell us what you did to lose them.

  • Export keynote project

    Hi, i have created a keynote project  and when i play the presentation inside keynote itself i press the right arrow to go to thext slide (ok).
    Now i have exported it in a quicktime movie and i would expect the same behavior. Instead the movie does not stop at the end of every slide.
    Can someone help me?
    best

    AVCHD is no export option in iMovie, but for sure you can do an Hidef projekt 'Export with Quicktime...' and choose 1920x1080/h264 to create a HiDef.mov ...

  • Keynote project to iMovie?

    Is it possible to import a Keynote project into iMovie for the purpose of laying in a sound track, adjusting it to the slides, then turning the completed Keynote project into a Quicktime movie for playing on TV?

    It's definitely possible, but you will have to adjust your proposed workflow. The first thing that you are going to want to do is export the keynote presentation as a Quicktime movie. So that it can be imported by iMovie. Then you will need to lay the soundtrack. Finally, you will need to export the movie from iMovie as a Quicktime movie.
    This will involve a bit of planning in advance. Before you export the movie to Quicktime from Keynote, you are going to need to figure out slide durations and transitions. You will have to set the transitions be automatic (no click-through movie for you, since I suspect iMovie would not be too happy with that). Depending on how you are wishing to fit the soundtrack to your movie, it might be an iterative process to get the transitions and durations just right.
    Why not add the audio directly in Keynote instead? iMovie '08 is not notorious for advanced soundtrack and audio options, so I'm not sure that you are gaining anything by adding the soundtrack in iMovie. More info might help clarify this.

  • Sample ANT-generated project

    Anyone know where I can download source for a simple project that uses ANT/XDoclet and is built, verified and deployed to the Sun Java System Application Server Platform Edition 8? Ideally, such a project would house CMP beans and an application client. I've been messing around with this off an on for ages but am constantly stymied by cryptic error messages and a glacial deployment process. For the record, I'll list ANT script that I'm using and the resultant problems. Perhaps someone will immediately recognize a rookie mistake. I'd be just as happy, though, if someone could simply direct me to a functional example that I can copy and tweak. I'd love to focus on actually learning J2EE rather than struggling with configuration issues.
    Working
    * Java Application Verification Kit for the Enterprise StaticArchiveTest/SourceScan
    * Delpoying the application and viewing JSP/HTML pages
    * Creating and finding CMP beans from JSP
    * Deplying application client via deploytool
    Crashing and Burning
    * Verifying EAR
    Error Name : Exception : java.io.IOException: Verify Error: Module specified in application.xml not found in ear file:
    Error Description : java.io.IOException: Verify Error: Module specified in application.xml not found in ear file:
    at com.sun.enterprise.tools.verifier.Verifier.updateClasspath(Verifier.java:3023)
    * Verifying JAR
    Test Name : tests.ejb.runtime.ASEntBeanCmpResource
    Test Assertion : Enterprise beans cmp-resource test. cmp-resource element contains the database to be used for storing CMP beans in an ejb-jar
    Test Description : For [ C:-eclipse-workspace-test-jars-test_ear-test.jar#test.jar#Building ]
    FAILED [AS-EJB cmp-resource] : jndi-name cannot be an empty string
    * Deploying an application client via "asadmin deploy"
    CLI171 Command deploy failed : Deployment Error -- Error while running ejbc -- F
    atal Error from EJB Compiler -- com.hollis.residentiator.interfaces.BuildingMgrS
    essionHome
    WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.system.stream.err|_ThreadID=12;|java.lang.ClassNotFoundException
    at com.sun.enterprise.loader.EJBClassLoader.findClass(EJBClassLoader.java:505)
    * Running an application client with 'appclient'
    C:\eclipse\workspace\testclient\jars>appclient -client testClient.jar
    #### Error: Unable to load module. File -client does not exist.
    Client Container Error:
    Failed to load the archive specified
    C:\eclipse\workspace\testclient\jars>appclient testClient.jar
    Please specify uri for the the client jar using -uri
    Usage: appclient <client-archive> [-uri <uri>] [client-arg1 client-arg2 ..]
    ANT file
    <project name="Test project" default="deploy" basedir=".">
         <property file="build.properties"/>
         <property environment="env"/>
         <path id="xdocletlib">
              <fileset dir="${xdoclet.dir}/lib"><include name="**/*.jar"/></fileset>
              <pathelement location="${env.ANT_HOME}/lib/ant.jar"/>
              <pathelement location="${env.J2EE_HOME}/lib/j2ee.jar"/>
         </path>
         <target name="setup">
              <copy todir="${env.J2EE_HOME}/lib/system">
                   <!-- log4j file -->
                   <fileset dir="${log4j.dir}/dist/lib" includes="*.jar"/>
              </copy>
         </target>
         <target name="xdoclet">
              <mkdir dir="${xdoclet.output}"/>
              <!-- clear out original xdoclet files -->
              <delete includeemptydirs="true">
                   <fileset dir="${xdoclet.output}" includes="**/*"/>
              </delete>
              <mkdir dir="${xdoclet.output}/java"/>
              <taskdef
               name="ejbdoclet"
               classname="xdoclet.modules.ejb.EjbDocletTask"
               classpathref="xdocletlib"
              />
              <ejbdoclet destDir="${xdoclet.output}/java" excludedTags="@version,@author,@todo">
                   <fileset dir="${entity.ejb.src.dir}"><include name="**/*Ejb.java"/></fileset>
                   <fileset dir="${session.ejb.src.dir}"><include name="**/*Ejb.java"/></fileset>
                   <packageSubstitution packages="ejb" substituteWith="interfaces"/>
                   <remoteinterface/>
                   <homeinterface/>
                   <localinterface/>
                   <localhomeinterface/>
                   <entitypk/>
                   <entitycmp/>
                   <session/>
                   <utilobject>
                        <packageSubstitution packages="ejb" substituteWith="util"/>
                   </utilobject>
                   <valueobject>
                        <packageSubstitution packages="ejb" substituteWith="model"/>
                   </valueobject>
                   <deploymentdescriptor
                    destdir="${xdoclet.output}/META-INF"
                    validateXml="true"
                   />
                   <sunone destdir="${xdoclet.output}/META-INF"/>
              </ejbdoclet>
         </target>
         <target name="compile" depends="xdoclet">
              <mkdir dir="${build.dir}"/>
              <javac destdir="${build.dir}">
                   <classpath>
                        <fileset dir="${log4j.dir}/dist/lib"><include name="*.jar"/></fileset>
                        <pathelement location="${env.J2EE_HOME}/lib/j2ee.jar"/>
                   </classpath>
                   <src path="${entity.ejb.src.dir}"/>
                   <src path="${session.ejb.src.dir}"/>
                   <src path="${xdoclet.output}/java"/>
              </javac>
         </target>
         <target name="webdoclet">
              <taskdef
               name="webdoclet"
               classname="xdoclet.modules.web.WebDocletTask"
               classpathref="xdocletlib"
              />
              <webdoclet destdir="${xdoclet.output}/${web.dir}/META-INF" excludedtags="@version,@author">
                   <deploymentdescriptor
                    schema="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
                    displayname="Test App"
                    description="A quick and dirty test"
                   >
                        <welcomefile file="index.html"/>
                        <welcomefile file="index.jsp"/>
                   </deploymentdescriptor>
                   <fileset dir="${entity.ejb.src.dir}"/>
                   <fileset dir="${session.ejb.src.dir}"/>
              </webdoclet>
         </target>
         <target name="build" depends="compile,webdoclet">
              <mkdir dir="${jars.dir}"/>
              <jar destfile="${jars.dir}/test.jar">
                   <fileset dir="${build.dir}"/>
                   <fileset dir="${xdoclet.output}" includes="META-INF/*ejb-jar.xml"/>
              </jar>
              <war
               basedir="${web.dir}"
               destfile="${jars.dir}/test.war"
               webxml="${xdoclet.output}/${web.dir}/META-INF/web.xml"
              >
                   <classes dir="${build.dir}">
                        <include name="**/*Local.class"/>
                        <include name="**/*LocalHome.class"/>
                   </classes>
              </war>
              <!-- Build ear -->
              <ear destfile="${jars.dir}/test.ear" appxml="META-INF/application.xml">
                   <fileset dir="${jars.dir}" includes="*.jar,*.war"/>
                   <fileset dir="${basedir}" includes="META-INF/sun-application.xml"/>
                   <!-- client -->
                   <fileset dir="${basedir}/../testclient/${jars.dir}" includes="*.jar"/>
              </ear>
         </target>
         <target name="test">
              <exec executable="${env.J2EE_HOME}\bin\verifier.bat">
                   <arg value="${jars.dir}/test.ear"/>
              </exec>
              <property
               name="cpath"
               value="${avk.home}/appserver/lib/sun-appserv-ant.jar:${avk.home}/lib/javke-ant.jar"
              />
              <taskdef
               name="ArchiveTest"
               classname="org.apache.tools.ant.taskdefs.optional.sun.verification.StaticArchiveTest"
               classpath="${cpath}"
              />
              <ArchiveTest appName="${jars.dir}/test_ear/test.jar"/>
              <taskdef name="SourceScan"
               classname="org.apache.tools.ant.taskdefs.optional.sun.verification.SourceScan"
               classpath="${cpath}"
              />
              <SourceScan srcDir="${basedir}/entity_ejb_src" srcServer="sunone"/>
              <SourceScan srcDir="${basedir}/session_ejb_src" srcServer="sunone"/>
         </target>
         <target name="deploy" depends="build">
              <copy todir="${env.J2EE_HOME}/domains/domain1/autodeploy" file="${jars.dir}/test.ear"/>
              <ant target="start_server"/>
         </target>
         <target name="undeploy" depends="stop_server">
              <delete file="/**/*">
                   <fileset dir="${env.J2EE_HOME}/domains/domain1/autodeploy" includes="**/*"/>
              </delete>
         </target>
         <target name="start_server">
              <exec dir="${env.J2EE_HOME}\bin" executable="${env.J2EE_HOME}\bin\asadmin.bat">
                   <arg value="start-domain"/>
                   <arg value="domain1"/>
              </exec>
         </target>
         <target name="stop_server">
              <exec dir="${env.J2EE_HOME}\bin" executable="${env.J2EE_HOME}\bin\asadmin.bat">
                   <arg value="stop-domain"/>
                   <arg value="domain1"/>
              </exec>
         </target>
    </project>

    There are quite a few sample apps and blueprint apps that Sun provides. Have you looked at any ofThanks for the response. I looked over the Sun examples and can get them to work. I'm just not interested in manually writing so much code. Every bean seems to require a zillion files and configuration settings. XDoclet was supposed to help me avoid all the typing. I'd also like to steer clear of the deploytool; being able to do a complete build in one step is very important to me. I suppose I could compare and contrast with the functional examples but it's such slow going...

  • Keynote projection problem with MacBook Pro

    I have my MacBook pro hooked up to a projector. The desktop displays full-screen but when I play a presentation in Keynote it only displays in a small window, the surround is black.
    How do I fix it so that I get a full size presentation projected?

    If it requires a third repair then it's normally replaced with the latest comparable model.
    Are you dealing with Apple directly or with an Authorised dealer ?
    (I've had poor service from NextByte and MAC1 but found Geekworks OK)
    I suggest you call Apple Australia (133 622) and ask for Customer Relations (they are based in Sydney), explain what's been happening and tell them how unhappy you are about it. They have more flexibility than dealerships and would most likely arrange a replacement for you I'd suspect.

  • Request for Sample SAP Archive Project Plan

    Dear SAP Practitioner
    My firm is in the mist of planning for SAP Data archiving project. We are looking for sample SAP Data Archiving Project plan and other related documentations. We sincerely hope that you can share for the knowledge of our firm and the rest of the community.
    Regards
    Leonard
    Message was edited by: Leonard Tan

    Hi Kenny,
    Whenever you create a custom (Z) idoc type and want to trigger idocs for it you would need to use the MASTER_IDOC_DISTRIBUTE function module for the same.
    Hence to get some sample programs just do a <i>where used</i> on this function module.
    Hope this helps. Also please refer to the link below:
    <a href="http://">help.sap.com/saphelp_erp2004/helpdata/en/78/21783151ce11d189570000e829fbbd/frameset.htm</a>
    to understand more about not only creating the outbound program using this function module but also about the related SPRO and other configuration.
    Regards,
    Aditya

  • Any sample ActionScript mobile project for iOS

    Hi,
    I am looking for some sample example of ActionScript mobile project for iOS to get started. I am very excited with new flash builder 4.5 tool but looking for some example so that I can quickly try it.
    -Greg

    Hi Greg,
    http://va.lent.in/blog/2011/03/25/air2-6-app-for-ios/ should get you started. Once you familiar with the basics, you can check out the new features. Following links should help:
    http://www.adobe.com/devnet/air/articles/ios_features_in_air26.html
    http://tv.adobe.com/watch/adc-presents/developing-for-ios-with-air-for-mobile-26/
    http://www.adobe.com/devnet/devices/ios.html
    Thanks,
    Sanika

  • Can Keynote project onto Apple TV?

    Is there a wireless way to make my Keynote files project onto my Apple TV?
    I have my iPad2 and iPhone synced on my wifi network at home (with the remote capability).

    The Apple TV and the iPad have to be on the same wireless network.  If you have both the iPad and Apple TV turned on, double click the home button on the ipad and swipe to your right to reveal the volume control.  If both the Apple TV and the iPad are connected to the same wireless network, a fourth button should appear in the middle (Airplay button).  Click on that, and you should see an option for the Apple TV with an on/off switch for mirroring.  Turn mirroring on.
    Once that is taken cared of, you should see your iPad's home screen on your TV.  You can then fire up Keynote on your iPad and that's about it.

  • SAP SD Sample scenario / mock project

    Hello,
    Can anyone send me some sample scenarios  or mock projects for practice. I'd really appreciate if someone can post some links here or send me via mail. My email address can be found in my profile.
    Thank you!
    Amitava

    Hi,
    [SAP Best Practices Baseline packages - Based on SAP ECC 6.00|http://help.sap.com/bp_blv1600/V5600/BL_US/html/index.htm]
    Now click on technical information and then on content library.Now on the right side pane you will find all scenarios related to different ,odules will be displayed.You will have configurations,scenario's and master data related documents.
    Assign Points if  useful.
    Thanks and Regards,
    Naveen Dasari.

  • How do I share a Keynote project as Quicktime with narration on each slide?

    I have a Keynote presentation with narration embedded in each slide. It plays fine as a self-timed show. I tied everything together by "recording" the presentation (with no extra sound). This second version of the show plays fine within Keynote, starting always at the first slide. When I try to share this second show as a Quicktime, the sound is hit-or-miss: part of the narration on some slides, all of it on others, none at all on others. The total length of the QT movie matches the playing time of the Keynote presentation, but the sound is whacko. My workaround was to do a screen capture with iShowU, but I would like to know the solution to the problem within the Keynote program. I would appreciate hearing any ideas anyone may have. Thanks.

    Oh !
    thats a shame
    is there no public or semi public area to save a file to that can be shared

  • Sample RFID based Project using SAP XI

    Hello everybody,
    Can anybody send me a RFID based project that can be implemented using XI?
    I searched in sdn and Google, but didn't come across any.
    Appreciate your help.
    Thank you,
    Deepak.

    Hi,
    Please don't mind but I am not getting what exactly you are looking for.
    Because the above posted links have covered all the configuration as well as installation things with XI step-by-step.
    Are you looking for the basic flow of RFID or do you have any scenario where this RFID is to be implement.
    RFID is generally used as for indentification purpose, normally used with your login cards, or bar-code system at shops etc.
    Let me know if you are looking for any specific scenario to be implemented. Because if you are comparing it with  other scenarios then do you have sender and receiver systems ready with you.
    for e.g. if you are dealing with bar codes, then you have to connect the bar-code application with XI and then to receiver system such as database or may be SAP.
    On the basis of request from that application XI will provide the data to bar code application (such as item code, item price, quantity etc) from data base or SAP or anyother application.
    I hope now you might be clear with it
    thanks
    Swarup
    Thanks
    Swarup

  • Exporting a Keynote project.

    Hello,
    I have a problem.  Is it possible to achieve the same video clarity as in a keynote presentation if I export one?  I would like to export as the file to the greatest degree of detail.  I have done this using the H.264 codec however the color gradients look very blocky.  Should I use a different codec and bump the FPS up and if so which ones?  Thank you
    BTW Keynote 09

    I have found the x264encoder as suggested to help partially. Contrary to the instructions on the byteful blog, try unchecking the "Add gamma 2.2" checkbox and adding the "-- 2-2-2 Anything else" color space tag that's right above it.
    It's not perfect, but it's much better than the Quicktime default.
    Please file a bug report for this: https://developer.apple.com/bugreporter/
    I have already done so, but only bugs that squeak the loudest get fixed, especially in maintenance releases of OS X.

  • Keynote projected image shrinks when slideshow played

    When I view my Keynote '09 screens through my InFocus projectors, the image looks normal size in Navigator mode, but shrinks when I play the slideshow. Resolution is set at 1024 x 768 in Keynote and in the projectors. I've been using Keynote for 4 years and never had any issues like this.

    That's odd. Maybe you've done this already, but check your Keynote Preferences to make sure that "Scale Slides up to fit display" is checked. (see screenshot)

  • Downloading Sample Java webdynpro projects from SDN.

    Hi All,
           I'm practising some java webdynpro examples from SDN. Now am doing Exercise on "Using Validating and Non-Validating Actions". This help document is in the url https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/edf6ea90-0201-0010-7696-a68662381c12
    In this document, they have asked to download the webdynpro project named "WDActions.zip" ( Reference : Page 12 in the document ).
    Where i can find this project in the sdn?
    Can any one help me?
    Thanks in advance

    Hi,
    try here:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#6 [original link is broken]
    kind regards
    Stefanie

Maybe you are looking for

  • Ipad vga signal levels

    3 out of 5 attempts to present Keynote (and other video enabled apps) presentations have failed. After some investigation I discovered that the failed talks (ipad could not drive video projector - iapd couldn't find project, and projector couldn't fi

  • Tab control background color matching

    I have a system style tab control.  I realized the when the program runs in exe mode, the background color of my label on the tab control doesn't match the backgound color of the tab control.  The background color of the tab control is different betw

  • Wiki Migration

    Ok. Most wiki migration updates will likely appear in this thread. I will try to centralize them here so that the community wont have to look all of the place for information. I will post links to the mailing list when possible, for some of the more

  • Exchange Server 2013 internal and external DNS records

    I recently installed Exchange Server 2013 and I've register a pubic ip too for exchange server. How can I create internal DNS as well MX record for my Exchange server to send and receive internet mails. It's my first time configuring exchange for a o

  • Update Record Parameter Variable SQL injection

    Hello...Please advise how to correct code... The update record field recordcurrent is a y/n checkbox field with radio buttons for selecting response with default as N. Here is the code that has an error: MM_editCmd.Parameters.Append MM_editCmd.Create