Changeset 115
- Timestamp:
- 01/08/08 16:32:13
- Files:
-
- inapp/trunk/README (modified) (2 diffs)
- inapp/trunk/src/jambu/InAppSelection.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
inapp/trunk/README
r113 r115 26 26 ------ 27 27 Grab the latest from SVN at http://www.oatsoft.org/svn/jambu/inapp/trunk 28 and run .../jambuinapp/src/jambu python InAppSelection.py 28 29 29 30 Useage … … 41 42 perform the action for an interactive item. 'next' iterates arround items in a 42 43 group 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 46 For now text is entered with the keyboard. Obviously a useable solution will 47 invoke an OSK like GOK or Dasher. 44 48 45 49 Gestures inapp/trunk/src/jambu/InAppSelection.py
r110 r115 34 34 elif not arg.startswith('--') and len(arg) > 2: 35 35 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 44 Make sure gedit/minefield is already open and make it the active application 45 again to be safe. 46 """ 47 sys.exit() 36 48 return show_tree, scan, appl 37 49
