How can I make navigation like this...?

http://timeger.com/work/JoseCuervo/JoseCuervo_Facebook.php
I want to the user to be able to navigate within my site, like the navigation on this site. (the numbers on the right side of the screen re-populate the area with different images.)
Thanks so much!

Use mouse rollover with two images, one with just the text and the other image, rollover, with the oval around the text. You can link the first image to the page you want. This demo page has some examples: Mouse Rollover. The first two examples are hyperlink to other pages.
OT

Similar Messages

  • How Could I Make Something Like This.

    http://www.youtube.com/watch?v=vlRdjAwEzbU
    I Am Wondering How I could make something like this in AfterEffects CS4.
    Any Help Would Be Appreciated.

    dx394 wrote:
    Is There A Tutorial Anywhere About It?
    You could contact the animator or whoever posted the clip.
    Deconstruct the sequence. observe the moves and decide, with your present level of familiarity, how you would approach it. Scaling of the ten or so different layers is simple enough but acquiring the contents of the layers is not something you will do in AE.
    As Todd says, start small, figure it out one step at a time, move on to more advanced functions. Animting 3D layers is 9 times more difficult than 2D. when you add lighting and camera moves you raise the complexity level and rendering time to another power making your project about 27 times more difficult.
    bogiesan

  • How can i generate xml like this?

    Hi all,
    How can i generate xml like this & i need to send it to via HTTP :
    <mms>
                 <subject>message subject</subject>
                 <url_image>http://image_url</url_image>
                 <url_sound>http://sound_url</url_sound>
                 <url_video>http://video_url</url_video>
                 <text>message text</text>
                 <msisdn_sender>6281XYYYYYY</msisdn_sender>
                 <msisdn_receipient>6281XYYYYYY</msisdn_receipient>
                 <sid>to be define later</sid>
                 <trx_id>Unique number</trx_id>
                 <trx_date>yyyyMMddHHmmss</trx_date>
                 <contentid>see note</contentid>
    </mms>& how can i get the value of the sid (for example)?
    I hav tried to generate that xml by using StringBuffer & append, but it's not what i mean...
    Anyone can help me?

    Ok...i got it. But i still hav some problems.
    This is the sample code that i used :
    public class XMLCreator {
         //No generics
         List myData;
         Document dom;
            Element rootEle, mmsEle, mmsE;
            StringWriter stringOut;
            mms mms;
         public XMLCreator(String subject, String image, String sound,
                    String video, String text, String sender, String recipient,
                    int id, String date, String contentid) {
              mms = new mms(subject, image, sound, video, text, sender,
                            recipient, id, contentid, date);
                    createDocument();
         public void run(){
              createDOMTree();
              print();
         private void createDocument() {
              //get an instance of factory
              DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
              try {
              //get an instance of builder
              DocumentBuilder db = dbf.newDocumentBuilder();
              //create an instance of DOM
              dom = db.newDocument();
              }catch(ParserConfigurationException pce) {
                   //dump it
                   System.out.println("Error while trying to instantiate DocumentBuilder " + pce);
         private void createDOMTree(){
              //create the root element <Mms>
              rootEle = dom.createElement("mms");
              dom.appendChild(rootEle);
              createMmsElement(mms);
         private Element createMmsElement(mms b){
              Element subjectEle = dom.createElement("subject");
              Text subjectText = dom.createTextNode(b.getSubject());
              subjectEle.appendChild(subjectText);
              rootEle.appendChild(subjectEle);
              //create url_image element and author text node and attach it to mmsElement
              Element imageEle = dom.createElement("url_image");
              Text imageText = dom.createTextNode(b.getUrl_image());
              imageEle.appendChild(imageText);
              rootEle.appendChild(imageEle);
              // & etc....
              return rootEle;
          * This method uses Xerces specific classes
          * prints the XML document to file.
         private void print(){
              try
                   //print
                   OutputFormat format = new OutputFormat(dom);
                   format.setIndenting(true);
                            stringOut = new StringWriter();
                   //to generate output to console use this serializer
                   XMLSerializer serializer = new XMLSerializer(stringOut, format);
                   //to generate a file output use fileoutputstream instead of system.out
                   //XMLSerializer serializer = new XMLSerializer(
                   //new FileOutputStream(new File("mms.xml")), format);
                   serializer.serialize(dom);
              } catch(IOException ie) {
                  ie.printStackTrace();
            public String getStringOut() {
                return stringOut.toString();
    }when i tried to show the stringOut.toString() in my jsp, it's only showed string like this :
    The Lords Of The Ring http://localhost:8084/movie/lotr.3gp 6281321488448 6281321488448 123 0 20070220114851 LOTR.
    1. Why this is happen?i want to generate xml which its format is like above.
    2. How can i send this xml (put in msg parameter) using jsp (via web) without creating the mms.xml?
    3. if i want to set the msg parameter equal to mms.xml - means that msg = mms.xml, what is the data type for msg? is it an object or anything else?
    Thx b4 in advance...

  • Can iMovie make slideshows like this?

    I assure you, I am not a shill for this company. I'm just impressed with the slideshows they can put together and want the tools to make one myself.
    Can iPhoto 08 provide the tools to make something like this finished product:
    http://urltea.com/1zrt
    (multiple photos in a single frame)

    mil8 wrote:
    ... Can iPhoto 08 provide the tools to make something like this finished product: .. .
    no.
    and iM either..
    these are those typical 'options packed' PC-made shows, my ex-father-in-law likes to impresss me with.. you stare at the effects, but don't 'see' the content anymore..
    anyhow:
    prepare your pics before use in iPhoto/iMovie, to show more than one.. (not exactly , what you want, but look at my example here)
    or, purchase a bunch of plug-ins from geethree.com (plug-ins are only avail for iMHD6!), to teach iM zillions of new transitions..
    or, have a look at 3rd party 'slideshow makers' as PhotoMagico or Photo2Movie ..
    ... but two tumblin' on all axis cubes, showing 12 pics, simultanously seen on a screen.. ? a rare attemp for Mac apps..

  • How do yah make something like this?

    I'm trying to make simething like this. However I'm stuck on what sort of algorithm would be used. Any idea? Thanks a bunch in advance for any help!
    http://i91.photobucket.com/albums/k293/rawlehypermode/Untitled.jpg

    You meant something like this ?
    import java.awt.Dimension;
    import java.awt.Graphics;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class LineDemo extends JPanel {
        final static int SIZE = 640;
        final static int STEP = 20;
        protected void paintComponent(Graphics g) {
            for (int i = 0; i < SIZE; i += STEP) {
                g.drawLine(i,0,SIZE,i);
                g.drawLine(SIZE,i,SIZE-i,SIZE);
                g.drawLine(SIZE-i,SIZE, 0, SIZE - i);
                g.drawLine(0, SIZE - i,i,0);
        public static void main(String[] args) {
            JFrame frame = new JFrame("Line demo");
            frame.add(new LineDemo());
            frame.setPreferredSize(new Dimension(SIZE+STEP,SIZE+2*STEP));
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setVisible(true);
    }

  • My password protected phone was stolen and hacked into.  How can I prevent someone like this from hacking into/getting around the passcode?  They now have access to everything on my phone (I had a passcode to prevent this)

    How can you prevent a hacker from bypassing your iphone passcode?  My phone was stolen and someone hacked in and has access to everything on my phone and turned off "find my iphone."  This is exactly what I wanted to prevent from happening and the reason why I had a passcode. 

    Turn on "Erase Data" in Settings>Passcode. That will wipe the data after 10 incorrect password attempts.
    Turn off "Simple Passcode" in the same place and use something other than a 4 digit pin as your passcode.
    Also make sure Find my iPhone is enabled so you can locate and if necessary, forcibly wipe the phone.

  • How can I do sth like this ${requestScope.list.size} ?

    Hi, I have 2 attributes which I pass like this
    requsest.setAttribute("startPoint", 3);
    request.setAttribute("myList", myList);
    where myList is a ArrayList filld with objects. On jsp page I want to count 2 values first and last number:
    <c:set var="firstNumber" value="${requestScope.startPoint+1}"/> - this works fine.
    <c:set var="lastNumber" value="${requestScope.startPoint+requestScope.myList.size}"/> - this is impropper.
    How can I use as integer size of list which is passed as request attribute. Is this possible?
    I would appreciate any hepl.

    Hang on. For such things you can build your own EL functions - it is very easy and involves only 4 steps.
    1. Write a class containing a method (must be static) to calculate size of any list.
    [Put the class in /WEB-INF/classes, so your file will reside as /WEB-INF/classes/myfunctions/MyFunctions.class]
    package myfunctions;
    import java.util.List;
    public class MyFunctions{
         public static int getListSize(List list){
              return list==null?0:list.size();
    }2. In your taglib add an entry (in case you don't have already create one) for the EL function:
    [Say our taglib is mytags.tld in /WEB-INF]
    <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
      http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
         version="2.0">
         <tlib-version>1.0</tlib-version>
         <short-name>MyTagLib</short-name>
         <function>
              <description>List Size</description>
              <name>size</name>
              <function-class>myfunctions.MyFunctions</function-class>
              <function-signature>int getListSize(java.util.List)</function-signature>
         </function>
    </taglib>3. Now in your JSP add following line to use your new EL function:
    <%@taglib uri="/WEB-INF/mytags.tld" prefix="mt"%>4. And use as:
    <input type=text value="${mt:size(requestScope.myList)}" />Note that there no issues using JSTL EL functions. My intention is to resolve your problem and at the same time to give you a glance how to write and use your own EL functions (might be useful in future).
    Thanks,
    Mrityunjoy

  • How can i produce xml like this ?

    <mms>
    <subject>message subject</subject>
    <url_image>http://image_url</url_image>
    <url_sound>http://sound_url</url_sound>
    <url_video>http://video_url</url_video>
    <text>message text</text>
    <msisdn_sender>6281XYYYYYY</msisdn_sender>
    <msisdn_receipient>6281XYYYYYY</msisdn_receipient>
    <sid>to be define later</sid>
    <trx_id>Unique number</trx_id>
    <trx_date>yyyyMMddHHmmss</trx_date>
    <contentid>see note</contentid>
    </mms>
    How can i produce that xml?
    Can i produce it with this?
    public Element getXML(Document document) {
            // create sentContent Element
            Element sentContent = document.createElement( "mms" );
            // create subject Element
            Element temp = document.createElement( "subject" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getJudulFilm() ) ) );
            sentContent.appendChild( temp );
            // create url_image Element
            temp = document.createElement( "url_image" );
            temp.appendChild( document.createTextNode("") );
            sentContent.appendChild( temp );
            // create url_sound Element
            temp = document.createElement( "url_sound" );
            temp.appendChild( document.createTextNode("") );
            sentContent.appendChild( temp );
            // create url_video Element
            temp = document.createElement( "url_video" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getUrl_video() ) ) );
            sentContent.appendChild( temp );
            // create text Element
            temp = document.createElement( "text" );
            temp.appendChild( document.createTextNode("") );
            sentContent.appendChild( temp );
            // create msisdn_sender Element
            temp = document.createElement( "msisdn_sender" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getMsisdn() ) ) );
            sentContent.appendChild( temp );
            // create msisdn_recipient Element
            temp = document.createElement( "msisdn_recipient" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getMsisdn() ) ) );
            sentContent.appendChild( temp );
            // create sid Element
            temp = document.createElement( "sid" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getSid() ) ) );
            sentContent.appendChild( temp );
            // create trx_id Element
            temp = document.createElement( "trx_id" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getTrx_id() ) ) );
            sentContent.appendChild( temp );
            // create trx_date Element
            temp = document.createElement( "trx_date" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getTrx_date() ) ) );
            sentContent.appendChild( temp );
            // create contentid Element
            temp = document.createElement( "contentid" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getContentid() ) ) );
            sentContent.appendChild( temp );
            return sentContent;
        }& how can i send it to the server using HTTP request post method?

    <mms>
    <subject>message subject</subject>
    <url_image>http://image_url</url_image>
    <url_sound>http://sound_url</url_sound>
    <url_video>http://video_url</url_video>
    <text>message text</text>
    <msisdn_sender>6281XYYYYYY</msisdn_sender>
    <msisdn_receipient>6281XYYYYYY</msisdn_receipient>
    <sid>to be define later</sid>
    <trx_id>Unique number</trx_id>
    <trx_date>yyyyMMddHHmmss</trx_date>
    <contentid>see note</contentid>
    </mms>
    How can i produce that xml?
    Can i produce it with this?
    public Element getXML(Document document) {
            // create sentContent Element
            Element sentContent = document.createElement( "mms" );
            // create subject Element
            Element temp = document.createElement( "subject" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getJudulFilm() ) ) );
            sentContent.appendChild( temp );
            // create url_image Element
            temp = document.createElement( "url_image" );
            temp.appendChild( document.createTextNode("") );
            sentContent.appendChild( temp );
            // create url_sound Element
            temp = document.createElement( "url_sound" );
            temp.appendChild( document.createTextNode("") );
            sentContent.appendChild( temp );
            // create url_video Element
            temp = document.createElement( "url_video" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getUrl_video() ) ) );
            sentContent.appendChild( temp );
            // create text Element
            temp = document.createElement( "text" );
            temp.appendChild( document.createTextNode("") );
            sentContent.appendChild( temp );
            // create msisdn_sender Element
            temp = document.createElement( "msisdn_sender" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getMsisdn() ) ) );
            sentContent.appendChild( temp );
            // create msisdn_recipient Element
            temp = document.createElement( "msisdn_recipient" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getMsisdn() ) ) );
            sentContent.appendChild( temp );
            // create sid Element
            temp = document.createElement( "sid" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getSid() ) ) );
            sentContent.appendChild( temp );
            // create trx_id Element
            temp = document.createElement( "trx_id" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getTrx_id() ) ) );
            sentContent.appendChild( temp );
            // create trx_date Element
            temp = document.createElement( "trx_date" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getTrx_date() ) ) );
            sentContent.appendChild( temp );
            // create contentid Element
            temp = document.createElement( "contentid" );
            temp.appendChild( document.createTextNode(
            String.valueOf( getContentid() ) ) );
            sentContent.appendChild( temp );
            return sentContent;
        }& how can i send it to the server using HTTP request post method?

  • How Can I write Query like this

    My Dears:
    I want to reduce some formula in my report by merge these formula in my query
    I want to know how can I wrirte a query in query
    for example
    select empno,ename,(select sal from emp ee where ee.empno=mm.empno ) from emp mm
    the previous query I know it not logic but I need the way
    my DB 10G r2
    thanks in advance

    Apart your remark nothing seems to be wrong with your query. Did you try it?
    Regards
    Etbin

  • I'm on iTunes 11.0.0.63 for Windows. iTunes used to display the total number of songs in my library, along with total playtime and memory footprint, at the bottom of the window. How can I make it display this information like it used to?

    Hello! Thanks in advance for reading my question.
    so, I updated iTunes to 11.0.0.63 on Windows, and the new layout looks nice, but iTunes no longer gives my total song count, memory footprint, and total play-time at the bottom of the window, the way it used to. I just want to know how to get that info back. Thanks so much!

    Ctrl / or View > Show Status Bar should do it.
    Weirdly having turned mine on the menu is not there to hide it again and the shortcut doesn't work.
    tt2

  • How can I make navigation buttons textual instead of icons?

    In pre-29 versions there was an option for this in the customise toolbar. It says 'Show:' with a drop-down menu next to it with the options icons, icon & text, text. I prefer this to be set to text but I don't see such an option in the customisaton menu for newer FF versions.

    Hello,
    Try using the [https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/ Classic Theme Restorer] extension. After it is installed, you can go to:
    *Tools > Classic Theme Restorer
    To change the options for it, such as showing text instead of/alongside icons on your toolbars.
    Please see [[How to make the new Firefox look like the old Firefox]] for more information.

  • Albums with multiple artists do not show up as one album in my library. How can I make them do this WITHOUT having to put all such albums in a playlist so they actually play properly?

    Basically, I just got the Matrix Reloaded album off a friend of mine.
    The album itself is comprised of multiple contributing artists.
    Now, in any other media player, it would happily declare the album to be the product of Various Artists and leave it at that.
    iTunes, on the other hand, seems to think I need one album titled "Matrix Reloaded" for every single artist who contributed, which not only looks hideous (I have enough trouble navigating the "Albums" page as is since it's not in any kind of alphabetical order) but also makes it a pain if I just want to put the album on to play and do something else.
    The same thing occurs with another album, one of the Red vs Blue soundtracks by Jeff Williams; two of the songs in it are from "Jeff Williams & Steve Goldshein" which iTunes seems to think merits a whole seperate album which is entirely redundant.
    At the moment I'm getting by through somewhat-length creation of playlists so I can actually listen to albums with the tracks where they're meant to be, but this should not even be necessary in the first place.
    All my music currently is from when I made the jump from WMP after buying an iPod Touch, none of it was actually bought through iTunes.

    Generally setting a common Album title and Album Artist will fix things. For compilations of tracks by different artists set the album artist to Various Artists and also set Part of a compilation to Yes on the Options tab.
    For deeper problems see Grouping tracks into albums.
    tt2

  • How can i render table like this

    anybody knows how i can render table like below
    header | header | header|
    cmbbox | cmbbox | cmbbox| <-- for sorting purpose
    header | header | header|
    data[][]....(content)
    plz anyone urgent!!

    anybody knows how i can render table like below
    header | header | header|
    cmbbox | cmbbox | cmbbox| <-- for sorting purpose
    header | header | header|
    data[][]....(content)
    plz anyone urgent!!

  • Neat infographic and how do you make lines like this?

    Here is the infographic:
    http://www.stevey.com/wp-content/uploads/2009/01/50-years-exploration-huge.jpg
    I can't figure out if these lines rendered by hand or done with some application -- anybody suggest an approach?

    I can't figure out if these lines rendered by hand or done with some application
    Probably both.
    You utilize whatever geometric automation is made available in the feature set of the drawing program you are using, and complete the rest with other features and/or manual path-specific manipulations.
    In general-purpose drawing programs like Illustrator, you could, for example, use features like Offset Path or the Polar Grid tool to draw the concentric ring portions of the paths, and use Blends or the Reshape Tool to draw the converging portions of the paths.
    If drawn in Corel Draw, for example, its Contour Tool might have been used for the concentric portions.
    Often, several different approaches can accomplish the final art (some more efficient than others).
    The general process is:
    Study the geometry needed for aspects that suggest they might be automated or at least semi-automated.
    Determine which aspects need to be numerically accurate (as opposed to merely aesthetically pleasing).
    Consider the automated features of the program you are using (requires, of course, proficiency in the program.)
    Based on that knowledge (of the requirements and the capabilities of the program), devise a procedure that meets the requirements, adding manual path drawing where you have to.
    On the other hand, it's entirely possible that the orbits are drawn entirely automatically by a program that interprets numerical data as curves. For example, a CAE program might have modeled the paths from numerical data and exported them as 2D paths that were then imported into an ordinary drawing program for artistic treatment and embellishment (in much the same way you might take a mathematically-correct 2D perspective drawing exported from a modeling program and then "make it pretty" it in a drawing program).
    Some ordinary drawing programs (Canvas, for example) include features that can plot curves from algebraic curve functions. Some ordinary drawing programs (Illustrator, Corel Draw, Canvas) can be scripted to draw paths from numerical data (although unlikely for the whole paths shown in your example, since the geometry would have to be tediously converted to control coordinates for Bezier curves).
    So there are several ways to skin the cat; but you first have to know which cat has to be skinned (i.e.; what the real requirements are). Are the orbits actually accurate flight paths, or are they just "artist conception" interpretations? That's not clear from just looking at your example.
    JET

  • How can I format paragraphs like this?

    I am a novice DW user and a novice at web design.  I have a formatting challenge as follows.  First my stylesheet and then the problem:
    Could you please help me?  I have this need well more than 1,000 places on my website.  The insets vary, i.e. sometimes the first Line is inset 80px and the second and following Lines 120px, etc.  Again, I don't understand much of this so please be explicit.  Thanks very much!

    Your insertion didn't come through.  Ca you post a link to your web site?  Or use the camera icon in the web forum to upload an image into your post showing how you want to format paragraphs.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for