Keynote news ticker?

Can i make a "news ticker" like object in keynote, like the scrolling text at the bottom of news programs?

Keynote can't do what you want directly. You may be able to get the effect you want by using this Dashboard-based technique.

Similar Messages

  • News ticker on top of Keynotes

    We show a keynote presentation near the entrance of our company and want to add a news ticker at the bottom of the screen. I saw the option Tulsa wrote long time ago and think this could work for us. The only minor is that I could not find a RSS reader for dashboard that has only 1 line scrolling at the bottom of the screen.
    I am not a programmer and don't know how to create it myself, hopefully someone solved this and can help me.

    Have done as you said, but only part way there. Can use a Widget, and have developed one that has a simple text crawler. Only problem is you have to embed the text that it displays inside the widget, which is not what I want. The answer I am looking for is that the widget looks up the text it is going to display from a local file e.g. TEXTFILE.txt . For you programmers out there the html is:
    <MARQUEE bgcolor="#808080"
    direction="left" loop="20" width="75%">file:///Users/mac/Desktop/TEXTFILE.txt</MARQUEE>
    but it does not display the contents of the file, but the actual file name.

  • How do you add a "news ticker" to the bottom of a movie for Apple TV?

    Made a movie from keynote, now I need to add a "news ticker" to the bottom of the movie ... How? Using Apple TV to show the movie ...

    use iMovie with text crawl effect

  • Auto scrolling dynamic text field(news ticker)

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3272625483_2679871
    Content-type: text/plain;
    charset="US-ASCII"
    Content-transfer-encoding: 7bit
    Does anyone know how to make a scrollable dynamic text field
    scroll on its
    own and also with user interaction?
    Thanks in advance for your help.
    Bill
    --B_3272625483_2679871
    Content-type: text/html;
    charset="US-ASCII"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Auto scrolling dynamic text field(news
    ticker)</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN
    STYLE=3D'font-size:12.0px'>Does =
    anyone know how to make a scrollable dynamic text field
    scroll on its own an=
    d also with user interaction?<BR>
    <BR>
    Thanks in advance for your help.<BR>
    <BR>
    Bill</SPAN></FONT>
    </BODY>
    </HTML>
    --B_3272625483_2679871--

    I found this:
    http://www.kirupa.com/developer/mx/dynamic_scroller.htm
    I copied the actual scroller and put it in my .fla and it
    worked! Now if I can only figure out links in XML...

  • Creating a CNN, Sky type news ticker

    Hi,
    I have a three minute video and would like to add a news ticker that will loop once during the three minutes. The ticker text is considerable. Before I used to use Sony Vegas. A video I created using Sony Vegas is at http://youtu.be/bmcXM7fE6s0 (jump to 35 seconds into the footage for the ticker at the bottom).
    I managed to get credits type text (scrolling vertically) with Premiere Pro but cannot figure out the ticker. Although I've done an introductory Lynda.com course on Premiere Pro this is my first attempt at producing something with Premiere to upload to youtube and am a newbie in this product.
    I would be greatful if anyone can point me to a text or video tutorial on this item.
    Regards,
    Al

    More detailed steps:
    Create a new Title (right-click in the project area, click the icon, etc.)
    Set it to the sequence dimensions (the default)
    Choose the Type tool (the T symbol) - NOT the Area Type tool.
    Click once at the bottom-left of the screen, at the vertical position where you want the ticker to be.
    Pick the font, size, color, fill, etc on the properties tree that now displays.
    Click again on the small vertical box marking the position of the type box, you'll see it flash as the cursor wakes up.
    Copy and paste your ticker text - it must be all on one line, so it helps to copy it from a text editor.
    The text box will enlarge to fit, so it'll extend waaay off the right side of the window.
    Click the Roll/Crawl options tool (the second icon below the name of the title on the panel tab, a set of lines with a vertical arrow)
    Choose Crawl Left, and (usually) start/end off screen.
    Click OK and close the titler window.
    Drop the new title onto the sequence timeline and stretch it out to set the in/out points, and hence the crawl speed.
    If you want a lower third background graphic behind the text (anything other than a plain fill), you'll need to put that in another video track beneath your ticker title - everything in your ticker title will crawl.

  • News Ticker - Java Script

    Hello,
    This is the java script I use to create a news ticker on one of my pages. It can be included anywhere in your application - region header, body or footer:
    <script language="JavaScript1.2">
    Cross browser Marquee script- © Dynamic Drive (www.dynamicdrive.com)
    For full source code, 100's more DHTML scripts, and Terms Of Use, visit http://www.dynamicdrive.com
    Credit MUST stay intact
    //Specify the marquee's width (in pixels)
    var marqueewidth="300px"
    //Specify the marquee's height
    var marqueeheight="20px"
    //Specify the marquee's marquee speed (larger is faster 1-10)
    var marqueespeed=1
    //configure background color:
    var marqueebgcolor="#DEFDD9"
    //Pause marquee onMousever (0=no. 1=yes)?
    var pauseit=1
    //Specify the marquee's content (don't delete <nobr> tag)
    //Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):
    var marqueecontent='<nobr><font face="Arial"><b>This is where my text goes.<b/></font></nobr>'
    marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
    var copyspeed=marqueespeed
    var pausespeed=(pauseit==0)? copyspeed: 0
    var iedom=document.all||document.getElementById
    if (iedom)
    document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontent+'</span>')
    var actualwidth=''
    var cross_marquee, ns_marquee
    function populate(){
    if (iedom){
    cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
    cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
    cross_marquee.innerHTML=marqueecontent
    actualwidth=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth
    else if (document.layers){
    ns_marquee=document.ns_marquee.document.ns_marquee2
    ns_marquee.left=parseInt(marqueewidth)+8
    ns_marquee.document.write(marqueecontent)
    ns_marquee.document.close()
    actualwidth=ns_marquee.document.width
    lefttime=setInterval("scrollmarquee()",20)
    window.onload=populate
    function scrollmarquee(){
    if (iedom){
    if (parseInt(cross_marquee.style.left)>(actualwidth*(-1)+8))
    cross_marquee.style.left=parseInt(cross_marquee.style.left)-copyspeed+"px"
    else
    cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
    else if (document.layers){
    if (ns_marquee.left>(actualwidth*(-1)+8))
    ns_marquee.left-=copyspeed
    else
    ns_marquee.left=parseInt(marqueewidth)+8
    if (iedom||document.layers){
    with (document){
    document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
    if (iedom){
    write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden">')
    write('<div style="position:absolute;width:'+marqueewidth+';height:'+marqueeheight+';background-color:'+marqueebgcolor+'" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
    write('<div id="iemarquee" style="position:absolute;left:0px;top:0px"></div>')
    write('</div></div>')
    else if (document.layers){
    write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee" bgColor='+marqueebgcolor+'>')
    write('<layer name="ns_marquee2" left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
    write('</ilayer>')
    document.write('</td></table>')
    </script>
    This works fine and I would like to include some dynamic content into this script. Either some page iteme content or even some query results. My java script knowledge is quite "skinny" so I got to ask how to do that?
    Thanks in advance,
    Denes

    Denes,
    I just came across your thread.
    Just replace within
    var marqueecontent='<nobr><font face="Arial"><b>This is where my text goes.<b/></font></nobr>'...
    the: "THIS is where the text goes." with: &P1_text.
    and you can manipulate the text dynamically.
    Ofcourse you hv to create the item P1_text and shortly after you keyed in s.th. and push "Enter" - then the data is in the Session (look at Session in Developer bar).
    After "Enter" the ticker/marquee works with your data.
    Alternative 2:
    Define in Application Attributes under Static Substitution Strings a "GLOBAL_ITEM" with a value: say: my News - then replace &P1_TEXT. by &GLOBAL_ITEM. (beware of the '.' after the item !!! it has to be there !!
    Alternative 3:
    Work with a table:
    A)Define a table called "NEWS" with the fields News_id, text, active_inactive - work with sequence..
    B) Define form and report for data entry. In the form go to the item "active_inactive" and modify iot to be a radio-button with LOV : STATIC: Yes,No
    C) still use the item P1_text and in the attributes of the item go to "Source" - select "SQL-Query" and key in:
    select text from news where active_inactive = 'Yes' - modify the P1_text item as "hidden"
    --> now you can manage your news and just the "Active" news are shown.
    Advanced: make sure, that only one record is active !!
    Have fun !! (:-)
    Bernhard

  • News ticker with jquery

    Hi
    has anyone implemented a new ticker in APEX using jquery?
    I have tried to implement the liScroll news ticker detailed on the website:
    http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/jq-liscroll/scrollanimate.html
    but to no avail. Firebug is not reporting any errors on my APEX page that I am trying to use the new ticker on and I can see all imported .js scripts that the instructions on the website say to use - but my list just remains as a list.
    We are using APEX 3.1.
    Many thanks
    Paul

    I use the following script in some of my applications: http://www.dynamicdrive.com/dynamicindex2/cmarquee.htm
    I modified it slightly to use an APEX application item at the following line of javascript:
    var marqueecontent='<nobr><font face="Arial"><b>&APPLICATION_MESSAGE.<b/></font></nobr>'See if that will help..
    Thank you,
    Tony Miller
    Webster, TX
    I am a Ranger! We walk in the dark places no others will enter! We stand on the bridge and no one may pass! We live for the One, we die for the One!
    If this question is answered, please mark the thread as closed and assign points where earned..
    PS: PLEASE DO NOT POST ITEMS TO A THREAD THAT IS CLOSED OR THIS OLD...

  • BBC News Ticker

    Hi,
    I have included BBC Like News Ticker from this website
    http://www.jqueryscript.net/text/BBC-News-Like-Website-Ticker-Plugin-with-jQuery-News-Tick er.html
    Here is my site link:
    http://bhc.edu.in/TESTSITE/slider.html
    But it doesn't work.Please check what is wrong with my code.

    I am having FireFox 33.1....I don't find the bbc like news ticker...
    My code:
    <div id="bbc_news">
      <ul id="js-news" class="js-hidden">
      <li class="news-item">jQuery News Ticker now has support for right-to-left languages!</li>
      <li class="news-item">jQuery News Ticker now has support for loading content via an RSS feed!</li>
      <li class="news-item">jQuery News Ticker now has an optional fade effect between items!</li>
      <li class="news-item">New updates have been made to jQuery News Ticker! Check below for more details!</li>
      <li class="news-item">jQuery News Ticker is now compatible with jQuery 1.3.2! See below for further details and for latest download.</li>
      <li class="news-item">Further updates to jQuery News Ticker are coming soon!</li>
    </ul>
    <script type="text/javascript">
    $(function () {
      $('#js-news').ticker();
    </script>
      </div>

  • Adding news ticker or text scroller in a jsf page

    Can anyone please give me some clue about adding news ticker or text scroller kind of component using jsf, richfaces or icefaces in which important information like information about available jobs can be shown?
    Thanks in advance.
    Edited by: 857452 on May 18, 2011 7:06 AM
    Edited by: 857452 on May 18, 2011 7:07 AM

    this is more the realm of javascript / ajax / DHTML, not JSF. JSF is server side, what you want to do is mostly client side. Only getting the data might involve the server.

  • I usually use PP at work.  can i use keynote to modify PP, then turn around and utilize Keynote new file in PP

    can i use keynote to modify PP, then turn around and utilize Keynote new file in PP?

    *Apple's stated System Requirements:*
    Mac computer with an Intel, PowerPC G5, or PowerPC G4 (500MHz or faster) processor
    512MB of RAM; 1GB recommended
    Approximately 1.2GB of available disk space
    32MB of video memory
    Mac OS X v10.4.11 or Mac OS X 10.5.6 or later
    QuickTime 7.5.5 or later
    The NVIDIA GeForce4 MX has a stated max 64mb of memory, but I could not see whether that meant it actually had that quantity. I would assume though that it had a minimum of 32mb.
    Have you checked in *About This Mac* what the actual memory is?
    Maybe Apple was optimistic in its minimum requirements.

  • News ticker for flash 8

    hey i'm looking for an xml/flash news ticker tutorial for
    flash 8. I tried the ones on kirpa.com but i think they're
    primarily designed to work on MX...i tried it and it doesnt work in
    flash 8.. does anyone know where there is a good flash 8 xml news
    ticker tutorial.. if so please post the URL here.. cheers.

    A crossdomain.xml file should do it. It's not the server,
    lots of domains
    can be on the same server.
    If your Flash is on domainB.com and you're wanting to get
    data from
    domainA.com, you'd need a crossdomain.xml file on domainA
    like so:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM
    http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <allow-access-from domain="domainB.com" />
    </cross-domain-policy>
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • News ticker

    hi
    i want to place a news ticker in my jsp page , please send JavaScript code for new's ticker
    Edited by: sivakumar243 on Oct 16, 2007 6:03 AM

    born and raised English(though i know i dont type like it), i just dont see the humor.
    yes ticker is reference to a heart, and new is a new is a new, but still.
    Are we really implying this forum is now a donor exchange?
    Perhaps the image if ripping out a newbies heart just for amusement is disheartening to me.
    We all move to the beat of a different drum, what might be right for you, will not be right for some. You take the good, you take the bad, and there you have,
    my closing statement.
    (ps. that was a reference to boxed comedy show, anyone?)

  • How to implement news ticker in sharepoint 2013?

    Hi All,
    Please give me some guidance to implement news ticker webpart in sharepoint 2013.
    Thanks in advance.
    Phani kumar

    Take a look at this post. 
    http://www.sharepointnadeem.com/2011/09/news-ticker-webpart.html
    It was originally written for SP 2010. But the steps should be same for SP 2013.
    Blog | SharePoint Learnings CodePlex Tools |
    Export Version History To Excel |
    Autocomplete Lookup Field

  • Scrolling news ticker embedded in a widget, with clickable links?

    Hi, a friend of mine has a widget and he wants to put a scrolling news ticker embedded in the widget, with clickable links, can it be done? He has it working
    in the web version. thanks.

    What you are trying to create is called a crawl, and you can create one by using the Roll/Crawl tool in the Titler workspace.
    To open the Titler, click the "T" on the lower right of the Monitor panel. The Roll/Crawl tool is located in the lower left of the Tasks panel in the Titler.
    You won't be able to create a huge, continuous crawl, but you can certainly use it to create the effect of a headline crawling right to left across the lower third of your screen.
    For more information on the basic tools in this program check out my free 8-part Basic Training tutorials on Premiere Elements support site Muvipix.com.
    http://forums.adobe.com/thread/537685?tstart=0
    And for step-by-step instructions for using the program and creating effects, like this scroll, you may want to pick up a copy of one of my books.

  • Great News Ticker

    I'd love to get this
    Fading
    News Ticker onto my page but coming from a design background I
    have a limited knowledge of coding :o(
    Anyone got the time to talk me through the process?
    Rich

    use this one. it's in javascript.
    http://www.dynamicdrive.com/dynamicindex2/fadescroll.htm

Maybe you are looking for

  • Discoverer integration with EBS R12 !!!

    Hello Sir, I need help to install/integrate Discoverer with R12. Actually, our clients are using Discoverer 4i in current EBS 11.5.10.2 in production. We have just upgraded EBS in TEST environment from 11.5.10.2 to R12.1.3. I had suggested client tha

  • Windows 2008 update error 80072EE5

    Im trying to update my windows server 2008. Im getting the error 80072EE5.  Not sure why. I have an sbs 2003 server that is the main server, it has wsus on it. But it's not setup to distribute updates yet. I've searched this error but nothing comes u

  • ITunes Account Disappeared Within Last Several Hours

    Itunes account with AOL handle & AOL password configuration... worked fine for years until attempted to access the iTunes store this evening from home Mac. (Have another authorized machine at work) ID not recognized. Account 'disappeared' from iTunes

  • Customizing infopath form without using infopath designer in SharePoint 2013

    hi friends i need to depoly infopath from in client environment. this form fetch data from some lists.  they dont have infopath designer in their environment how can i customize my infopath form to link with those list without using infopath designer

  • Drag&Relate in SAP Portal 7.0

    Hello experts, I have a problem in SAP EP 7.0. I need to use Drag&Relate technology but in this version is not possible because this functionality is discontinued. The reason is that there is a technical reengineering of the Distributed Query Engine