Custom Query (3927 matches)
Results (301 - 303 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3694 | No Bug | WinGetSize function missing from AutoItX3_64 | ||
| Description |
I am using AutoItX3_x64.dll (AutoItX3.dll does not load). I tried the WinGetSize function but it raises an Attribute Not Found error. I scanned the dll with DLL Export Viewer and the x_64 does not have the WinGetSize function. (AutoItX3.dll DOES include the function.) It seems as if it was left out of the dll by mistake, I'm assuming. can you please add it back in? Thanks. import win32com.client
ai = win32com.client.Dispatch("AutoItX3.Control")
ai.WinGetSize("DLL Export Viewer")
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "C:\Users\dave\workspace\client\venv\lib\site-packages\win32com\client\dynamic.py", line 527, in __getattr__
raise AttributeError("%s.%s" % (self._username_, attr))
AttributeError: AutoItX3.Control.WinGetSize
|
|||
| #3693 | Fixed | Invalid SciTEConfig_Source.zip File on downloads page | ||
| Description |
Issue: The SciTEConfig_source.zip file that is located here https://www.autoitscript.com/autoit3/scite/download/SciTEConfig_Source.zip causes an error 0x80004005 when unzipped. The file unzips fine with 7zip, so I think this is because it is encrypted with AES-256. (Windows 10 x64) |
|||
| #3692 | Wont Fix | SciTE v. 4.1.2.0 - the function luaL_register has removed | ||
| Description |
Because luaL_register has removed, it's impossible to use external dll inside SciTE (i.e. shell.dll, lfs.dll, gui.dll).
So a lot of helpful additions for SciTE, written by several users, are useless over night.
To reproduce:
Copy one of this dll files in your user lua directory (i.e. shell.dll:https://scite-ru.bitbucket.io/pack/tools/LuaLib/shell.html).
Create in SciTEUser.properties: local sUserLua = props["Lua.User.Scripts.Path"]
LUA_USER_PATH = sUserLua .. "\\?.dll;" .. sUserLua .. "\\?\\?.dll;"
package.cpath = LUA_USER_PATH .. package.cpath
require "shell"
if shell then
table.foreach(shell, print)
end
Restart SciTE. In older versions of SciTE, all components of the shell.dll will print out while starting SciTE. But now you get an error message "procedure entry point 'luaL_register' not found in 'shell.dll'". This is not the truth - the entry point is missing in "SciTE4.1.2.0.exe". Was removing LuaL_register an oversight or intention? If the latter is true, why? |
|||
