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.

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

  • Need Help With Script Skipping Word Before Variable

    I borrowed and modified a skip I found here: http://forums.adobe.com/message/4808804 with code borrowed from elsewhere.
    I noticed that it seems to run fine, but it skips any word that appears right before a variable. The point of the script is to find any text using an italic override or bold override, and replace the override with the appropriate character format from the catalog.
    Can someone tell me why the code below skips words before a variable? I am sure it is a simple thing, but I am teaching myself Extendscript, and only recently started the attempt/
    Thanks,
    Marc
    var doc = app.ActiveDoc;
    removeOverrides (doc)
    function removeOverrides (pDoc)
        var vDocStart = pDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;
        var vBoldFmt=pDoc.GetNamedCharFmt ('bold')
        var vItalicFmt=pDoc.GetNamedCharFmt ('italic')
        initFA_errno ();
        var vTextLoc = new TextLoc(vDocStart,0);
        var vFindParams=findOverrideParams (pDoc);
        while (FA_errno==Constants.FE_Success)
            var vTextRange=pDoc.Find(vTextLoc,vFindParams);
            if (vTextRange.beg.obj.ObjectValid())
                var vTextItems=pDoc.GetTextForRange (vTextRange, Constants.FTI_CharPropsChange)
                if (vTextItems.length==!0 )
                    $.writeln(vTextItems.String)
                    if (vTextItems[0].idata==Constants.FTF_WEIGHT)
                       pDoc.SetTextProps (vTextRange, vBoldFmt.GetProps())
                    if (vTextItems[0].idata==Constants.FTF_ANGLE)
                       pDoc.SetTextProps (vTextRange, vItalicFmt.GetProps())
                    }// else (Log (vLogFileName, '\nERROR: No items were found in the text format array but format override was found: '+pDoc.Name))
            vTextLoc = vTextRange.end
            vDocStart=vDocStart.NextPgfInFlow;
    function findOverrideParams (pDoc)
        var vFindParams = AllocatePropVals(1);
        vFindParams[0].propIdent.num = Constants.FS_FindObject;
        vFindParams[0].propVal.valType = Constants.FT_Integer;
        vFindParams[0].propVal.ival = Constants.FV_FindCharacterFormatOverride;
       return vFindParams;
      function initFA_errno()
             app.GetNamedMenu("!MakerMainMenu"); //If this fails, you've got bigger problems
             return;

    It looks like home assignment. Home assignment are not very welcome here. I can help you only a little. It's very simple application, but if you dont know basics in OO, you are in trouble.
    Create these three files, even empty with all points you need to accomplish in them as comments.
    Think about gui you need. If you do not know how to make menus and other fancy gui you can do only with one main panel with a few buttons and JOptionPanes appearing for every input.
    Buttons for each task:
    1. get available rooms; press and see JOptionPane telling what rooms are empty (information message)
    2. book: JOptionPane asking how many guests, you input, it checks for availability, if available rooms are not enough (or beds) another OP tells that it's impossible, if enough - offer to input room number, you input, check if the room is booked, then offer to input name, then offer quit.
    3. unbook.
    4.get report
    Once you design how it looks, every step becomes very simple. All methods you need to implement are simple array manipulations. Make report last, because it's just collection of printouts from methods you've already done.
    In book, you need to look for definitions of constructor, passing arguments to methods, returning results from methods, creating object with "new" operator, simple event handling, JOptionPane documentation and examples, which are in every decent textbook.
    Do not panic, it's really simple but rather tiresome application, if you do it by yourself you learn almost everything necessary to start programming in java.

  • 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

  • New to Dreamweaver and need help with PDF and Word

    I'm trying to put forms on my web page http://www.troop4084.org and I cannot get them to show up on the internet. I have them in the folder. If there is a step-by-step process to do this?

    johnnyc54 wrote:
    I think so, that may be the issue. I'm still looking at that one to figure it out.  My pictures work fine
    and I followed the same procedure for the Word/PDF documents...
    Your images are in the 'images' folder:
    http://www.troop4084.org/Images/Anacortes%20Sign.jpg
    The pdfs are neither in the images folder or where the links says they are in the site folder itself.
    See the link below - It says the FOS.pdf is in the site folder itself. Not in any other folders.
    http://www.troop4084.org/FOS.pdf
    If you upload the FOS.pdf to the site folder on your server the link will be correct.
    or you can put the FOS.pdf in the 'images' folder and change the link to as below:
    http://www.troop4084.org/images/FOS.pdf
    or you may want to create a 'pdf' folder on your server and upload the 'pdfs' into that with the link below:
    http://www.troop4084.org/pdfs/FOS.pdf

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

  • 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 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 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 codings on generating random words

    hi guys.. i need help with generating random words from a list of array. please help me with the codings.. let me know the other variables that are needed if required as well.. thanks a million..
    private String wordList[] = { "abstraction", "command", "arithmetic", "backslash" };

    Hi,
    You can use the Random class to generate Random number between 0 to the array length and use the generated random number as index in to the Strign array.
    To generate Random number use the following code
    Random r = new Random();
    num = ((r.nextInt() >>> 1) % wordList.length);
    num will have the randomly generated number.

  • I need Help with the dynamic link feature in CS3

    Hi I was wondering if anyone could help me with an issue I am having? I have the adobe cs3 master collection. Having watched tutorials on the dynamic link feature my version seems not to have the same options as those I have viewed. I wish to send my premiere video creation to encore using dynamic link, however when I click "file" and then "adobe dynamic link" the only options available are about "adobe after effects". I can export to encore however I am only alloowed to export one premiere sequence to one new encore file, I cannot create an encore file and import several premiere sequence into the same encore project. That means currently I can only have an encore creation with one premiere sequence in it, and I have no adobe dynamic link. Any help anyone could offer would be greatly appreciated.

    Thanks very much for that guys but my premiere media encoder only lets me export as: MPEG1, MPEG1-VCD, MPEG2, MPEG2 blu-ray, MPEG2-DVD, MPEG2-SVCD, H.264, H.264 blu-ray, Adobe Flash Video, Quicktime, Real Media, Windows Media. Are any of these formats DV AVI?
    Am I to export my videos direct to encore or save them elsewhere (e.g desktop). It seems that I cannot export sequences from different premiere projects to the same encore project.
    Sorry if any of these questions seem obvious, I am just new to premiere and keen to do things right from the off.
    Many thanks again guys.
    Date: Tue, 24 Nov 2009 19:32:47 -0700
    From: [email protected]
    To: [email protected]
    Subject: I need Help with the dynamic link feature in CS3
    Harm is correct.  For SD DVD, exporting as a DV AVI file from Pr will give you good results.  Encore's Automatic Transcoding will give you maximum quality for the available disc space.
    -Jeff
    >

Maybe you are looking for

  • Chooppy playback of video using iTunes 7.0.2

    I have finally gotten things, two months on, to where I can view iTunes m4V files (TV shows that i downloaded) in a rather normal way, using iTunes, on small screen only, however, the skipping persists when in iTunes I click on to FULL SCREEN mode. T

  • Can't get my hp laserjet p1505n to print with verizon mifi

    I changed internet provider from broadband to Verizon MIFI and now my printer doesn't work. II have a HP Laserjet P1505n and it was networked to my desk pc and my laptop. What can I do to get it working again?? Thank you Connie Moore

  • Designer unable to launch

    When I'm attempting to launch designer from All Programs -> BusinessObjects XI 3.1 -> Designer, the designer did not launch as expected. No error message prompt and nothing at all. Here is detail of my machine. 1.) OS = WIndows 7 enterprise 32- bits

  • Performance metrics without awr

    Hi, I need to have below details from production database(11.2.0.3 or 10.2.0.4). 1.Cache hit ratios for a day, for a week, for a month. 2.Top 10 sql command sorted by elapsed time, cpu time, physical read/write. This is also for a day, for a week, fo

  • Drawing object looses roundness when enlarged.

    Hi all, in my movie I have a round drawing object, which i wish to view enlarged (about 2000% of original size) . while editing it looks fine and round but after publishing all theroundness is lost and instead i get visible angles. i attach 2 images