Jump to content

Tagor

Active Members
  • Posts

    71
  • Joined

  • Last visited

Recent Profile Visitors

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

Tagor's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Thanks, I tried that, but it doesn't work either. What I noticed is that it doesn't recognize the "Choose File to Upload"-window. WinGetPos("Choose File to Upload") returns nothing. The weird thing is that the window-title is the same as Au3Info.exe returns. Any idea what else to try?
  2. That doesn't work either. It just doesn't paste anything.
  3. I want to upload a file thru Autoit. After I click on the Browse-button it opens the 'Choose File to Upload'-window. For some reason the script doesn't continu after opening the 'Choose File to Upload'-window. It won't paste the contents of the clipboard. #include <GUIConstants.au3> #include <IE.au3> $GUI = GUICreate($protitle, 1024, 800) $object = ObjCreate("Shell.Explorer.2") _IENavigate($object, "http://somesite.com") _IELoadWait($object) $oinput = _IEGetObjByName($object, "userfile") _IEAction($oinput, "click") _IELoadWait($object) Send("{CTRLDOWN}v{CTRLUP}") Does anyone know what's wrong?
  4. What information/code do you need? Actually besides the GUI windows this is all code.
  5. I try to make a tabbed browser: GuiCtrlCreateTab(10, 10, 930, 630) GuiCtrlCreateTabItem("Tab 1") $oIEstart = ObjCreate("Shell.Explorer.2") $GUIActiveXstart = GUICtrlCreateObj($oIEstart, 12, 34, 924, 602) $oIEstart.navigate("test.html") GuiCtrlCreateTabItem("Tab 2") $oIEstart = ObjCreate("Shell.Explorer.2") $GUIActiveXstart = GUICtrlCreateObj($oIEstart, 12, 34, 924, 602) $oIEstart.navigate("test.html") GuiCtrlCreateTabItem("Tab 3") $oIEstart = ObjCreate("Shell.Explorer.2") $GUIActiveXstart = GUICtrlCreateObj($oIEstart, 12, 34, 924, 602) $oIEstart.navigate("test.html") But if I make several tabs then shortcuts don't work anymore. Any idea how to fix this?
  6. Hi, I try to make a GUI with a few tabs with shell explorers. But now I have the problem that shortcuts like CTRL+C and CTRL+V don't work. Anyone an idea how to fix this? GuiCtrlCreateTabItem("Tab 1") $oIEstart = ObjCreate("Shell.Explorer.2") $GUIActiveXstart = GUICtrlCreateObj($oIEstart, 12, 34, 924, 602) $oIEstart.navigate("test1.html") GuiCtrlCreateTabItem("Tab 2") $oIEstart = ObjCreate("Shell.Explorer.2") $GUIActiveXstart = GUICtrlCreateObj($oIEstart, 12, 34, 924, 602) $oIEstart.navigate("test2.html") GuiCtrlCreateTabItem("Tab 3") $oIEstart = ObjCreate("Shell.Explorer.2") $GUIActiveXstart = GUICtrlCreateObj($oIEstart, 12, 34, 924, 602) $oIEstart.navigate("test3.html") Thanks in advance
  7. Thanks, that program works great for me. However I have two questions: 1. How can I change the window title? Since when I change the Title value in the .hpp file it still says "HTML Help" as title. 2. Somehow it is pointing to a file called "index_version.htm". I have removed all references to that file. However it still says the file is missing. I noticed that the file is used for the 'Contents' tab. Anyone who know how to change the default page for the 'Contents' tab? Thanks again guys
  8. Sorry for not being clear. I want to make the following thing; all radiobuttons are enabled, if someone selects one of the radiobuttons, a submit button should become enabled to submit the values of the radiobuttons.
  9. Weird, then I don't get why this doesn't work: Instead of Run("Notepad"): GuiSetState ($radio0, $WS_ENABLE)
  10. That's not what I was looking for. I would like to run something when the bullet is clicked.
  11. Is it possible to run something if a radiobutton is being selected?
  12. Thanks, I forgot the '&', so it didn't work
  13. Is there a way to disable the 'close' function of a GUI window that was already created? Thanks guys
  14. Is there a way to put an enter in a label? Or do you need to create a second label?
  15. As far as I understand, you will have to install that program on the end-users computer?
×
×
  • Create New...