Need Help with Linking Question

Not quite sure how to do this.
I have a gallery page of thumbnails that I want to reference
a different layout page for the individual image.
What I want to happen is, when you click the thumbnail on the
thumbnail gallery page, a new layout page opens in the same browser
window with that thumbnails larger image. I know how to link the
new .html page , or the larger image, But I don't know how to link
them both so they both open?
I have many images and pages of thumbnails that I have to do
this with.
Thanks for any help

> a new layout page opens in the same browser window
You want the new page to replace the current page in the
browser viewport?
> But I don't know how to link them both so they both
open?
I guess I don't understand what "both" is?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Orr 4" <[email protected]> wrote in message
news:eb26ps$mlp$[email protected]..
> Not quite sure how to do this.
> I have a gallery page of thumbnails that I want to
reference a different
> layout page for the individual image.
> What I want to happen is, when you click the thumbnail
on the thumbnail
> gallery page, a new layout page opens in the same
browser window with that
> thumbnails larger image. I know how to link the new
.html page , or the
> larger
> image, But I don't know how to link them both so they
both open?
> I have many images and pages of thumbnails that I have
to do this with.
>
> Thanks for any help
>

Similar Messages

  • Need help with linked lists.

    I have a school assignment to make a linked list with a linked list.
    The first basic is to make a list of people, and link them together in a linked list. So far, so good.
    The problem comes when I'm going to make linked lists in each of these objects that include the relationships between the people in it.
    So If I have 10 peolpe in a list, person 1 might know person 3, 4 and 8. They will all know person 1 back of course. My problem is that it isn't just one group of friends, person 3 might not know person 4 and 8, but maybe he knows person 10. So all need "their own" list.
    Therefor I can't see how I'm supposed to use linked lists for them, as I can't just link them togeter with e.g. "Person nextFriend;" The text says specifically to use linked lists. Well, I'm stuck.
    Edited by: Skruf on Jan 27, 2009 3:22 PM

    Skruf wrote:
    I know it doesn't matter what the objects represent, I just needed a way to explain.
    But a linked list is basically just a redirect to the next in the list, right?No, a linked list is a particular implementation of a list.
    Then I can't see how it's possible to make individual friend lists.No clue what problem you're having.
    People with links
    null - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - nullThat means nothing.
    I can't see how that can be used to make independent links. Do they mean that I'm support to stort it in arrays or something then?
    The person list, is (as you can see in my "illustration") only a "next" and "previous" person, so I can't use that way to link the friends together. nextFriend and lastFriend obviously doesn't work.
    That's my problemLike I said: A Person object contains a linked list. In that linked list you put references to that Person's friends.

  • Need help with linking buttons

    Can anyone help me with this problem I have.
    I have a gfx which I have created 6 shapes and converted them into simple buttons. I have urls sat inside an xml file. How can I get the buttons to use the urls set from within the xml file?
    Also how can I change the current external photo that is being loaded to load the url from a setting in the same xml file.
    I hope you arnt as confused as I am right now.
    I have packaged up the flash file which includeds the xml aswell.
    If anyone could help me out with this I would be very greatful.
    Thanks All
    http://www.onlineaddicts.co.uk/menu.rar

    Remove the code from all btns, as below paste it on main timeline
    Also no need to load xml twice as dome in image container...
    give an instance name to the outer container of btns - menumv
    use following method to openURL, use same for all the btns..
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    var myXML:XML;
    var myLoader:URLLoader = new URLLoader();
    myLoader.load(new URLRequest("links.xml"));
    myLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void
    myXML = new XML(e.target.data);
    trace(myXML);
    menumv.carbtn.addEventListener(MouseEvent.CLICK, openURL);
    function openURL(e:MouseEvent):void
    navigateToURL(new URLRequest(myXML.car.url));
    http://www.darshanrane.com

  • Need help with links and fill color

    Hi all, I just recently discovered liveCycle and am very impressed with it! I have been trying to make myself a homework calendar for a while now, and I have it done mostly, but there are a few more things I'd like to add that I don't know how to do.
    I have some HTML and Java experience, but very little XML or JavaScript experience. I have a feeling that what I am trying to do is relatively simple, but I just can't figure it out! I have spent hours pouring over Google and the help files, and I feel like I have gotten close, but no joy yet.
    I have attached my calendar so far (truncated to fit 5MB max attachment size). I'd like it to do two more things:
    1. Have the background color of the table cells change from white to green when the check box is checked.
    (Alternately, I'd really like to get rid of the check boxes all thogether and just have the background of the table cells turn green with a keyboard shortcut, like "ctrl + D" for 'done'. But if that isn't possible, then the color change with the check box is fine.)
    2. I'd like the button called 'WORD DOC' in the upper right of the form to open a word document on my local computer. Where I just push that button and a work doc opens right up in Word in another window.
    I was able to get .PDF documents to open up with those other two buttons there ('Big Java' and 'Beginning Java II') by adding the script
    app.openDoc("Big Java.pdf");
    and
    app.openDoc("Beginning Java II.pdf");
    to each of the buttons respectively, but those PDFs need to be in the same folder as the calendar for that to work. I tried just altering that script by replacing the name of the PDF file with the name of a Word doc file like this:
    app.openDoc("test.docx");
    but the button doesn’t work at all, it just does nothing.
    So that’s what I am trying to do. I have spent hours messing around with anything I could think of to get this to work, but unfortunately I just don’t know the language well enough to get it to work.
    I would really appreciate any advice on this at all. Thank you very much for your consideration.

    Hi,
    Thanks very much for your response! I was able to use the code to make the box turn green by adding that script to the 'click' event of textbox and changing the language from FormCalc to JavaScript. So what happened was that when I clicked in the textbox, the color turned green.
    I couln't firgure out how to add it to the checkbox though. When I tried, it didn't do anything. The problem now is that when I click in the textbox to add my homework, it turns green. I need it to turn green once I finish my homework.
    This would work great if the texbox turned green when I SHIFT clicked the box. Is there anything I could add to that scipt to do that?

  • I need help with some questions

    I seen where it said if something happens to your computer that you will loose the music you bought and downloaded . Will you also loose the information about your itunes gift card ?How do you run a diagnostic before you buy ? Is there a phone number to contat someone in this case , or could it be sent to my E-Mail address ? Also I would like to thank the people that helped me with my first question .

    It has always been very basic to always maintain a backup copy of your computer, so if somethign happens to your computer, you lose nothing, as you have a backup copy.
    "Will you also loose the information about your itunes gift card ?"
    When you redeem a gift card the balance is on your account.  It is accessible from anycomputer with itune, when you sign into your account.  This would not be affected by lodd of your computer.  Again, you should ALWAYS have a backup copy of your computer.
    "How do you run a diagnostic before you buy ? "
    Runa diagnostic of what before you buy what?
    "Is there a phone number to contat someone in this case , or could it be sent to my E-Mail address ?"
    Again,  in what case?  Could what be sent to your e-mail?

  • Need help with linking my new macbook pro with my printer

    i have a new macbook pro and i am trying to link it to my also new Canon PIXMA MX882 printer.  I went through installation and it said everything was complete, but when I go to choose a printer nothing shows up.  I am a new mac user.  please help!

    It's not necessary to change your Apple ID often - maybe your password every six months or so, but not the email associated with the ID.
    Have you contacted the Apple ID Support folks? You can reach them at -> http://www.apple.com/support/appleid/.
    Good luck,
    Clinton

  • Acrobat  X Pro- Need Help with Linking and creating a flyout window in PDF

    I'm trying to create a flyout window in a PDF document (Have Acrobat X-Pro) I'm not a programmer or graphics designer. Almost like a flyout or callout in a Powerpoint presentation.
    Basically I want to create multiple icon/s on the base PDF page drawing and have several links to other pictures or items that when opened, wouldn't take up the whole screen and can then be closed so you'd only be looking at the base PDF page.
    I've tried using the link tool, but only seems to let me create a small rectangle box, click on it and have a new pdf or other file window open up. This is ok, but not really what I need it to do. I want this new window (or even a flyout) to be smaller so it doesn't cover the original base PDF layer and still be able to be closed.
    - Anyone have directions on how to do that in a pdf?
    - Also, is there a way to create a custom link icon instead of that lame rectangle in the link tool?

    Yes, you can do something like that. What you would do is create a button for each image and then hide them. When I do this type of thing I place all of the buttons on a template page and then hide the template.
    You can then use JavaScript to copy the icon from any of the hidden buttons to the main button that you've set up to display the image. For example, suppose you set up 10 buttons named b1, b2, b3, ...b10. The code to copy the icon from one of them to the button used to display the image (b0) would be something like this:
    // Get the icon from the b3 button
    var oIcon = getField("b3").buttonGetIcon();
    // Get  reference to the b0 button
    var f = getField("b0");
    // Set the icon of the b0 button to the icon retrieved from the hidden button
    f.buttonSetIcon(oIcon);
    // Show the b0 button
    f.display = display.visible;
    This code would go in the Mouse Up event of the smaller button.

  • Need help with linking text to nav bar please

    Basically, i designed a layout in photoshop7.0. I sliced it
    all, but left areas for where i wanted to type in text, then saved
    for web and opened it up in dreamweaver 8. The thing is, i dont
    know how to write the text in the area i left empty and it only
    shows when i click a certain nav bar. I usually use iframes, but
    this isnt gonna' be iframe friendly !!
    Just to reiterate, i know how to type in the boxes, just dont
    know how to link them to the nav bar buttons..
    Any help would be appreciated,
    Kind Regards,
    Shyam Tanna.

    This tutorial will show you how to do what you want.
    http://www.communitymx.com/content/article.cfm?cid=A0C1CA697A4E9774

  • NEED HELP WITH A QUESTION ABOUT PURCHASING A NEW IPOD AFTER GIVING MY OLD

    IPOD TO MY SON. IT WAS FILLED WITH 3600 SONGS AND I STILL HAVE THOSE SONGS IN MY ITUNES LIBRARY. MY QUESTION IS CAN I BUY A NEW IPOD AND LOAD IT ON COMPUTER USING MY ITUNES LIBRARY--I MEAN WILL ITUNES AND MY COMPUTER RECOGNIZE THE NEW ONE. IF NOT, WHAT CAN I DO? JEFF

    You should be fine, just make sure the new one has the current firmware, dock it to the computer, & away you go.
    Please kill the "caps lock" key when posting, it's considered to be shouting & it's rude. Thanks.

  • Need help with Link passed from XML

    This is to create a flash driven navigation menu. What I have
    is a coldfusion page that serves a simple XML formatted page. There
    are 3 XML components, linkLabel, linkURL and linkType. The label
    just passes text, the type is just a number 0-9 that is used to
    determine the style of the button. The linkURL that is passed from
    coldfusion comes across encoded for XML, so what I end up with is
    url's that replace "&" with ";amp;".
    So my question is this, is there an easy way in the
    actionscript to replace the ";amp;" with "&"? Other than that
    little problem, the rest of the script runs just fine, I just can't
    seem to find the syntax I'm looking for to replace items in a
    string. I saw the code for replacesel() but this doesn't seem to do
    it, unless i'm writing it wrong.

    Just in case you want something similar in future:
    string = string.split("&amp;").join("&");
    is an easy way to replace something in a string (here
    '&amp;' gets replaced with '&').
    greets,
    blemmo

  • Need help with a question on upgrading my Adobe After Effects CS5

    Hey guys I am wondering if there is a way to upgrade from CS5 to CC. Need to know if that is possible, if it is then how much is it and how do I do it?

    stone brothers production wrote:
    Hey, I was wondering if there is a one time payment or do you have to pay once a month?
    All Adobe CS Licenses are now subscription based.
    And If I have CS5, do they have beginner tutorial videos for it?
    Start here:
    Getting started with After Effects (CS4, CS5, CS5.5, CS6, & CC) | After Effects region of interest
    and is there plugins I can download for better effects?
    All the effects that come with After Effects are included when you install it.  There are many vendors of third party effects available, some free and many that cost money.  Some starting points:
    https://www.redgiant.com/store/universe
    VIDEO COPILOT | After Effects Tutorials, Plug-ins and Stock Footage for Post Production Professionals
    Toolfarm.com :: Adobe After Effects Plug-Ins

  • Need help with linking a word to a different slide.

    I have made a table of contents on this document clickable (linking a word to a different slide in the presentation) So you can click on any of the words and it will take you to that page. The problem is when I open the document it is at the correct magnification - say 75% for easy reading. But when you click on a word in the table of the contents to take you to a different page - it changes the magnification to a smaller size (53% or 63%)
    I need to know if we can keep it from doing that.
    So we can have every page no matter what you click on easily read and viewed without having to change the magnification every time.

    Hiya
    Yeah one below.. What you will see is the photoshop file, then the null layer followed by the original footage. In effect I need the photoshop image to track the movement of the camera as when I currently play the video, when the camera moves it looks as though a chunk of grass (the mask) is moving different from the rest of the scene.

  • Need help with linking my prepaid vanilla card to my account

    Yestraday I was linking my card to my account and I was brought to the veryfication page where is asked for PP****CODE. But now everytime I try to link it, it says : Sorry, we can't link this card. Please try linking a different card to your account.  The thing is I have the veryfied code and I dont know where to use it If someone could help me or  link me the veryfiy page that would be great

    and now i get this everytime Sorry, we can't link this card. Please try linking a different card to your account.  I can add it anymore like i used to be able to

  • Need help with link colors.....

    New assignment at school (our 4th project).
    Our teacher has given us a preformatted .html document that we
    are not allowed to touch at all.
    Having a hard time grasping working this way......
    How do I change the color of the link in the top header
    without changing the color of the other links?
    How do I line the four paragraph divs up across my page
    horizontally (left to right)?
    http://student.ccbcmd.edu/~rsmit459/a_study_in_css/index.html

    The div that the "Select a Design" and it's links are in is
    called "#styles".
    I put this code into my .css file and it did nothing:
    .styles a:link {
    color: #FFFFFF;
    text-decoration: underline;}
    .styles a:visited {
    color: #999999;
    text-decoration: underline;}
    .styles a:hover {
    color: #FF0000;
    text-decoration: underline;}
    .styles a:active {
    color: #FF00FF;
    text-decoration: underline;}
    What am I doing wrong?

  • Need help with camera question

    will these cameras work in 1movie 6.0.3?
    panasonic hdc-dx1
    sd1
    sd5
    sx5
    these seem to have usb connections while i thought imovie needed firewire to download movie files.
    thanks

    titanium boy wrote:
    will these cameras work in 1movie 6.0.3?
    no, none.
    iMHD6 supports ONLY miniDV based devices (SD or HDV) ..

Maybe you are looking for

  • Already logged in message but not showing up in Server Admin

    Running server software 10.3. Most clients are 10.4. I have several students that can't log in because it says they are already logged in elsewhere. Normally I go to Server Admin and disconnect them and they can then log in. But I've got about 4 stud

  • Itunes8 won't download at all!! :(

    Helloo PLEASEEEEE can someone help me?? My friends got me the new ipod nano for my birthday but I haven't been able to use it because iTunes8 won't download! firstly it came up with a sign 'Error' (and then a number i can't remember) and now that's s

  • Horizontal Spry Submenu Alignment Problems

    I am experiencing a massive emotional low with not being able to figure this problem out. I have incorporated a Spry menu in the site I'm building, but I'm having trouble getting the drop down submenu to align properly in Firefox/ Chrome AND IE8 What

  • Ipod will only load movies OR music - is this normal?

    hey hello my ipod only loads movies or music not both. i wonder if this is normal. i tick sync movies and as soon as i choose "sync ipod" the tick vanishes and nothing has changed. if i want to manage music and movies myself i can only load music or

  • Calendar Server Roadmap

    Hi Does anyone know when the Calendar Server will again ship with an HTML administration interface? The feedback I have from several customers is that the current incarnation (5.whatever) is pretty impossible to administer. Thanks Rob