"Variable with the dollar sign"=inputbox("HI!","Hello...Who are you?")
If @error=1 Then
Exit
EndIf
MsgBox(0,"","Your name is " & )
Hope that helps you, what it does is it displays the string "Your name is " and then also gets the variable and adds it to the string using the "&" symbol.
You can also use ""[String]" & @CRLF & "[String2]" in your messagebox parameter #3 which will make a new line so that the sample code would display as this:
Code:
Title
[String] ;@CRLF enters down a line and then writes "String2"
[String]
|OK|
lol I knew you were going to answer... The Code Tags cut off some stuff I am just wondering what they cut off exactly... Can you post it out of the code tags.... (For the first one)
EDIT: I tried it like this and I got an error 0.0
$input=inputbox("HI!","Hello...Who are you?")
Autoit Spezielle Variable 02/07/2010 - AutoIt - 10 Replies hihi :D
ich habe eine frage:
kann mir jmd sagen, wie ich in auto it eine variable erstelle, welche
ein wort als inhalt zugewiesen bekommt, wobei da wort zufällig auf einer internetseite generiert wird ??
ich habe mir gedacht, dass ich das wort markieren und kopieren lasse
und dann das "kopierte" der variable als wert zuweise .... wäre nett, wenn mit jmd helfen könnte :D
AutoIt Question. 11/02/2009 - S4 League - 3 Replies I asked this in someone else's thread when they inquired about a bot program, but it seems that thread was deleted, because I can't find it even with the search function.
Well I wanted to know if AutoIt would work with Games that only accept direct input, without having to use a bypass. There are many games I'm sure you all know of that don't allow input from Auto macro programs to go through. Anyone know off of the top of their heads?
[AutoIT]Variable Conversion 10/30/2009 - AutoIt - 2 Replies Is there any way to convert a variable into a certain other type?
For example:
Variable $A should be a float set to 5.01382
however when I bring it into AutoIT, it converts it to an Unsigned Long giving me a different value of something like 1099238427
So basically I just want to know if there is a command, or any way to code a function that can convert Variables set to Unsigned Long into Float/Double/Unsigned Short