Jump to content

trillian

Members
  • Posts

    10
  • Joined

  • Last visited

About trillian

  • Birthday 04/01/1978

Profile Information

  • Location
    Detroit Mi

trillian's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. im trying to login to my yahoo mail account but its not working #include <IE.au3> ; Create a browser window and navigate to yahoo $oIE = _IECreate() _IENavigate($oIE, "http://mail.yahoo.com/") ;;;;;;; i think the problem is in here but i dont know how to fix it $o_form = _IEFormGetObjByName($oIE, "f1") $o_login = _IEFormElementGetObjByName($o_form, "login") $o_password = _IEFormElementGetObjByName($o_form, "passwd") ;;;;;;;; _IEFormElementSetValue($o_login, "username") _IEFormElementSetValue($o_password, "password") ;_IEFormSubmit($o_form) Exit i tried $all = _IETagNameAllGetCollection($oIE) but it just returns 1 any help would be appricated
  2. i tried the sample in help file but says Autoitx does not support 'URLDownloadToFile'
  3. i would like to retreive path and possabily parms of a selected $PID and or Prosses got to be a DLLcall or ObjCreate but dont know what dll or com to use any thoughts or google Key words would be appreciated thankx
  4. Using Beta Ver as of 6/24/05 i want a script like net send ,but works over WAN i tried the example in the help file works locally but wont connect to outside ip no errors just exits im on a lan but i set up port forwarding anybody got any ideas? TIA
  5. $outputfile = "C:\some folder\List of LAN puters.txt"Run(@ComSpec &' /c net view > "'& $outputfile &'"', "", @SW_HIDE)
  6. I have a compiled script GUICreate ("List",430,280,175,5) $list_1 = GUICtrlCreatelist("",30,40,380,210) GuiSetState( ) While $msg <> -3 Sleep(20) Wend exit But i need to update the listbox from another script . Any ideas Thanks in advance Q
  7. i would like to change the ver info and description is this possible Thanks in advance P.S. Shouts out to Autoit team for an exilent job on v3.0.103 love all the new options even though i just got used to v3.0.101 Keep up the good work!!
  8. #CS I would like to change the color of a lable but dont know what to put in Please help THANK YOU IN ADVANCE Here is an example code #CE ;===================== Opt("GUICoordMode", 1) Opt("GUINotifyMode", 1) GuiCreate("MyGUI", 392,266) $label_1 = GUISetControl("label", "i want to B red ", 20, 40, 260, 20) GUISetControlEx ( -1, 0,-1,"tip", $Color_RED ) $label_2 = GUISetControl("label", "i want to B blue", 20, 70, 260, 20) GUISetControlEx ( -1, 0,-1,"tip", $Color_BLUE ) GuiShow() While 1 sleep(100) WEnd Exit
  9. does any body have a color code table for GUICreateEx i really dont want to change the color but when i run it the background color is black i just wanted to display my icon Please help ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opt("GUINotifyMode", 1) GuiCreate("My-gui") GUICreateEx ( "help.exe", "" ,"my-icon") $button_1 = GUISetControl("button", "ok", 100, 115, 120, 50) GuiShow() While 1 sleep(100) $msg = GuiMsg(0) Select Case $msg = $button_1 msgbox(0,"","Thank you in advance") Wend exit ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  10. Can someone please show me a working example of GUISetControl("avi", "Sample_AVI.avi") i cant seem to get it to play thanks in advance
×
×
  • Create New...