Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'A script to send notes to a Bluetooth phone' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A script to send notes to a Bluetooth phone
Authored by: cschin on Apr 16, '04 08:42:21PM
The line

tmpf.write("BEGIN:VNOTEnVERSION:1.1nBODY:%snEND:VNOTE" % msg[:-3])
should be

tmpf.write("BEGIN:VNOTE\nVERSION:1.1\nBODY:%s\nEND:VNOTE" % msg[:-3])
The
\
gets stripped.

[ Reply to This | # ]