Skip to main content

Posts

Showing posts from February, 2018
spy recorder app using Rfo-basic Nowdays everyone think about security, survelliance or spying to someone. its good idea but today i will show you how can you create your own spy recorder app using basic programming  . Basic is simple programming language in which you can develope any app fast without doing any hard work. download rfo basic from play store. Open it and type the program given below. And run the following program- gr.open 200,30,70,120,0 gr.orientation 0 gr.screen w,h cx=w/2 cy=h/2 qx=w/4 qy=h/4 unit=w/20 time y$,mn$,d$,h$,m$,s$ file$=y$+mn$+d$+h$+m$+s$ path$="../../" folder$="spy recorder" file.exists s,path$+folder$ if s=0 file.mkdir path$+folder$ endif gr.color 200,200,200,200,1 gr.bitmap.load b,"spy/space.jpg" gr.bitmap.scale bm,b,w,h gr.bitmap.draw space,bm,0,0 gr.bitmap.load sa,"spy/sat.png" gr.bitmap.scale nsa,sa,qx,qy gr.bitmap.draw nasa,nsa,0,qy+2*unit gr.rend