Having trouble with simple tasks in pages 09

I am trying to put a single horizontal line above the page footer in a pages document that I am trying to create as a template
I've spent quite a long time with it and cannot figure it out
As much as a pain Word is, doing something like this is very simple - I thought Pages would be even easier!

sean
You look in exactly the same place, it is a paragraph (text) format.
+Inspector > Text > More > Border & Rules > choose a stroke > click on a position > choose color, thickness & offset (how far above the text)+
You can also draw a line, using the Shapes menu on the Toolbar.
Peter

Similar Messages

  • Having trouble with custom web auth page on 4404

    Hi all
    I am having trouble with a custom web auth page on my controller, we have edited the original file, but when we click login it goes to page cannot be displayed and it doesnt redirect to the page I want, however when I close the window and reopen it has already authenticated me.
    Has anyone got a copy of some working html code I can use ?
    cheers

    There is sample Web Authentication bundle avaiable for download from cisco.com. if you go to the software download page and go to Wireless->Standalone Controllers->4404 you should see a link for Wireless Lan Web Authentication Bundle.
    Its the same bundle whether you have a WiSM, 4404 or 2100

  • I'm having trouble with auto-correct in Pages

    I am having trouble with auto-correct spelling in Pages.  I have read a past discussion of this in which I believe the last comment was made in 2012.  (I have the latest Macbook Pro purchased Dec 2012 and it is totally updated.)  The problem is just with one word, as far as I can tell.  It seems that perhaps the older problem of contractions has been resolved except for one word: "hasn't".  Auto correct insists that it should be "hans't".  I follwed the suggestions offered in the previous discussion about using SYMBOL AND TEXT SUBSTITUTION to correct the word but it hasn't worked.  Do I just have to live with this?  Surely there is a way to fix this problem?  I really like using the auto-correction and would hate to have to stop using it just for one word.  Thanks in advance for your help.

    It should work if you have a Symbol and Text Substitution set for hans't → hasn't. Are you sure you have this substitution checked, or Symbol and Text Substitution checked overall?

  • Having trouble with simple word game, mainly records

    OK. I need help with a lot of stuff. This is an applescript I made to be a lot like the game Jotto, except one player. Here it is:
    set yescontinue to true
    set totallyfinished to false
    set tip10jots to false
    repeat while totallyfinished is false
    repeat while yescontinue is true
    set finish to false
    set totallyfinished to true
    set yescontinue to false
    set x to {"abaca", "abaci", "aback"}
    set setx2 to {"ninth", "nipas", "nippy"}
    set abcde to (random number from 1 to 2)
    if abcde is 1 then
    set y to (some item of x)
    else
    set y to (some item of setx2)
    end if
    set z to count characters of y
    set y to characters of y as list
    if z is 5 then
    set yescontinue to true
    end if
    set guessamount to 0
    set listofrecords to ""
    set recordofgame to {}
    if yescontinue is true then
    repeat while finish is false
    set jots to 0
    set guess1 to text returned of (display dialog "Please type your guess:" default answer "")
    set zguess to count characters of guess1
    if zguess is 5 then
    set kldsafjhlasdkjfhaslkdjfhalskdjfh to true
    else
    display dialog "Please only use 5 letter words."
    if yescontinue is true then
    set yescontinue to false
    end if
    end if
    if yescontinue is true then
    set guess1 to characters of guess1 as list
    repeat with theletter in y
    repeat with theletter2 in guess1
    if (theletter as string) is (theletter2 as string) then
    set jots to jots + 1
    end if
    end repeat
    end repeat
    if guess1 is y then
    set jots to "won"
    end if
    set guessamount to guessamount + 1
    if jots is 1 then
    set listofrecords to listofrecords & guessamount & ". " & guess1 & " " & jots & " jot" & return
    else if jots is "won" then
    set jots to "Jotto"
    if (guess1 as string) is (y as string) then
    set listofrecords to listofrecords & guessamount & ". " & guess1 & " " & jots & return
    display dialog "You win! The entire game:" & return & return & listofrecords
    set jots to 10
    else
    set jots to 10
    set tip10jots to true
    end if
    else
    set listofrecords to listofrecords & guessamount & ". " & guess1 & " " & jots & " jots" & return
    end if
    set listofrecords to listofrecords as string
    if jots is 1 then
    if tip10jots is true then
    display dialog "OK. " & guess1 & " was " & jots & " jots. That was guess #" & guessamount & ". Tip: Ten jots means you have all of the letters correct, but they're in the wrong order. Here is the entire game so far:" & return & return & listofrecords
    else
    display dialog "OK. " & guess1 & " was " & jots & " jot. That was guess #" & guessamount & ". Here is the entire game so far:" & return & return & listofrecords
    end if
    else
    if tip10jots is true then
    display dialog "OK. " & guess1 & " was " & jots & " jots. That was guess #" & guessamount & ". Tip: Ten jots means you have all of the letters correct, but they're in the wrong order. Here is the entire game so far:" & return & return & listofrecords
    else
    display dialog "OK. " & guess1 & " was " & jots & " jots. That was guess #" & guessamount & ". Here is the entire game so far:" & return & return & listofrecords
    end if
    end if
    else
    set yescontinue to true
    end if
    end repeat
    end if
    end repeat
    end repeat
    As you can see, for now I only have 6 sample words to save time compiling and running for now on my bad computer.
    I need help creating a record instead of listofrecords, and also if anybody could shorten all the extra code I probably have. I also would like to limit being able to guess fake words, for example guessing aaaaa. Thank you so much, and if you have any ideas to help, please let me know.

    Hello
    I had fun on this. You may try the following script.
    (Please copy the code from this web page, not from subscribed email text)
    It has been tested except for the parts using 'do shell script' and 'TextEdit'.
    The 'do shell script' is used in looking up dictionary and 'TextEdit' is used in keeping a log.
    (Perl code has been tested with MacPerl 5.6.1under OS9.1.)
    You may use any dictionary file that contains words (one word per paragraph delimited by LF) encoded in UTF-8. (For code points in U0000..U007F, UTF-8 is identical to ASCII)
    By default, it uses /usr/share/dict/words.
    Cheers,
    H
    PS. The word game 'Jotto' may have been copyrighted in a way such that it's not allowed to reproduce the (part of) game protocol in this sort of computer programme without permission. If such is the case, (cough-cough,) please just disregard this.
    --SCRIPT
      Guess Word
      v0.3
      * The dictionary file must be a text file that -
        1) is encoded in UTF-8; and
        2) consists of paragraphs (delimited by LF (U+000A)) each of which represents one word.
    guessword()
    on guessword()
    script o
    --property dict : choose file with prompt "Choose dictionary file (in UTF-8)"
    property dict : "/usr/share/dict/words" as POSIX file as alias
    property wordLength : 5 -- length of word
    property maxGuesses : 20 -- maximum guess count
    property wonSign : ""
    property givenUpSign : "?"
    property exhaustedSign : "#"
    property NL : return
    property mss1 : "Please enter your guess word of " & wordLength & " letters."
    property mss2 : "Current results:"
    property mss3a : "You won!" & NL & "Secret word = "
    property mss3b : "You gave up." & NL & "Secret word = "
    property mss3c : "You have exhausted guess count." & NL & "Secret word = "
    property btt1 : {"Give Up", "OK"}
    property btt2 : {"Quit", "New Game"}
    property errs1 : "Specified word is not found in the dictionary. Please choose other word."
    property errs2 : "Specified word has been already used. Please choose other word."
    property errs3 : "Word must consist of " & wordLength & " letters. Please choose other word."
    property errs4 : "Couldn't get word from dictionary."
    property line1a : "# New game started at "
    property line1b : "# Word length = " & wordLength
    property line1c : "# Maximum round = " & maxGuesses
    property line2 : "Round" & tab & "Guess" & tab & "Match"
    property line3a : "# You have guessed right. The secret word is "
    property line3b : "# You have given up. The secret word is "
    property line3c : "# You have exhausted guess count. The secret word is "
    property line4 : "# This game ended at "
    property rr : {} -- work list for result
    property aa : {} -- work list for bsearch()
    property tt : {} -- list of used guess words
    on bsearch(xx, x)
      list xx : source list
      anything x : item to be searched in xx
      property aa : working list
      return integer : index of x in xx if {x} is in xx, or 0 if not.
    local i, j, k
    set my aa to xx
    if {x} is not in my aa then return 0
    set i to 1
    set j to count my aa
    repeat while j > i
    set k to i + (j - i) div 2
    if {x} is in my aa's items i thru k then
    set j to k
    else
    set i to k + 1
    end if
    end repeat
    return i
    end bsearch
    on matchWords(x, y)
      string x, y : source strings
      return integer : number of characters that are in both x and y, where each common character is counted once.
        e.g. Given x = "every" and y = "river", result = 3 (i.e. {"e", "v", "r"})
    local yy, s, k
    set yy to y's characters
    set s to 0
    repeat with x in x's characters
    set k to bsearch(yy, x's contents)
    if k > 0 then
    set yy's item k to 0 -- set to non-character not to count again
    set s to s + 1
    end if
    end repeat
    return s
    end matchWords
    on lookup(re, dict) -- english-only (word does not contain letters in [U+0080,])
      string re : regexp pattern to search
      string/alias dict : HFS path (or alias) of dictionary text file (which contains one word per paragraph)
    try
    return (do shell script "egrep " & quoted form of re & " " & quoted form of POSIX path of dict)
    on error
    error errs4 number 9016
    end try
    end lookup
    on lookup(re, dict) -- multi-lingual
      string re : regexp pattern to search
      string/alias dict : HFS path (or alias) of dictionary text file (which contains one word per paragraph)
    local s_, r
    set s_ to "perl -e 'use strict; use utf8;
    open DICT, \"< " & (POSIX path of dict) & "\" or die \"Can't open dictionary file: $!\";
    local $/ = \"\\n\";
    my @a = grep {/" & re & "/} <DICT>;
    close DICT;
    chomp @a;
    local $, = \"\\n\";
    print @a;'"
    try
    set r to (do shell script s_)
    if r = "" then error number 9016 -- probably redundant
    return r
    on error
    error errs4 number 9016
    end try
    end lookup
    on makeGuess()
    local b, t
    repeat
    display dialog mss1 default answer "" buttons btt1 default button 2 --with icon 1
    set {b, t} to {button returned, text returned} of result
    if b = btt1's item 1 then return givenUpSign
    if (count t) = wordLength then
    if t is not in my tt then
    try
    lookup("^" & t & "$", dict)
    exit repeat
    on error
    display dialog errs1 with icon 2 buttons {"OK"} default button 1
    end try
    else
    display dialog errs2 with icon 2 buttons {"OK"} default button 1
    end if
    else
    display dialog errs3 with icon 2 buttons {"OK"} default button 1
    end if
    end repeat
    set end of my tt to t
    return t
    end makeGuess
    on logText(t, {append:append})
    --tell application "AppleWorks 6"
    tell application "TextEdit"
    if not _append then
    make new document at front
    end if
    tell document 1
    make new paragraph at end with data t --with properties {font:"Palatino"}
    end tell
    end tell
    end logText
    local _done, _exit, w, t, s, r, l, m, sgn
    logText("", {_append:false}) -- open new empty log file
    set _done to false
    repeat until _done
    -- (1) set secret word (w = some (wordLength)-letters word)
    set w to some paragraph of lookup("^.{" & wordLength & "}$", dict)
    logText(NL & line1a & (current date) & NL & line1b & NL & line1c & NL & NL & line2 & NL, {_append:true})
    set my rr to {line2}
    set my tt to {} -- reset used guess words list
    repeat with i from 1 to maxGuesses
    -- (2) get guess word
    set t to makeGuess()
    -- (3) evaluate number of matches
    set s to matchWords(t, w)
    -- (4) check exit conditions and set game summary if necessary
    set {_exit, sgn} to {false, ""}
    if t = w then -- guessed right
    set {l, m, _exit, sgn} to {line3a & w & "." & NL & line4, mss3a & w, true, space & wonSign}
    else if t = givenUpSign then -- gave up
    set {l, m, _exit, sgn} to {line3b & w & "." & NL & line4, mss3b & w, true, space & givenUpSign}
    else if i = maxGuesses then -- exhausted guesses
    set {l, m, _exit, sgn} to {line3c & w & "." & NL & line4, mss3c & w, true, space & exhaustedSign}
    end if
    -- (5) log latest result and show results of this game
    set r to "" & i & tab & t & tab & s & sgn
    set end of my rr to r
    logText(r & NL, {_append:true})
    choose from list my rr default items my rr's item -1 with prompt mss2 with empty selection allowed
    -- (6) log and show game summary
    if _exit then
    logText(NL & l & (current date) & NL & NL, {_append:true})
    display dialog m buttons btt2 default button 2 with icon 1
    if button returned of result = btt2's item 1 then set _done to true
    exit repeat
    end if
    end repeat
    end repeat
    end script
    tell o to run
    end guessword
    --END OF SCRIPT

  • I have been having trouble with inserting pages in a document in indesign

    having trouble with inserting pages in a document in indesign

    You're going to give us more information for us to help you.
    What operating system? What version of InDesign? What happens when you insert a page (and how are you choosing to insert a page)? Does it happen with just one file, or does also happen on a clean new file?

  • Having trouble with my PHP code. Appers to get stuck on a white page.

    HI all,
    I have just began having trouble with my PHP code. Was working before and haven't made any changes to the code since last time it worked.
    What happens is after the form is submitted it goes to a white page (no text just all white page) and in the address bar it has the path for my php page. what supposed to happen is either it goes to a success page or a error page.
    I've had a problem where the info entered is correct but was directed to the error page. i managed to fix that issue but i am puzzled what is happening to my php page now.
    Mind you that i didn't write this code i just took over the responsiblities of this website and i am hopping that its a quick fix.
    I appreciate any help you could give me. Thank you.
    CODE:
    <?php
       $to = '[email protected]';
          $from = '[email protected]';
            //Make sure we have some info posted from the form...
            if (isset($HTTP_POST_VARS)){
                //Clear the body of the message to be sent
                $body = '';
                //go through all POSTed variables sent
                while (list($key, $value) = each($HTTP_POST_VARS)){
        if($key <> "Submit" && $key <> "submit") {
         $body .= $key . ' = ' . $value . "\r\n"; 
                //Now building mail headers.....
                $headers = "From: ".$from."\r\n";
                //Mail message
                $success = mail($to, "Email Club" . date("m/d/Y"), $body, $headers);
       // CURL stuff.....
       $ch = curl_init();
       curl_setopt($ch, CURLOPT_FAILONERROR, 1);
       curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
       curl_setopt($ch, CURLOPT_TIMEOUT, 4); //times out after 4s
       curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
                 if ($success){
        //readfile('http://www.lvpaiutegolf.com/thankyou.html');
        curl_setopt($ch, CURLOPT_URL,"http://www.lvpaiutegolf.com/thankyou.html");
        header("Location:http://www.lvpaiutegolf.com/thankyou.html");
                else{
                 // readfile('http://www.lvpaiutegolf.com/error.html');
         curl_setopt($ch, CURLOPT_URL,"http://www.lvpaiutegolf.com/error.html");
         header("Location:http://www.lvpaiutegolf.com/error.html");
       // Output
       //$result=curl_exec ($ch);
       //curl_close ($ch);
       //echo $result'";
    ?>

    Insert the install disk and boot from it. Use disk utitlity to repair your drive and check for errors (report any errors back here) then reinstall the os. This should not erase your data.

  • I am having trouble with a form, won't tab to 2nd page...

    I am having trouble with a form I created in Acrobat Pro 10. I created tabs etc, they all work wonderfully in Adobe, but once I uploaded it onto the web-based program for other users, the tabs only work  on page 1, I have to click on page 2 to keep tabbing through.  It won't tab into it.  Any advise?  Also, when the users open it it opens in the web.

    1. The library is separate from the application, so re-installing shouldn't cause an issue with the actual photos. But it would be foolhardy in the extreme to do anything without first backing up.
    2. Often these issues are caused by a damaged Library, so reinstalling doesn't change much.
    FWIW
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.
    Alternative approach:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • I'm having trouble with my Pages app. Over half of my document are updating, and do not finish. I cannot get to the documents. This has been going for 2 weeks now, they do not update.

    I'm having trouble with my Pages app. Over half of my document show that they are updating. I cannot open or delete the documents. Does anyone know a fix for this? Please help.

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430http://support.apple.com/kb/ht1430
    Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702http://support.apple.com/kb/TS1702
     Cheers, Tom

  • Having trouble with Yahoo home page sign in. Some time it brings up my wife's Yahoo log in instead of my log in how can I fix this?

    When I open Firefox it is suppose to take me to my Yahoo home page. But it opens up showing my wifes Yahoo sigh in page in stead of mine. Having trouble with Yahoo home page sign in. Some time it brings up my wife's Yahoo log in instead of my log in how can I fix this?

    Did your wife tick the box on the Yahoo sign in page to remember her for two weeks?
    It would be best two have two separate Firefox profile folders, one for each of you to prevent such problems.<br />
    Then you also do not have problems with deleting or changing bookmarks.
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox

  • Since installing the new OS i am having troubles with different appliction icons showing up on my main page twice (upper left corner), and not allowng me to select certain ones (app store specifically).   Anyone else having this issue?

    Help - anyone else out there having trouble with the new OS system on their ipad 2?    I am not getting mutliple copies of several apps ont he main page.  They are "collecting: in a pike int he upper left corner and the original application icon is no lobger working.    I have tried a hard sync, and that didn't help.

    It should only be able to have one copy of an app on the iPad. Have you tried a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    Do all the apps work ? In the past a few people have taken a screen shot of their iPad screen and that has then become their background picture - so some of the 'app's may actually be on your wallpaper picture and not actual apps. Have you tried changing the wallpaper to see if that makes any difference ?

  • Im having trouble with my home page alignment.

    Im having trouble with my home page alignment. If you look at all the other pages within my site you will see how the alignment should be... trunderground.com.  I have tried chaning master pages for my home page, and still nothing.... Please someone help.

    Ask in whatever forum of whatever web design app you use.
    Mylenium

  • Having trouble with the most simple of things: Static IP

    I am having trouble with the most simple of things: Static IP.
    I am working in Windows Server 2008 R2 SP1.
    "Control Panel\Network and Internet\Network and Sharing Center\Local Area Connections>Properties>Internet Protocol Version 4 (TCP/IPv4) and Internet Protocol Version 6 (TCP/IPv6)"
    IPv4: I have went to "ipconfig /all" and found the "preferred" IP Address and the Default Gateway. 
    Assign DNS Servers?
    IPv6: I used "netsh interface ipv6 show address level=verbose" and found 3 usable IPv6 IPs.
    Assign IP Address, Default Gateway and DNS Servers?

    What is the question?
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • I'm having trouble with certain buttons on the Ebay pages.

    I'm having trouble with certain buttons on the EBay pages. Like enlarge, other pictures,add to my watch list, etc. this happened after I upgraded to 8.0. I have tried to upgrade java but the java console will not work ?? tried all this in my other browser and all works fine. What do I do? Thanks

    If it happens again then try to reload the website or clear the cache and the cookies from that website.
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    *http://support.mozilla.com/kb/Deleting+cookies
    *http://support.mozilla.com/kb/How+to+clear+the+cache

  • Help! I'm having trouble with images on my web page.

    I'm trying to create a page with a bunch of my photos but I need the photos broken up into groups so I can discuss the different groups. So I simply cut and paste the photo area several times BUT now when I click on any picture in any group it only does a slideshow for the last group of photos.
    I guess I could simply break the single page into multiple pages but that is so inconvenient in iWeb since it doesn't let you cut and paste template pages! Apple needs to seriously fix this shortcoming. How can you not allow cutting and pasting of pages??
    Here's the page I'm having trouble with:
    http://photo.braintransplants.com/Site/Astronomy.html
    Thanks!
    PowerBook G4 17 (A1085) 1.5 GHz / 1.5 GB RAM / 128 MB VRAM / 80 GB HD   Mac OS X (10.4.2)  

    You probably realise by now that you're attempting to do things with iWeb which it just wasn't intended to do. Cutting and pasting the photo grid area just won't work as you want it to. To work within iWeb's limitations might i suggest that you use the 'nesting' approach described in several posts here already. Use a single representative image on your main page for each of the situations you want to cover, and link each of these to an appropriate Photo page which has 'Include page in navigation menu' unchecked.
    You could add a link on each of the Photo pages which returns to your main descriptive page.

  • Having trouble with the syntax when trying to only print some random pages from a multi page documen

    Having trouble with the syntax when trying to only print some random pages from a multi page document.  So far in the Print Selection Area, I have chosen "pages" and then typed 1,3-4 so as NOT to print page 2 but this does not seem to work. - Help Please

    In my updated firefox, the print button does NOT open print preview first.
    How can I access print preview function?

Maybe you are looking for