Jump to content

yuha

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Arab Emirates

Everything posted by yuha

  1. Get this Editor. Check out the tools menu. That's all you need. Prerequisite is Autoit3. Latest stable version is AutoIt v3.0.102. Check out Aut2Exe. Once you compile the au3 script into an executable, you do not need autoit3.exe. The stub AutoItSC.bin is imbedded in the complied script, which is enough to run it standalone. Hope these help.
  2. Couple of pointers Use Opt("TrayIconDebug", 1) this will show the current script line in the tray icon. This helps to debug. Use AdlibEnable() function to handle unforeseen errors. Some program installations do not show up certain screens if dependencies are not met. Autoit forum is here. Hope it helps
  3. Not exactly sure it this is what you asked for. To show a tip in the taskbar you could AutoIt. It is simple Here is a quick sample script. ;Only one copy loads $G_SZVERSION = "V1" If WinExists($G_SZVERSION) Then Exit AutoItWinSetTitle($G_SZVERSION) ;$CmdLine[0] contains number of arguments ;CmdLine[1] contains the first argument TrayTip("Title here", $CmdLine[1], 5, 1) Sleep(9999) TrayTip("clears tip from tray","",0) TrayTip("", $CmdLine[1], 5) Sleep(9999) Call it lets says tip.au3 Compile the script into an executable and use it in your command script. Attached is the compiled au3 script. Use it like tip "Some information here" where tip is the compiled executable and "Some information here" is the information to display. Hope it helps. Start here if you are new to AutoIt. AutoIt Home Tip.exe
  4. For Quicktime 6.3 Extract these file from install package QuickTimeInstallCache.qdat QuickTimeInstaller.exe Create a file QuickTimeInstaller.ini in the same folder and insert these [QTSETUP] license_option=0 no_dialogs=true registration_dialog=false supress_speed_dialog=true install_qtjava=false install_qd3d=true show_sample=false show_readme=false show_programfolder=false install_qtinfo=true This from the google. Don't have the site bookmarked. cheers.
×
×
  • Create New...