Jump to content

A few questions


Rabbitman
 Share

Recommended Posts

Hello! I have a few questions that I would like help on.

1: What is the function to create a dropdown list that is NOT a menu list? So justanormal dropdown in the middle of my GUI.

2: So when make my GUI with a drop down box, I'm going to add subsections. I will not need function for this I think I can figure that out. But let's say my script is...

Dim $On = False
Hotkeyset("{F2}", "Example)

While 1
If $On = True Then
Send("{Z down}")
Sleep(10)
Send{"Z up}")
WEnd

Func Example()
If $On = False 
Then
$on =True
Else
$On = False
Endfunc

And one of my options on the Dropdown box was "X", how would I make it so It presses X instead of Z?

Those are all of my questions until I get answers. Also that script might not be perfect because I am on my iPhone so I don't have the script on my computer, but you get the idea.

Link to comment
Share on other sites

  • Moderators

Rabbitman,

Dog eaten your Help file? :x

Ans 1:

$hCombo = GUICtrlCreateCombo(....)

Ans 2:

$sKey = GUICtrlRead($hCombo)
Send("{" & $sKey & " down}")

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

What? That is nowhere near what I'm asking for... But I figured it out a while ago. My new question is how do I make it so that instead of it being from a dropdown, it's from an input box, an then what I type is what comes out.

You haven't included much info, have you?

$texthandle = GUICtrlCreateInput("", 0, 0) ;the two 0's will be modified by you to fit your GUI
While 1
    $text = GUICtrlRead($texthandle)
    Dim $On = False
    Hotkeyset("{F2}", "Example)

WEnd

    If $On = True Then
        Send("{" & $text & " down}")
        Sleep(10)
        Send{"" & $text & " up}")
    EndIf

    Func Example()
        If $On = False Then
            $on = True
        Else
            $On = False
    Endfunc

Tell me if you have any problems with that.

shanet

[font="Comic Sans MS"]My code does not have bugs! It just develops random features.[/font]My Projects[list][*]Live Streaming (Not my project, but my edited version)[right]AutoIt Wrappers![/right][/list]Pure randomness[list][*]Small Minds.......................................................................................................[size="1"]Simple progress bar that changes direction at either sides.[/size][*]ChristmasIt AutoIt Christmas Theme..........................................................[size="1"]I WAS BOOOORED![/size][*]DriveToy..............................................................................................................[size="1"]Simple joke script. Trick your friends into thinking their computer drive is haywire![/size][/list]In Development[list][*]Your Background Task Organiser[*]AInstall Second Generation[/list]BEFORE POSTING ON THE FORUMS, TRY THIS:

%programfiles%/AutoIt3/autoit3.chm
Link to comment
Share on other sites

  • Moderators

What? That is nowhere near what I'm asking for...

Then you should perhaps give rather more detail when asking questions. :P

My new question is....

I hope you can "figure it out" yourself or persuade someone else to help, because you will certainly not be getting any more help from me after that last reply! :x

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Hello! I have a few questions that I would like help on.

1: What is the function to create a dropdown list that is NOT a menu list? So justanormal dropdown in the middle of my GUI.

And one of my options on the Dropdown box was "X", how would I make it so It presses X instead of Z?

Two helpful replies from two separate people given here

What? That is nowhere near what I'm asking for... But I figured it out a while ago. My new question is..

I think your for your next question you should ask yourself, "How can I be more appreciative of basic help offered to me for my basic questions?"

- Bruce /*somdcomputerguy */  If you change the way you look at things, the things you look at change.

Link to comment
Share on other sites

Did you notice that Melba23 is an AutoIt MVP? I worship those guys and it would be a good idea for you to do the same.

+1

+1

+10

+100

:x

[font="Comic Sans MS"]My code does not have bugs! It just develops random features.[/font]My Projects[list][*]Live Streaming (Not my project, but my edited version)[right]AutoIt Wrappers![/right][/list]Pure randomness[list][*]Small Minds.......................................................................................................[size="1"]Simple progress bar that changes direction at either sides.[/size][*]ChristmasIt AutoIt Christmas Theme..........................................................[size="1"]I WAS BOOOORED![/size][*]DriveToy..............................................................................................................[size="1"]Simple joke script. Trick your friends into thinking their computer drive is haywire![/size][/list]In Development[list][*]Your Background Task Organiser[*]AInstall Second Generation[/list]BEFORE POSTING ON THE FORUMS, TRY THIS:

%programfiles%/AutoIt3/autoit3.chm
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...