how do i active my own windows helpfile ?

Discussion in 'AutoCAD' started by MRL, Mar 6, 2005.

  1. MRL

    MRL Guest

    I wrote a LISP-routine, but how do i activate my own windows helpfile
    while pressing the F1 key?
    (And I don't want to use a dialogbox or getkword)

    Martin
     
    MRL, Mar 6, 2005
    #1
  2. MRL

    iwafb Guest

    Martin,

    In your menu (assuming standard acad menu or mns) there is a section with a heading:

    ***ACCELERATORS

    Search for this and add your own definition for F1, for example:

    ["F1"]'ZOOM;P

    This should override your current definition.

    John
     
    iwafb, Mar 6, 2005
    #2
  3. Hi Martin,

    Changing the responses of standard keys like the F1 key is not a good
    approach as it will only serve to confuse users who expect to get AutoCAD
    help from the F1 key.

    Whenever you create your own customisation you should add it to your
    personal customisation menu. This menu can quite readily have "Help" as the
    first item in the menu and you call the help related to your customisation
    there.

    --

    Regards,


    Laurie Comerford
    www.cadapps.com.au
     
    Laurie Comerford, Mar 6, 2005
    #3
  4. Have a look into the function SETFUNHELP

    Code:
    (setfunhelp "C:LABELS" "G-LABELING.HLP" "Labels")
    
    (defun C:LABELS	(/ olderr
    
     
    Luis Esquivel, Mar 7, 2005
    #4
  5. MRL

    MRL Guest

    Thanks Luis.
     
    MRL, Mar 7, 2005
    #5
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.