
(Solved)Selecting Category and Sub-Category From Separate Drop Downs In IE
By
rm4453, in AutoIt General Help and Support
-
Similar Content
-
By FordsFinest
Have come across an issue where I use the below code to select and then click an item. It works great on every computer but one, which happens to be my bosses computer (of course right lol). So SelectItem works fine, but for some reason, the ClickItem command keeps clicking the item below the correct item (but only on this computer. I changed the command to controlsend instead, but i'd rather use the click option.. any ideas here?
_GUICtrlTreeView_SelectItem($hWnd, $Array2[1]) _GUICtrlTreeView_ClickItem($hWnd, $Array2[1], "right")
-
By gahhon
So I had compiled my AutoIT script into executable file, I think like few weeks ago.
But once after I compiled the script to executable file, I tested it and it work as expected.
Somehow, I just now wanna try to execute it but failed
Any idea what's is going on? Do I need to recompile the script again? @@
-
By gahhon
I have a python script automate.py and I wanna run it via CMD.
As I know to execute python via CMD is something like this
$CMD = "Something python here" Run(@ComSpec & " /c " & $CMD) But how can I just open the 1 CMD and send multiple commands to the CMD based on the function called?
For instance like:
Launch CMD and send python then send import automate If google() function is called - send automate.google() to the CMD If yahoo() function is called - send automate.yahoo() to the CMD I don't want to execute multiple CMD to call the automate functions. This is due to inside the python script have global variable to handle duplicate flag.
So if I execute multiple CMD to call the functions, the global variable will be keep new as NULL. Which is not my expectation.
Thanks
-
By gahhon
I only found that AutoIt can actually execute the entire python script or execute the .exe (converted to .exe from .py)
But what if I just want call the particular function? If that possible to do so?
This is because python can't create fancy GUI like AutoIT does. So my plan is use AutoIT to have fancy GUI.
Then each buttons will trigger specific function in the python script or .exe file.
For instances:
btnSum - trigger function in python script or .exe file (funcSum)
btnMinus - trigger function in python script or .exe file (funcMinus)
Thanks for advance information.
-
By nacerbaaziz
Hello my friends
Can we create a single context menu on more than one item?
For example, a context menu includes standardized options on more than one control, such as buttons or check boxes
to Create a context menu on one item am using this function
GUICtrlCreateContextMenu ($ HWND)
How to link it with more than one element please?
or if we can't do that, please give me a solution
so i tried to add an context menus to all the controls but the script will be long, for that if their are any solutions i hope to give it to me
thanks in advanced
-