Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/17/2024 in all areas

  1. I took a quick look at the AutoIt part of the CEF code. the V8 engine has a eval function, so it is possible to inject JavaScript into the page. But i could not see any easy way to communicate to AutoIt from the JavaScript side, and that might be a deal breaker. Exactly right, i wanted to have easy UI and all computers have a browser that can handle all that AutoIt only handles the HTTP requests and au3 or PHP scripts (depending on how it is setup) No worries Your wish for a simple way to define styled windows and controls is something I am periodically looking into and have a few projects trying to solve this in different ways (most not yet ready for use). My HTTP server is one of them, and my Manga server project was a proof of concept
    1 point
  2. It's kinda simple. All arguments of a function are separated by a comma. Even if a variable is an array and contains multiple data it doesn't mean that when this variable it's passed to a function it takes up more than a single parameter. See example below: $Int = 48 $String = "This is a test" Dim $Array[3] = ["I can hold multiple data", "But I am a single variable", "And I am passed as a single parameter to a function"] Test($Int, $String, $Array) Func Test($Param1, $Param2, $Param3) ConsoleWrite(VarGetType($Param1) & @CRLF) ConsoleWrite(VarGetType($Param2) & @CRLF) ConsoleWrite(VarGetType($Param3) & @CRLF) EndFunc
    1 point
  3. Thanks for sharing. Do add to your description that it uses AutoItObject.au3 and where to get it from.
    1 point
×
×
  • Create New...