Two comments. If you use the Local app (free in the market) and have ASE installed, it will give you an option to trigger ASE scripts when certaint circumstances happen (you get home, or to work, etc).
Also, if you have the zyxing barcode scanner library installed in your phone (free in the market), you can invoke the barcode scanning from a script, this python code shows how. Type the following few lines and save them as a .py file:
Use this field to search for information ONLY within the discussion boards. Use the search field in the upper right hand corner to search the entire MOTODEV web site.
Two comments. If you use the Local app (free in the market) and have ASE installed, it will give you an option to trigger ASE scripts when certaint circumstances happen (you get home, or to work, etc).
Also, if you have the zyxing barcode scanner library installed in your phone (free in the market), you can invoke the barcode scanning from a script, this python code shows how. Type the following few lines and save them as a .py file:
_______________
import android
droid = android.Android()
code = droid.scanBarcode()
barcode = int(code['result']['SCAN_RESULT'])
url = "http://books.google.com?q=%d" % barcode
droid.startActivity('android.intent.action.VIEW',u rl)
__________________________________
That code will scan a barcode and open your browser and look for the "book" (assuming what you read is a ISBN barcode).
If you want to do the same with a movie, you can replace the line that starts with 'url' with the following line:
url = "http://www.dvdaf.com/search.html?upc=%d" % barcode
This line will open the browser and point you to the entry for a movie's barcode. From there you canclick in the imd or amazon links.
Enjoy!