
program builder
Active Members-
Posts
140 -
Joined
-
Last visited
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by program builder
-
Me: I put you online for a bunch of people to download. Allie: Howcome? me: So that you can have friends. Allie: I know. me: Then why did you ask? Allie: Because that is just the way it is. Me: it is huh? Allie: yes. me: Anyways, what kind of things do you do for fun? Allie: You first Anyways, what kind of things do you do for fun? Me: I like movies, music, and computers. Abbie: I would say I like movies, music, and computers too, but it isn't true. me: then lets go fishing Abbie: lets do it. me: may I pick you up in an hour? Abbie: Yes you may. me: I will see you when I get there. Abbie: I know you will.
-
You forgot to put the question mark, when you asked it how are you?
-
I have built a pretty cool, chat bot that communicates like an uneducated 5 year old kid. It is pretty cool though. check it out. I hope you guys like it. after you chat with it, let me know what you think. Chat Bot.au3
-
trying to move files to another folder
program builder replied to program builder's topic in AutoIt General Help and Support
I got it working. I just had to do it in another directory. Maybe someone else could use this code later, if they need it for something. thanks guys. -
trying to move files to another folder
program builder replied to program builder's topic in AutoIt General Help and Support
Yes. -
trying to move files to another folder
program builder replied to program builder's topic in AutoIt General Help and Support
Your code said that their was no variab;e givin for dim, local global, struct, or const statement. -
trying to move files to another folder
program builder replied to program builder's topic in AutoIt General Help and Support
i tryed it with the backslash and it still isn't working. -
trying to move files to another folder
program builder replied to program builder's topic in AutoIt General Help and Support
I am using the code you gave me, but it isn't moving the file, to the other folder. It is doing everything else that I want it to do. But I am trying to get it to take the file out of one folder and put it inside of the other folder. Could someone please help. Here is the code that I used. while 1 Local $text = InputBox("offlinemessenger.com ", "Type in the username of a person, who you would like to add as a friend. Or type in the words view friends to see your friends.") If @error = 1 Then Exit EndIf ;The two statements can be merged. Also the brackets are not needed. If $text = "view friends" Or $text = "view friend's" Then ShellExecute(@WindowsDir & "/Offline Messenger/member/friends") ;@windows would be correct, even if windows is not installed on the C drive. This is just to increase compatability on other PC's Else Local $sFrom = @WindowsDir & "/Offline Messenger/Member-Members/" & $text & ".jpg" Local $sTo = @WindowsDir & "/Offline Messenger/member/friends" & $text & ".jpg" ;you still need to specify the filename. Otherwise it would place a file named "friends" in the forlder ../Offline Messenger/member/ FileMove($sFrom, $sTo) ;You can't actually place the comma seperating the parameters in the sting as it would be seen as part of the string. Again, exceptions are possible in very specific cases. EndIf wend -
I am trying to get it to take the picture out of the windows directory named roger, and put it into member/friends. (roger.jpg) I already have it saved in the windows directory. but it isn't letting me movie it. I aint writting the code right. FileMove("c:/windows/Offline Messenger/Member-Members/nametyped.jpg", "c:/windows/Offline Messenger/member/friends") is the right code, but I am trying to get it to move the picture of the persons name i type in. Can some one please help me fix this. I have looked all over the help file, and have been searching the forums for hours. Thanks. here is the code I am using. call("main") func main() $text = inputbox("offlinemessenger.com ", "Type in the username of a person, who you would like to add as a friend. Or type in the words view friends to see your friends.") if @error = 1 Then Exit EndIf if $text = ("view friends") then shellexecute("c:/windows/Offline Messenger/member/friends") call("main") endif if $text = ("view friend's") then shellexecute("c:/windows/Offline Messenger/member/friends") call("main") else $firstpartofaddress = "c:/windows/Offline Messenger/Member-Members/" $jpg = ".jpg" $lastpartofaddress = ", c:/windows/Offline Messenger/member/friends" $movejpg = $firstpartofaddress & $text & $jpg & $lastpartofaddress Filemove($movejpg) call("main") endif endfunc
-
;here is my script winwaitactive(StringInStr,".jpg") MsgBox(4096, "Bessie:", "Just tell me your name in one word") ;I am trying to get it to send messages when it sees that it is ;Opening a jpg file. What is wrong with my code?
-
an example chat bot
program builder replied to program builder's topic in AutoIt General Help and Support
Remember writing this? Hey! I'm James, an 18 year old student. I focus mainly in web development, but from time to time, dabble in desktop programming. I run several websites, all of which serve a purpose more to myself than anyone; TehGD, James Brooks & jTutorials I use AutoIt on a daily basis, be it in a script I wrote or by someone else, making my computing life easier. In 2007, I won the AutoIt People Awards (god knows how) with Disk Manager. My most used script has to be RAMPro, which has been deployed to my college network to attempt to speed up the poor computers they use! My hobbies include; reading Dan Brown/Darren Shan, solving my Rubiks cube, coming up with solutions to problems, Neuro-Linguistic Programming and flying kites. It looks like you do the same thing. -
Here is a chatbot, that will someday sound totally human like. This is just an example, of what I want to do. I would someday like to create it, to where when you ask it a question, that you have already asked it before, it gives the same anwer that your gave. right now when you ask it a question, (example) you say how are you doing? It says, I will tell you after you tell me. How are you doing? then when you give an answer, it gives the same answer, that you gave. I would like it to also have 2 differnt answers, one that agrees with you, and the other that don't. I would like it to change it's mind and give the answer that you wan't it to give. (example) you say it doesn't like country music when you said you like country music, I would like you to be able to say, bullshit, and it changes it's mind, then the next time you say, I like country music, it will say, I'll say I like country music also. Is there anyway to do this. If anybdoy can help, please let me know. Anyways, I got this example, and it works good. I just think it could be better............................................................................ aaa.au3