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?)

Similar Messages

  • 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...

  • 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.

  • 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.

  • 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/

  • 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

  • Problem in News Ticker

    I have inserted a news ticker from this link:
    http://www.htmldrive.net/items/demo/397/Vertical-Scrolling-News-Ticker-With-jQuery-jCarous e
    Here is my code:
    <div id="newsticker-demo">
    <div id="LayoutDiv3" class="title">News & Events</div>
        <div id="LayoutDiv4" class="newsticker-jcarousellite">
        <ul>
        <li>
          <div id="LayoutDiv4" class="info">
          <a href="#">The Knight and the Lady</a>
          <span class="cat">Category :Illustrations</span>
          <div id="LayoutDiv5" class="clear"></div>
          </div>
        </li>
        <li>
          <div id="LayoutDiv6" class="info">
          <a href="#">The Family Colours</a>
          <span class="cat">Category:Creatures</span>
          <div id="LayoutDiv7" class="clear"></div>
          </div>
         </li>
         </ul>
             </div> <!-- end newsticker-jcarousellite -->
      </div> <!-- newsticker-demo -->
    I have inserted FG Divs...
    And i have placed the following inside head tags:
    <link rel="stylesheet" href="News-Scroller/style.css" type="text/css" media="screen" />
    <script src="jquery-latest.pack.js" type="text/javascript"></script>
    <script src="jcarousellite_1.0.1c4.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function() {
        $(".newsticker-jcarousellite").jCarouselLite({
            vertical: true,
            hoverPause:true,
            visible: 3,
            auto:500,
            speed:1000
    </script>
    But i don't get scrolling news.

    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title> Home</title>
    <link href="boilerplate.css" rel="stylesheet" type="text/css">
    <link href="CSS/Layout.css" rel="stylesheet" type="text/css">
    <link rel="stylesheet" href="flexslider.css" type="text/css">
    <link href="css/flexnav.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
        background-color: #E9E9E9;
        background-image: url();
    </style>
    <style>
    footer
        width:100%;
        left:0px;
        bottom:0px;
        min-height: 80px;
        background: #000;
        border-top-width: 2px;
        border-top-style: solid;
        border-top-color: #C7E003;
    </style>
    <!-- News Scroller -->
    <link rel="stylesheet" href="News_Scroller/style.css" type="text/css" media="screen" />
    <script src="News_Scroller/jquery-latest.pack.js" type="text/javascript"></script>
    <script src="News_Scroller/jcarousellite_1.0.1c4.js" type="text/javascript"></script>
    <script type="text/javascript" src="News_Scroller/jquery-latest.min.js"></script>
    <script type="text/javascript">
    $(function() {
        $(".newsticker-jcarousellite").jCarouselLite({
            vertical: true,
            hoverPause:true,
            visible: 3,
            auto:500,
            speed:1000
    </script>
    <!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> -->
    <script src="jquery.min.js"></script>
    <script src="jquery.flexslider.js"></script>
    <!-- Place in the <head>, after the three links -->
    <script type="text/javascript" charset="utf-8">
      $(window).load(function() {
        $('.flexslider').flexslider();
    </script>
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--[if lt IE 9]>
    <link href="IE-only.css" rel="stylesheet" type="text/css">
    <![endif]-->
    <script src="respond.min.js"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
      <div id="LayoutDiv1"><img src="SJV-Images/Banners/LimeGreenheader-new-curved.png"/></div>
      <div id="Nav">
    <div class="menu-button">Navigation</div>
        <nav>
              <ul data-breakpoint="800" class="flexnav">
                <li><a href="index.html">Home</a>
               <!--   <ul>
                    <li> <a href="#content">Sub 1 Item 1</a></li>
                    <li><a href="">Sub 1 Item 2</a></li>
                    <li><a href="">Sub 1 Item 3</a></li>
                    <li><a href="">Sub 1 Item 4</a></li>
                  </ul> -->
                </li>
                <li><a href="">Profiles</a>
                  <ul>
                    <li><a href="Correspondent.html">Correspondent</a></li>
                    <li><a href="Headmistress.html">Head Mistress</a>
                     <!-- <ul>
                        <li><a href="">Sub 2 Item 1</a></li>
                        <li><a href="">Sub 2 Item 2</a></li>
                        <li><a href="">Sub 2 Item 3</a></li>
                      </ul>-->
                    </li>
                       <li><a href="Fac.html">Faculties</a></li>
                    <!--<li><a href="">Sub 1 Item 3</a>
                      <ul>
                        <li><a href="">Sub 2 Item 1</a></li>
                        <li><a href="">Sub 2 Item 2</a>
                          <ul>
                            <li><a href="">Sub 3 Item 1</a></li>
                            <li><a href="">Sub 3 Item 2</a></li>
                            <li><a href="">Sub 3 Item 3</a></li>
                          </ul>
                        </li>
                      </ul>
                    </li>-->
                  </ul>
                </li>
                <li><a href="Ves-Photogallery.html">Photo Gallery</a>
                 <!-- <ul>
                    <li><a href="">Sub 1 Item 1</a></li>
                    <li><a href="">Sub 1 Item 2</a></li>
                    <li><a href="">Sub 1 Item 3</a></li>
                  </ul> -->
                </li>
                <li><a href="Alumni.php">Alumni</a>
                 <!-- <ul>
                    <li><a href="">Sub 1 Item 1</a></li>
                    <li><a href="">Sub 1 Item 2</a></li>
                    <li><a href="">Sub 1 Item 3</a></li>
                  </ul> -->
                </li>
                <li><a href="Contact.html">Contact Us</a>
              <!--    <ul>
                    <li><a href="">Sub 1 Item 1</a></li>
                    <li><a href="">Sub 1 Item 2</a></li>
                    <li><a href="">Sub 1 Item 3</a></li>
                  </ul> -->
                </li>
              </ul>
        </nav>
      </div> <!-- End div id="Nav"  -->
      <div id="LayoutDiv2">
      <div class="flex-container">
      <div class="flexslider">
        <ul class="slides">
          <li>
            <img src="SJV-Images/Flash Images/Buildings.jpg" alt="SJV1"/>
          </li>
          <li>
            <img src="SJV-Images/Stud2.jpg" />
          </li>
          <li>
            <img src="SJV-Images/Stud3.jpg" />
          </li>
        </ul>
      </div>
      </div>
    </div>  
      <div class="borderbox" id="Special_Features">
      <h3 class="content" align="center"><font size="">Special Features</font></h3>
      <ul class="formatlist" >
      <li >
    ullamcorper pulvinar imperdiet</li>
      <li>ullamcorper pulvinar imperdiet ignissim est posuere id..</li>
       <li>Vestibulum pellentesque fermentum lectus, eget gravida metus commodo.</li>
      <li>Vestibulum pellentesque fermentum lectus, eget gravida metus commodo</li>
      <li>Vestibulum pellentesque fermentum lectus, eget gravida metus commodo.</li>
      <li>Vestibulum pellentesque fermentum lectus, eget gravida metus commodo</li>
      </ul></div>
      <div id="History">
            <img src="SJV-Images/History__FrontImage.jpg" alt="Hisimage" class="floatright"/>
        <h3 class="content" style="padding:0 2.5%;"><font size="+1" class="content">History</font></h3>
        <P class="formatpara">       &nbsp
    <p>Ut   ullamcorper felis sit amet lorem mattis lobortis. Proin arcu neque,   iaculis ac elementum varius, consectetur placerat urna. Maecenas sit   amet lectus quam, ut adipiscing tortor. Vestibulum tellus metus,   vestibulum congue convallis in, lacinia nec lorem. Aliquam erat   volutpat. </p>
        <p>Vestibulum pellentesque fermentum lectus, eget gravida metus commodo   at. Fusce non orci a odio ullamcorper pulvinar imperdiet et risus. Nulla   ac dolor tortor, nec elementum leo. Praesent cursus fermentum mi. Lorem   ipsum dolor sit amet, consectetur adipiscing elit. Etiam pharetra,   tellus sit amet congue vulputate, nisi erat iaculis nibh, vitae feugiat   sapien ante eget mauris. </p>
        <p>Cras elit nisl, rhoncus nec iaculis ultricies, feugiat eget sapien.   Pellentesque ac felis tellus. Aenean sollicitudin imperdiet arcu, vitae   dignissim est posuere id. </p>
    <a href="SJVHistory.html"><img class="hisbutt" src="SJV-Images/Buttons/Read_More.png" /></a></p><br>               
       <!-- <div id="His_Butt"><img src="SJV-Images/Hisbutt.png"/></div> -->
      </div>
      <div class="borderbox" id="Con"><center>
        <h3 class="content" >Contact Us</h3>
        <p class="formatpara"><strong>The Head Mistress</strong><br>
          <strong> dignissim est posuere id <br>
         dignissim est posuere id,</strong>
          <strong> dignissim est posuere id.</strong></p>
      </center>
      </div>
    <div id="Photo_Gall"><center spry:selectgroup="content">
        <h3 class="subhead">Photo Gallery</h3>
    </center>
      <p><a href="Ves-Photogallery.html"><img src="SJV-Images/Link Images/Photo_Gallery.png" width="174" height="70" class="floatright"/></a></p>
    </div>
      <div id="News_Events"><center spry:selectgroup="content">
        <h3 class="subhead">Our Faculties</h3>
      </center><P><a href="Fac.html"><IMG src="SJV-Images/Link Images/Faculties.png" width="174" height="70" class="floatright"/></a></P>
    </div>
    <div id="newsticker-demo">
    <div id="LayoutDiv3" class="title">News & Events</div>
        <div id="LayoutDiv4" class="newsticker-jcarousellite">
        <ul>
        <li>
          <div id="LayoutDiv4" class="info">
          <a href="#">The Knight and the Lady</a>
          <span class="cat">Category :Illustrations</span>
          <div id="LayoutDiv5" class="clear"></div>
          </div>
        </li>
        <li>
          <div id="LayoutDiv6" class="info">
          <a href="#">The Family Colours</a>
          <span class="cat">Category:Creatures</span>
          <div id="LayoutDiv7" class="clear"></div>
          </div>
         </li>
         </ul>
             </div> <!-- end newsticker-jcarousellite -->
      </div> <!-- newsticker-demo -->
    <!--<div id="Cal"><center spry:selectgroup="content" spry:setrow="content">
        <h3 class="subhead">Alumni</h3></center><a href="Alumni.php"><IMG src="SJV-Images/Link Images/Alumni3.png" width="174" height="70" class="floatright"/></a>
      </div>-->
      <!--
      <div id="footer">This is the content for Layout Div Tag "footer"</div> -->
    </div>
    <footer class="footercontent">
    <font color="#CCCCCC">@ 2013 .All Rights Reserved</font>
    </footer>
    <script type="text/javascript" src="js/jquery.flexnav.min.js"></script>
    <script type="text/javascript">$(".flexnav").flexNav({'animationSpeed': 150});</script>
    </body>
    </html>

  • Scrolling news ticker? Anyone?

    Anyone know of an iMovie plugin that creates a decent scrolling news ticker? As in a lower-thirds CNN, FOX, CNBC, etc style- Stupendous Software has one, but it's pretty simple, and Slick doesn't seem to have anything apparent. I could probably use LiveType with FCP, but I'm looking for something that'll save me some time.

    This is a dynamic project. If it is constantly checking for
    news and then displaying it, this sounds like a good place for some
    spry framework.
    It is advanced but you can do it. Go to:
    http://labs.adobe.com/technologies/spry/
    for spry information.
    Also www.lynda.com has a ton of courses that will help. It is
    a subscription site, but if you really want to learn, it is worth
    trying for a month for $25, and if you like it you can do a yearly.
    You can really pack a lot into that one month though.

Maybe you are looking for

  • Very Strange:  ReferenceError: Error #1065: Variable txtToonName is not defined.

    I have a flash label on a movie clip with its instance name called 'txtToomName'.  This object has existed, been successfully instantiated and used for over a year without any modifications.  All of a sudden, during the getClassByName() call, I start

  • Another Caller Display Problem

    My caller display stopped working today at 14.00hrs and dispite reporting it several times and getting a text saying its now fixed, its not working. I have no filters and a filtered face plate, on infinity broadband and tried 2 new bt phones and they

  • Web Service parameter conversion problem

    Hi,    I have written a web service to provision a synchronization scope on a remote SQL Server 2008 database. The database will eventually sync with an SQL CE 3.5 database. [WebMethod] public bool ProvisionSQLRemoteScope(string remoteSQLConnStr, str

  • Format and Reinstall

    I'm sorry, I can't find a better forum to ask this question and I don't feel like calling Apple support. But I'm trying to format and reinstall the OS. No special reason why I'm doing it, just want the reassurance that I know how. Thanks

  • 500 GB Hard Disk will not mount on iMacs (after working fine for months)

    setup : 2x iMac 24" 10.5.6..wired to airport Xtreme, Iomega 500 GB HD connected via USB this drive worked fine and has all the pics on it and was used to backup both iMac's via Time Machine. Today the Airport Xtreme (AX) gives us a flashing orange li