Custom Query
Results (28 - 30 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1089 | No Bug | #AutoIt3Wrapper_Run_Tidy=y, tidy also activated at run-script instant. | Jos | anonymous |
Description |
when the line '#AutoIt3Wrapper_Run_Tidy=y' is added to a script. Tidy is also run, when you just run[F5] the script from scite4autoit. |
|||
#2243 | Rejected | #Include <%Environment variable path%\Script.au3> | wretched | |
Description |
That would be awesome if AutoIt could include files that have an environment variable path. eg. #include <%Environmentvariablepath%\Script.au3> This would make it less tedious to update and maintain that registry key. |
|||
#189 | Fixed | #Include Conflict: Constants.au3 + ScrollBarConstants.au3 = Duplicates | Gary | Saunders <admin@…> |
Description |
#include <Constants.au3> #include <ScrollBarConstants.au3> C:\PROGRA~1\AutoIt3\Include\ScrollBarConstants.au3 (45) : ==> Can not redeclare a constant.: Global Const $OBJID_HSCROLL = 0xFFFFFFFA Global Const ^ ERROR They both set $OBJID_HSCROLL, $OBJID_VSCROLL, and $OBJID_CLIENT. Lines 273-275 in Constants.au3 and lines 45-47 in ScrollBarConstants.au3 I noticed this when I went to use _GUICtrlEdit_Scroll(), and so included ScrollBarConstants.au3, but already had Constants.au3 included for other purposes. For now I'm just declaring the particular constants I need and not including the scrollbar file. |