I know this can be done with javascript, but how precisely?

Hi there, I have a personal art website that I've been having trouble with.  The website in question is http://www.aidenart.com.  The issue that I'm dealing has to do with the concept art page which  you can click on using the top navigation bar.  On that page there are  thumbnails of images and when you click on any one of those image  thumbnails you should be taken to a new WEB PAGE with the full image on  it.  The fact that the link brings you to a new web page is important.   On each of the web pages that shows the full image I want to provide  some navigation for the visitor to use.  There's going to be a button  that will link back to the main concept art page and a jump menu that  will let the visitor go to any of the other concept art pages that they  want.  Both of those things I already know how to do.  The thing is I  also want put in NEXT and PREVIOUS buttons that will allow the visitor  to go to the next or previous page in the list of concept art pages even  if they've never visited the page before.
I know this  can be done because I've seen other websites that have it.  I took a  look at their source code and most of them seem to be using some sort of  javascript code with an onClick or onChange behavior.  If someone could  just help me find the basic coding for making this happen in  Dreamweaver with maybe at least two or three pages then I could probably  figure the rest out from there.
The last time I asked  this forum about this problem everyone seemed to think that I wanted to  create an image gallery, but I don't.  I want the visitor to be able to  cycle through the WEB PAGES that have the image and might have more  images in the future, not just the images themselves.  And using some  sort of code that has to do with the web browser's history isn't going  to do what I want.
Here's some code from other websites that I found using just what I want to accomplish.
<TD  ALIGN=RIGHT><INPUT TYPE=BUTTON Value=' &lt;  Prev '  onClick="self.location='/s/3112627/1/Yami_no_Game_Dark_Saga'">  <SELECT title='chapter navigation' Name=chapter  onChange="self.location = '/s/3112627/'+  this.options[this.selectedIndex].value +  '/Yami_no_Game_Dark_Saga';"><option  value=1 >1. Meet and  Duel<option  value=2 selected>2. Voyage to the Kingdom<option   value=3 >3. The Great Insect Combos: Yami vs Haga<option  value=4  >4. Scented Scheme Tactics: Mai vs Jou<option  value=5 >5.  Ocean Madness: Yami vs Kajiki<option  value=6 >6. The Messenger  from Hell<option  value=7 >7. Prehistoric Battle: Ryuzaki vs  Jou<option  value=8 >8. Hunters of the Night: Eliminator  Panik<option  value=9 >9. Arrivals and Secrets Revealed<option   value=10 >10. Escaping Death: Jou vs Kozuka<option  value=11  >11. Battle in the Labyrinth for Freedom<option  value=12 >12.  Duel of Fate, part 1<option  value=13 >13. Duel of Fate, part  2<option  value=14 >14. A Brother's Promise<option  value=15  >15. First Round of Finals: Yami vs Mai<option  value=16 >16.  Second Round of Finals, part 1<option  value=17 >17. Second Round  of Finals, part 2<option  value=18 >18. Duel of Kings, part  1<option  value=19 >19. Duel of Kings, part 2<option  value=20  >20. Closing: Duelist Kingdom<option  value=21 >21. Virtual  Adventure: Start!<option  value=22 >22. Virtual Adventure: First  Task<option  value=23 >23. Virtual Adventure: Final Dungeon  Appears<option  value=24 >24. Closing: Virtual  Adventure<option  value=25 >25. The Shop of Broken  Hearts<option  value=26 >26. Gaining the Upper Hand<option   value=27 >27. Emotional Rollercoaster<option  value=28 >28.  Closing: Dungeon Dice Monsters<option  value=29 >29. Mysterious  New Force<option  value=30 >30. Start of a New  Tournament<option  value=31 >31. The Decision<option  value=32  >32. The Announcement<option  value=33 >33. The  Ambush<option  value=34 >34. Battle City: Start!</select>  <INPUT TYPE=BUTTON Value=' Next &gt; '  onClick="self.location='/s/3112627/3/Yami_no_Game_Dark_Saga'"></TD>
             </TR>
The first example is from http://www.fanfiction.net/.   If you click on any of the stories there that have more than one  chapter then you should see code somewhere that looks like the above  example.  This type of navigation, which can be seen in the upper right  corner of stories that use it, is exactly what I've been trying to  accomplish for quite some time now.
Here's another example.
<form method="" action="" name="hero_form">
         <select name="hero_choices" onChange="swap_hero(this.options[this.selectedIndex].value);">
         <option value='1'>Jeran</option><option  value='2'>Space Faerie</option><option  value='3'>Fyora</option><option  value='4'>Lisha</option><option value='5'  SELECTED>Illusen</option><option  value='6'>Kayla</option><option value='7'>King  Skarl</option><option  value='8'>Psellia</option><option  value='9'>Jhuidah</option><option value='10'>The Soup  Faerie</option><option  value='11'>Hannah</option><option value='12'>Master  Vex</option><option  value='13'>Galgarroth</option><option  value='14'>Cylara</option><option  value='15'>Gorix</option><option value='16'>Commander  Gormos</option><option value='17'>King  Kelpbeard</option><option value='18'>Swordmaster  Talek</option><option  value='19'>Garin</option><option  value='20'>Jacques</option><option value='21'>General  Dacon</option><option  value='22'>Nabile</option><option  value='23'>Tomos</option><option  value='24'>Armin</option><option value='25'>Judge  Hog</option><option value='26'>Hanso</option>       
         </select>
     </form>
     </center>
     <table width="200" border=0 align=center>
         <tr>
             <td align=center>
                                     <a  href='showhero.phtml?hero=4'><img  src="http://images.neopets.com/galleryofheroes/goh_left_arrow.gif"  border=0 width=80 height=80></a>
                             </td>
             <td align=center><a href='../hero.phtml'><img  src="http://images.neopets.com/galleryofheroes/goh_home.gif" width=50  height=50 border=0></a></td>
             <td align=center>
                                     <a  href='showhero.phtml?hero=6'><img  src="http://images.neopets.com/galleryofheroes/goh_right_arrow.gif"  border=0 width=80 height=80></a>
With this example the website even used images as the buttons  instead of just simple input buttons.  I'd like to use my own images for  buttons if I can.
My computer is a Macbook with the  most recent operating system (as far as I know) and I have Dreamweaver  CS5 installed on my computer.

Your example uses straight text links.  Nothing fancy, no complicated JavaScripts are used.  Just a lot of manual linking.
Example:  http://www.aidenart.com/Concept%20Art%20Pages/ConceptImage1.html
PREVIOUS: http://www.aidenart.com/Concept%20Art%20Pages/ConceptPage2Arga.html
MAIN: http://www.aidenart.com/ConceptArtMain.html
NEXT: http://www.aidenart.com/Concept%20Art%20Pages/ConceptPostitTiratsu.html
Each page contains a different PREVIOUS and NEXT link depending on where it appears within the site.
Hopefully this answers your question.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • I use Adobe Premiere Elements 11. I want to make a Credit Roll and start off screen and stop with the credit remaining still in the middle of the screen. I know this can be done with CS6. Can this be done in Elements 11? Does Elements 12 or 13 have these

    I use Adobe Premiere Elements 11. I want to make a Credit Roll and start off screen and stop with the credit remaining still in the middle of the screen. I know this can be done with CS6. Can this be done in Elements 11? Does Elements 12 or 13 have these options for Credit Roll.

    stevel
    Please read my work on this topic which involves Premiere Elements Preroll and Postroll settings.
    ATR Premiere Elements Troubleshooting: PE: Preroll and Postroll Options Interpreted
    Especially the section relating to Titler, Roll and Crawl Titles.
    Please let us know if that worked for you.
    Thank you.
    ATR

  • Is there a way to select MULTIPLE tabs and then copy ALL of the the URLs and titles/or URLs+titles+HTML links? This can be done with the Multiple Tab Handler add on; However, I prefer to use a Firefox feature rather than download an add on. Thanks.

    Currently, I can copy ONE tab's url and nothing else (not its name). Or I can bookmark all tabs that are open. However, I'd like to have the ability to select multiple tabs and then copy ALL of the the URLs AND their titles/or copy ALL of the URLs+titles+HTML links? This can be done with the Multiple Tab Handler add on; when I download the add on, I get a message saying that using the add on will disable Firefox's tab features. I prefer to use Firefox features rather than download and use an add on. Is there a way to do this without an add on?

    Hi LRagsdale517,
    You should definitely be able to upload multiple files by Shift-clicking or Ctrl-clicking the files you want to upload. Just to make sure you don't have an old version of the service cached, please clear the browser cache and then log in to https://cloud.acrobat.com/files. After clicking the File Upload icon in the upper-right corner, you should be able so select multiple files for upload.
    Please let us know how it goes.
    Best,
    Sara

  • Is there any way to do a mass copy and paste of song titles from the "name" column to the "sort name" column? I know it can be done with individual titles but I have over 6,000 titles in my library.

    In iTunes, is there any way to do a mass copy and paste of song titles from the "name" column to the "sort name" column? I know it can be done with individual titles but I have over 6,000 titles in my library.

    Thank you. I have heard of Logic Pro 7, but I have never personally used it. I'm still growing in the world of Composition, and I know that it is something I will be studying in one of my Computer Music classes coming up for my degree. I think it is something I will look into getting once I can justify the price of it. I guess for the time being, I will continue to play and grow in my ability to use and take advantage of GB, and then see what I can do about or with Logic Pro when I'm ready. The thought of spending $1000 for a program is hard to bite, because I've already spent a lot to produce my music, not only electronic music, but also chamber music and so on. I had no idea it would be so expensive to dive deep into the world of composition! lol.
    Finale 2007: $500
    Sibelius 4: $500
    Jam Packs: $400
    Midi Keyboard Interface: $100
    PowerBook: $1700
    Printer for printing scores and analysis: $150
    Logic Pro 7: Oy!
    As you can see it adds up very quickly...that doesn't even include my personal instruments and study materials.
    Thank you for your input, as I haven't really worked much with LP, and therefore didn't know which features are available. I will talk with some of my Composition buddies, and professors and see what they have to say as well, and who knows, I may be able to get the express version through one of them.

  • I know this has been done to death, but I JUST SWITCHED!!!

    I just can't get over how cool Macs really are. I just got this here Mini and even though it has 256 MB Ram and Panther on the hard drive, it is STILL leaps and bounds better than what I had. Lemme fill you in on my history a minute... I bought a PC as a first computer about 8 months ago and it was mistake #1! Winblows EX-PEE worked fine at first, but even though I spent (wasted) over $200 in virus and spyware protection and internal firewall-which was mistake #2, it got slower, and sloowwer, and sllllooooowwwwweeeerrr. And some programs just stopped working. I never used Linux before and knew absolutely nothing about it. So I said "What the hey? For $15 I get a new, more stable OS" So I did it. Mistake#3!!! Install was a little tricky, but not bad. Sure it was virus-free and spyware-free and nearly crash-proof, but that is where the pros END! Cons: Many websites wouldnt load up pictures and this OS was the most un-user friendly I had ever experienced! Installing new software and programs required an iq of 1000 and a couple of IT degrees from MIT!!!
    Now before I got this PC from Wally-World (yes you can laugh at me) I had been to Best Buy a couple of times and had my eye on an I Mac. It was out of my price range, but the mini wasn't. And I just couldnt believe HOW SMALL it was! The PC was like $150 cheaper. What a mistake I have learned, but I now know exactly WHY Macs are so much better! So if anyone reading this is considering on getting a Mac, then save up your change and SWITCH!!! I HAVE NOT REGRETTED IT AND NIETHER WILL YOU!
    And Tiger did come with my Mini, but I wont install it until I get more RAM, since it it very RAM-hungry.
    MAC CONVERT AND USER FOR LIFE!
    Carl

    Drool on here, welcome to Mac by the way. The water is much better on this side.
    Click a pic to feel the awesome 30" • Clone your boot drive, PowerMac G5 performance tips

  • I want to purchase Apature, but In the advertising blurb I dont see how to remove unwanted objects from a photo. I know it can be done in Adobe Elements, but I would rather Apature.

    I want to purchase Apature, but in the advertising blurb I dont see hoe to remove unwanted oblectsfrom a photo. I know it can be done in Adobe but I would rather have Apature.

    What DiploStrat said.
    To expand a little bit:  Aperture allows you to assign a graphics program (such as PSE) as an "external editor".  In general, you use Aperture to organize your photos, to develop them (make them as good as possible for each use), and to publish them (create share-able files).  Your external editor is used when you want to create a new graphics file, which is what happens in all "destructive pixel editing".
    Aperture provides tools to remove sensor spots from skies (and like operations), but for removing people and billboards you'll want a proper compositor, a/k/a a graphics program.

  • When I select a local phone number my iphone 4 tries to send an email only and won't ring the number. Does anyone know if this can be fixed with a setting change?

    When I select a local phone number from my contacts, the iphone 4 won't ring the number, instead it tries to send an email. Does anyone know if this can be fixed with a setting change?

    Thanks for the reply, good try, I thought of that myself and made sure of that this morning, but that is already all done, and as it happens, the contacts are exactly the same as in our other phone (3GS) which works perfectly, but the iphone 4 won't dial ANY local number, instead it tries to send an email. EVERY TIME. most frustrating. I am really trying to work out if there is a setting somewhere (like the area code etc) or if this is a warranty issue.
    Thanks again for trying to help!

  • I have a the Spring 2011 iMac and I am looking to connect both my Bose Companion 2's with my new Companion 20's together to have one single audio system, any suggestions on how this can be done?

    I have a the Spring 2011 iMac and I am looking to connect both my Bose Companion 2's with my new Companion 20's together to have one single audio system, any suggestions on how this can be done?

    FIxed my problem!
    After years the problem was solved somply!
    Go to System preferences
    Go to Ethernet
    Go to Advance
    Go to Hardware
    The just make the changes like in the pictures below

  • I know this is going to sound stupid but I can't seem to set up my email as an iCloud email account. I want to eliminate my aol account and transfer everything to iCloud with an iCloud email. How do I do this.

    I know this is going to sound stupid but I can't seem to set up my email as an iCloud email account. I want to eliminate my aol account and transfer everything to iCloud with an iCloud email. How do I do this.

    If your Mac is running OS X 10.7.5 or higher, you first have to go to System Preferences>iCloud, sign in with your Apple ID to create your account, then check Mail.  This will automatically add an iCloud email account.
    To transfer your AOL mail, you need to drag and drop them into the same folder in the iCloud account.  If you have any folders in your AOL mail, you would need to create folders by the same name in the iCloud account, then open each folder, select all the mail in the folder and drag and drop them on the folder by the same name in your iCloud account.  (To create a folder in the iCloud account, click the "+" at the bottom of your folder list, choose Create Mailbox, choose iCloud as the location and give it a name.)

  • Hi, I wish to buy an Adobe Master Collection CS3 (Corporate Edition) from someone in the US and I hope to use it in the UK. Does anyone know if this can be done without any problems, also does Adobe still allow people to register the CS3 Corporate Edition

    Hi, I wish to buy an Adobe Master Collection CS3 (Corporate Edition) from someone in the US and I hope to use it in the UK. Does anyone know if this can be done without any problems, also does Adobe still allow people to register the CS3 Corporate Edition? any help would be greatly appreciated

    The flaw is here:
    corporate edition
    ...which essentially means it's most likely a volume license and thus not transferable in the first place. The rest is as Steve said - buying software on eBay is risky even on the best of days.
    Mylenium

  • What can be done with the fingerprint reader?

    I am trying to figure out simply what I can do with the fingerprint reader on the T400. I understand how to use it to log into the computer. My main question is whether or not I can use the fingerprint reader in the following contexts, and if so how.
    1a) To  log into internet password protected websites. When I use IE, the password manager pops up and prompts me to save a password. If I save it, I can return to that website and it automatically will enter the login information and password for me. I want to know whether you can have password manager (or another program) prompt the user for the fingerprint and then submit the login information. That way the information is protected each time I log in, but I do not need to enter log in information each time, only a fingerprint. 
    1b) If this is possible in IE8, I would like to know if it is possible in Firefox 3, in which password manager does not pop up.
    2) Can it be used to log into MS Outlook.
    3) Can it be used to lock documents in MS Word.
    I much appreciate any information letting me know if these can be done, and if so, how to do them. Thank you very much for your help!
    J
    Message Edited by lenova on 09-07-2008 09:13 PM

    After playing with it for a while I figured out at least questions 1a) and 1b). For anyone else who has the same questions:
    1a) Have your browser save the password using Lenovo's Password Manager. Then open password manager and open that item.  Click the advanced tab and change the security level to custom. Click "Customize Security Policy" and select "Protect with a Fingerprint."
    1b) Lenovo has a patch to synch Password Manager with firefox 3. It can be found here and is much easier than the manual fixes found on this forum.
    http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-70132
    I am still looking for help with 3) and 4), particurally 3). Please let me know if you have any ideas. Thank you very much!!

  • I have got an 4s phone and want to import my notes from my old 3G phone; does anybody has an idea how this can be done?

    i have got an 4s phone and want to import my notes from my old 3G phone; does anybody has an idea how this can be done?

    If you have a Mac, I know you can sync your notes with the Mail application using iTunes by going to the Info tab when you clikc on your iPhone under Devices. Other than that, you may just need to email the notes to yourself since the 3G cannot use iCloud to transfer them.

  • "app.selection[0]" – what can be done with it? (CS5)/(CS6)(JS)

    This is hopefully not a simple question – because then the answer would probably be 'no'/'nothing else'.
    What can be done with a selection? Is it posible to sort out the different contents within a selection, declare variables around them or give them names, and then continue from there?
    I have one specific idea here. I want to select two things – one is a group, and the other is a non-grouped object, and then include that object in the original group. No – not the same as selecting them and simply grouping them, that could be done by hand. I want to include an object in a previously set group without creating another one.
    It has to do with a plugin used for creating apps for mobile devices. Creating another group out of the group + item makes all previous settings assigned to the original group dissapear. Not sure if the plugin will accept this method, but it's worth a try.

    Hm. This now is pure speculation on my side, 'cause you are not telling much about the plugIn that has to do with app creation.
    From my knowledge of Adobe Digital Publishing Suite, and I cannot assume that you are using the DPS plugIns "Folio Builder" and "Overlay Creator", I can only guess, that you applied something like an effect (in terms of DPS an "overlay" function) to a group and afterwards grouping anew with a different object to a new group. Then the overlay is burried in that group and will not work as you expected.
    I never asked myself if it will damage an applied "overlay", if the object is grouped with something that has an different "overlay" effect or no "overlay" effect at all. But I will test for that situation…
    After re-reading your question you like to add the same "overlay" effect of the original group to the new group or adding a new object to the group so the effect is not lost.
    In case you are working with DPS, the overlay effects are "injected" with a method you can compare directly with the JavaScript method  insertLabel("KeyString","ValueString") and will stick to the object until the values are changed or the object (your group) will not exist any more (by un-grouping).
    So please, tell us something more about your workflow…
    It's not that easy to add an existing object to a group without un-grouping and re-grouping. And this will destroy the "injected" Key/Value-pairs of the effect.
    Here is something to think about (read the whole discussion):
    http://forums.adobe.com/message/2259499#2259499
    Uwe

  • I am also looking to get whether or not the document is open in a browser window which can be done with event

    I am also looking to get whether or not the document is open in a browser window which can be done with event.target.external, but I want it to happen without any user interaction and all the events that I tried while loading the document cause an error. I also tried xfa.host.name, but it always returns "Acrobat" whether the doc is in Reader or the browser, so I guess that is not it. If I put the call to event.target.external in a button, it works (I guess those libraries might not be initialized yet, they are legacy, but I don't know if there is an event that happens on load after that lib is initialized).

    // Check the document URL to determine if the form is open in the browser (online) or not (offline)
    var MyDoc = event.target;
    var MyURL = MyDoc.URL;
    if ((MyURL.indexOf("http:") >=0) || (MyURL.indexOf(".tmp") >= 0))
    ONLINE_STATUS_SAVE.rawValue = "ONLINE";
    else
    ONLINE_STATUS_SAVE.rawValue = "OFFLINE";

  • Can Apple make an app or an update that makes you insert your password to turn your phone off? This can help deal with theft of iPhones because people take or find a iPhone, the first thing they do is turn the phone off.

    Can Apple make an app or an update that makes you insert your password to turn your phone off? This can help deal with theft of iPhones because people take or find a iPhone, the first thing they do is turn the phone off.

    They probably can do such s thing if they choose to do so.
    Let them know that you would like this:
    http://www.apple.com/feedback
    Not sure this is a very useful thing.  It would run down the battery.  All a thief has to do is remove them SIM and restore the iphone to stop it from being tracked.

Maybe you are looking for

  • Setting up Remote Desktop Apps for access from a Mac with 2FA

    Hi Setting up Remote Desktop Apps for access from a Mac with 2FA. I have a server 2012 remote access gateway, with remote apps published(which uses single signon), behind a 2FA connection (web based) and want to know if its possible to allow macs to

  • Can't view all layers in Photoshop

    Hi everyone, I can't seem to view all my layers in Photoshop (using CS6 via Creative Cloud on a Mac) when I'm duplicating from another file.  I have two files usually open - my mockup file I'm working on for a UI project, and various templates files

  • 32 inch Cinema Display turns off repeatedly?

    32 inch Cinema Display has taken to turning itself off afer 30 minutes operation. Can this fault be repaired or should I be looking at buying a new display?

  • Question about returning iPod USB Adapter...

    ... Recently my adapter stopped working and Apple sent me a new one. Now the one I just recieved did not come with a return shipment label as far as I can tell (it has a P/N numbers and a package ID), so what am I supposed to do in this situation? Do

  • Help for fixed columns in web layout

    Hi all,      I'm facing the problem of Fixing the column of web layout,I know there's a post of solving this,   Fixed Rows/Columns in Web Interfaces but all the download links in this post are expired,could any one send me the file or the how to docu