'01-23-2007 'KENNETH UDUT '[email protected] ' ' 'Twitter Interface using WGET.EXE 'Dependant upon: C:\twtsub DIRECTORY 'status.txt [this program should create it - perhaps run the whole batch file routine!] 'upurl.txt (contains username/password which, in the future, you could do through here. 'twtget.bat which is the batchfile that runs the wget with all of the switches. keep open for now.   mainwin 40 16  msgssent=0  [inputsec] entry$="" cls print "+-------------------+** msgs sent: "; msgssent;"" print "|TwitterSubmitterW32|" print "|by Kenneth Udut 1.4|**************************************************************************************** ? or ! send to: twitter.com/simplify3" PRINT "|maximum: 147 chars.|" print "|press ENTER to send|" print "|...5...10...15...20|..25...30...35...40...45...50...55...60...65...70...75...80...85...90...95..100..105..110..115..120..125..130..135..140..145.." print "******************** " print " What are you doing?********* ----->********************** ----->************
********** ----->********************** ----->***************** ---->|" print "******************************************************************************************************************************************** [STOP]" print "+-------------------+------------------------------------------------------------------------------------------------------------------------------" print "" line input ""; entry$ entry2$="status=" + entry$ msgssent=msgssent+1  open "C:\twtsub\status.txt" for output as #f print #f, entry2$ close #f  Print "Submitting...." RUN "C:\twtsub\twtget.bat", HIDE goto [inputsec] end