home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 November / Pcwk1197.iso / LOTUS / Eng-ins / WORDPRO / BOOKMARK.TPL < prev    next >
Text File  |  1995-07-30  |  852b  |  22 lines

  1.     REM For best results, run this script in a new document.
  2.     
  3.     REM Enter some text    
  4.     .Type "This is a bookmark."
  5.     REM Select the word "bookmark"
  6.     .Type "[Left][ctrlshiftLeft]"
  7.     REM Mark the text    
  8.     MarkerName = .Mark($LwpMarkerTypeBookmark)
  9.     REM Create a bookmark named "Sample from the marked text
  10.     .Division.BookmarkManager.AddBookmark "Sample", MarkerName
  11.     
  12.     REM Use a TextMarker to manipulate the bookmark.    
  13.     Dim bookmark As TextMarker
  14.     Set bookmark = .Division.Foundry.Markers(.Division.BookmarkManager.Bookmarks("Sample").MarkerName)
  15.     
  16.     textToMessage = "The current bookmark contains the word """ + bookmark.GetMarkedText() + """"
  17.     Messagebox textToMessage,, "Script Sample"
  18.     REM Replace the bookmark with the words "sample bookmark"
  19.     bookmark.Replace $LWPReplaceObjectTypeCharacter, "sample bookmark"
  20.     
  21.     .GotoBookmark "Sample"
  22.