Changeset 115

Show
Ignore:
Timestamp:
01/08/08 16:32:13
Author:
slee
Message:

usage and readme

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • inapp/trunk/README

    r113 r115  
    2626------ 
    2727Grab the latest from SVN at http://www.oatsoft.org/svn/jambu/inapp/trunk 
     28and run .../jambuinapp/src/jambu python InAppSelection.py  
    2829 
    2930Useage 
     
    4142perform the action for an interactive item. 'next' iterates arround items in a 
    4243group and also the group itself to allow moving up and out of the group  
    43 (the highlight changes colour in this case) 
     44(the highlight changes colour in this case). 
     45 
     46For now text is entered with the keyboard. Obviously a useable solution will  
     47invoke an OSK like GOK or Dasher. 
    4448 
    4549Gestures 
  • inapp/trunk/src/jambu/InAppSelection.py

    r110 r115  
    3434      elif not arg.startswith('--') and len(arg) > 2: 
    3535        appl = arg 
     36         
     37    if appl is None: 
     38      print """Useage 
     39------ 
     40/usr/local/bin/jambuinapp --scan --showtree [gedit | Minefield] 
     41  --scan        start auto scanning, otherwise manual 
     42  --showtree    show the GTKTreeView of accesible objects and other UI 
     43 
     44Make sure gedit/minefield is already open and make it the active application  
     45again to be safe. 
     46""" 
     47      sys.exit() 
    3648    return show_tree, scan, appl 
    3749