Jump to content

Mr. Zero's Question Corner.


PantZ4
 Share

Recommended Posts

Mr. Zero's Question Corner.

1. How to set a hotkey?

2. Can I set icon for a msgbox?

3. How do I take something of a string? Like: Mr. Zero, 5,7 = Zer

5. What is Dim?

6. How to "clear" a input box?

7. How do I get a array variable?

8. How can I show a web page in a script?

Thank you :P

Link to comment
Share on other sites

Mr. Zero's Question Corner.

1. How to set a hotkey?

2. Can I set icon for a msgbox?

3. How do I take something of a string? Like: Mr. Zero, 5,7 = Zer

5. What is Dim?

6. How to "clear" a input box?

7. How do I get a array variable?

8. How can I show a web page in a script?

Thank you :P

Go the the helpfile/index and for your first question type HotKeySet...

Type Msgbox for your second question...

For your third question search (under index) for Stringsplit, you'll want to split every character and then see if $character[1] = "what you want", then if $character[2] = what you want et cetera, It would probably look something like this

$1 = 1
$string = Stringsplit("Some random text", "")
Do
      If $string[$1] = "o" then Msgbox(0, "", "YAY IT WORKED");o is the character you want
      $1 = $1 + 1
Until $count > then $string[0]
;this hasn't been tested

For your "4th" question (which you labeled your 5th) search for Dim under the index of the Helpfile...

For your "6th" question search for GuiCtrlSetData (and you'll want to set it blank by GuiCtrlSetData($inputbox, "") ;inputbox is the name of you input box

For your "7th" question you should look in the Examples/Helpfile where you will learn all you need to know about arraying

For your last question type "IE" under the Index part of the helpfile and there are numerous helpfiles

Piano_Man

Edited by Piano_Man
My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list]
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...