How to create help files / text files

Ask a Question related to FileMaker, Design and Development.

  1. #1

    Default How to create help files / text files

    I want to create a help dialogue that will just act as a reminder on do's &
    dont's

    I had in mind a text file with sliding bars but don't seem to be able to do
    this.

    The text will be about 300 words plus and it will be the same context in
    each record, any clues on how to do this?

    Ernie


    Falcon Guest

  2. Similar Questions and Discussions

    1. Can Flash Create Text Files
      So i'm helping some people design a flash application that runs off of a cd and they want to be able to store data from use to use without really...
    2. PHP files treated as text files
      Seems that DreamweaverMX2004 is now treating all my PHP files like text files. All the menu choices are greyed out under Design, Application, Tag...
    3. How do you create PDF files on a MAC?
      HELP!!!!! We have a OS9 MAC with Illsutrator 10, and we are trying to create PDF files; but we are having no luck! Also, when we save to ESP files we...
    4. Create Adobe PDF files from PDF files?
      Is is possible to create PDF files from an existing PDF file? For example, I have a PDF file that contains 2 pages of content. ("pages1and2.pdf")...
    5. Link Text files to SWF files.
      thanks heaps for that :D
  3. #2

    Default Re: How to create help files / text files

    > I want to create a help dialogue that will just act as a reminder on do's
    > & dont's I had in mind a text file with sliding bars but don't seem to be
    > able to do this.
    >
    > The text will be about 300 words plus and it will be the same context in
    > each record, any clues on how to do this?
    I would make a two global Text fields one called <gHelp> and another called
    <gHelpEscape>

    And two scripts one to go to the help layout and the second to escape and
    return to the correct layout

    #GotoHelp
    Set Field <"gHelpEscape", "Menu">
    Clear <"gHelp">
    Insert Text <"gHelp", "your help text">


    #Escape
    If <"gEscapeHelp = "Menu"">
    Goto Layout <"Menu">
    Exit Script
    End if

    Repeat for other layouts...

    Simply connect the buttons on the screen to the correct script
    I am using this method and well perfectly and on average my help
    file inserts 1500 words per subject you click on.

    Hope this helps...

    Just giving back what I have been taught myself




    --
    ----------------------------------------
    Quantum Illusions: [url]http://quantum.2ya.com[/url]
    Pegasus Mail Support Site: [url]http://pegasus.quantum.2ya.com[/url]
    Freeware Site: [url]http://freeware.quantum.2ya.com[/url]
    DATA Solutions: [url]http://datasolutions.quantum.2ya.com[/url]

    If you truly want to contact me click the link
    [url]http://quantum.2ya.com/email.htm[/url]

    Bebop & Rocksteady Guest

  4. #3

    Default Re: How to create help files / text files

    Thanks that did it!

    Any advice on incorporating a Powerpoint slide show?

    Much appreciated!

    Ernie


    Falcon Guest

  5. #4

    Default Re: How to create help files / text files

    > Thanks that did it!
    >
    > Any advice on incorporating a Powerpoint slide show?
    Haven't tried it myself but what about OLE object
    create a Container and inser and object

    choose Microsoft PowerPoint from file
    You may have to experiement a little...


    --
    ----------------------------------------
    Quantum Illusions: [url]http://quantum.2ya.com[/url]
    Pegasus Mail Support Site: [url]http://pegasus.quantum.2ya.com[/url]
    Freeware Site: [url]http://freeware.quantum.2ya.com[/url]
    DATA Solutions: [url]http://datasolutions.quantum.2ya.com[/url]

    If you truly want to contact me click the link
    [url]http://quantum.2ya.com/email.htm[/url]

    Bebop & Rocksteady Guest

  6. #5

    Default Re: How to create help files / text files

    this method can easily be implemented solution wide
    2 (+) scripts, 2 fields one rel, one Help file

    create a field _HelpIteration, global text
    create a field _HelpCode, text calc =
    Case(
    _HelpIteration > 0, Status(CurrentFileName) & " ** " &
    Status(CurrentLayoutName) & " ** " & _HelpIteration,
    Status(CurrentFileName) & " ** " & Status(CurrentLayoutName)
    )


    create a rel (rel HELP) to the Help file, _HelpCode::_HelpCode

    then the first script, Help
    refresh
    if count rel HELP ::RN = 0
    set field rel HELP::_HelpCode = _HelpCode
    end if
    go related, show only related, rel HELP
    perform external script ( Helpfile goto display layout)


    the second script (defines iteration) , Main Help for Layout:
    set _helpIteration = 1
    perform script Help


    assign a help button on the layout to the second script
    if more help iterations are required, duplicate the second script and change
    the iteration number (2, 3, 4...) and add a button for each. This can be used
    for an essentially context sensitive help.

    The help code concatenates the filename and layout name, so changes to either
    will lose the link to the related Help record, easy enough to edit.
    the refresh is required as a first step in the main help to recalc the
    _helpCode, even though unstored.
    If there is no existing Help record, a new one is created, if there is the
    script goes to it


    This also works very well for development notes on teh fly. It can even be
    easily incorporated with a modifier key to create a duplicate, dev only, help
    record for each help button


    Chris Brown
    Neurosurgery
    University of Adelaide







    Falcon wrote:
    > I want to create a help dialogue that will just act as a reminder on do's &
    > dont's
    >
    > I had in mind a text file with sliding bars but don't seem to be able to do
    > this.
    >
    > The text will be about 300 words plus and it will be the same context in
    > each record, any clues on how to do this?
    >
    > Ernie
    Chris Brown Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139