Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/04/2013 in all areas

  1. Jon

    AutoIt v3.3.9.15 Beta

    File Name: AutoIt v3.3.9.15 Beta File Submitter: Jon File Submitted: 04 Aug 2013 File Category: Beta 3.3.9.15 (4th August, 2013) (Beta) AutoIt: - Added: DriveGetType() updated so that it can detect SSD, and also bus types (SATA, USB, etc.). UDFs: - Added: Graphic SmoothingMode constants (GDIPlusConstants). - Added: _GDIPlus_CustomLineCapCreate, _GDIPlus_BitmapCreateFromScan0 functions. - Changed: _GDIPlus_GraphicsGetSmoothingMode, _GDIPlus_GraphicsSetSmoothingMode functions. Click here to download this file
    1 point
  2. Wombat. Use the #region/#endregion directives to create foldable zones in your script. They are nestable - I have a 6000+ line script which is 17 lines folded and with no function more than 3 clicks away. M23
    1 point
  3. well i have 10,000 line script in work and it starts immediately. it depends where you put the configuration stuff and how complex the gui is. but if you do it in a smart way, it starts immediately. and you can add #region as often as you like that will structure your script and is collapsible and take a look at UEZ' >loading animations. they are fantastic.
    1 point
  4. You can make this way: #AutoIt3Wrapper_Res_Fileversion=1.0.0.0 $file_version = FileGetVersion(@ScriptFullPath) You can probably also use #AutoIt3Wrapper_Run_Before directive to modify your script headers.
    1 point
  5. Added a new chapter 4 about implementing a model loader for Wavefront (OBJ) 3D models. This is a picture of one of the models. A Mitsubishi A6M Zero aircraft with and without a texture. This is a picture from a small example that shows how to use the models. And this is a picture of the provisional only large model (Apollo Lunar Module, 300.000 vertices, 35 secs to load). Added a new group of OpenGL 1.1 examples: SamplesOpenGL 1.1glCommands. See section 1.4.
    1 point
  6. After reading your two statements, I have to say that I agree with them. But I need a tool to check for and download updates of these tools. So I have to make myself. So I'll try ..... And of course I will share the results of my work.
    1 point
  7. AZJIO

    Web Pad (update)

    For me began to work after replacement Send("^v") --> Send("+{ins}") Send("^c") --> Send("^{ins}") It is possible to make it without a clipboard
    1 point
  8. Try this: #include <IE.au3> ConsoleWrite("Launching initial instance" & @CRLF) $href = "www.autoitscript.com" $oIE = _IECreate($href) ConsoleWrite("Loading 2nd tab" & @CRLF) $href = "www.yahoo.com" OpenNewTab($oIE, $href) ConsoleWrite("Loading 3rd tab" & @CRLF) $href = "www.google.com" OpenNewTab($oIE, $href) ConsoleWrite("Collecting IE instances" & @CRLF) Local $oTabs[1] Local $i = 1 While 1 ConsoleWrite("Attaching instance " & $i & @CRLF) $oTabs[$i - 1] = _IEAttach($oIE, "instance", $i) If @Error = $_IEStatus_NoMatch Then ReDim $oTabs[$i - 1] ExitLoop EndIf ReDim $oTabs[$i + 1] $i += 1 WEnd ConsoleWrite("$i = " & $i & @CRLF) ConsoleWrite(UBound($oTabs) & " instances detected!" & @CRLF) For $i = 0 To UBound($oTabs) - 1 ConsoleWrite("Getting text from instance " & $i + 1 & @CRLF) $oText = _IEBodyReadText($oTabs[$i]) MsgBox(0, "Tab " & $i + 1, $oText) Next Func OpenNewTab($oIE, $href) Const $navOpenInNewTab = 0x0800 Const $navOpenInBackgroundTab = 0x1000 Local $oIE2, $iTimer $oIE.navigate ($href, $navOpenInNewTab ) ConsoleWrite("Waiting for instance to be visible" & @CRLF) $iTimer = TimerInit() Do $oIE2 = _IEAttach($href, "URL") If @error = 0 Then ConsoleWrite("Instance found; performing _IELoadWait" & @CRLF) _IELoadWait($oIE2) ExitLoop EndIf Until TimerDiff($iTimer) > 30000 EndFunc
    1 point
  9. storme

    Web Pad (update)

    Great idea! My replies even when short take ages so I've lost MANY replies then either posted some 1/2 baked answer or just given up. So I've started using Word, which is an overkill and it doesn't have nifty Code & link buttons. Thanks for sharing! John Morrison
    1 point
  10. Melba23

    Mark100

    Unfortunately for you when a Mod asks you questions on this forum, you had best answer - you saw what happens when you do not. And then abusing the Mod in question via PM because you could not be bothered to answer the questions he asked and so got your thread locked is not the way to a happy life here. Take 3 days to think about how you might behave when and if you return. Continue as you are and we might well decide we can do without you. M23
    1 point
  11. Jon

    Forum Upgraded

    I've upgraded the forum software to IPB 3.3.3. What's new (mostly performance/backend stuff): http://www.invisionpower.com/suite/whats_new.php As usual, AutoIt code tags have been broken. I'll look into it.
    1 point
  12. hi, can i set the page setup Orientation after excel creation and before write text in cells? CODE$oExcel = _ExcelBookNew(0) _ExcelColWidthSet($oExcel,1,15) _ExcelColWidthSet($oExcel,2,15) _ExcelColWidthSet($oExcel,3,15) _ExcelColWidthSet($oExcel,4,15) _ExcelColWidthSet($oExcel,5,20) _ExcelColWidthSet($oExcel,6,20) _ExcelColWidthSet($oExcel,7,20) _ExcelFontSetProperties($oExcel, 1, 1, 1, 7, TRUE, False, False) ; set landscape _ExcelWriteCell($oExcel,"DATE",1,1) Thanks
    1 point
×
×
  • Create New...