Jump to content

program builder

Active Members
  • Posts

    140
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

program builder's Achievements

Adventurer

Adventurer (3/7)

1

Reputation

  1. 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.
  2. You forgot to put the question mark, when you asked it how are you?
  3. 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
  4. 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.
  5. Your code said that their was no variab;e givin for dim, local global, struct, or const statement.
  6. i tryed it with the backslash and it still isn't working.
  7. 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
  8. 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
  9. forget it. I'll just see if I can find it listed in the forums. You guys arn't helping at all.
  10. _Is Pressed() isn't even in my help file. Could you send me _is pressed() or please just post the info?
  11. I couldn't even find eather one of them files, in the help file. Could someone please, just post it here.
  12. I tryed finding it, in WinAPIEx.au3 but had no luck, and I don't know where to search for it, in the help file. Could someone just post it? I don't need it coded. I just need to know what code to put into the code, when it comes to each key.
  13. If you set an Is pressed, you have to code it by using a differn't key than its own character. Could someone post the info here, for all is pressed keys? Thanks; I would appreciate it.
×
×
  • Create New...