Jump to content

Mx63.dll - Combine Plugin


Guest Mixture63
 Share

Recommended Posts

This isnt working atall for me, no matter what I do.

C:\Documents and Settings\Asus\Desktop\Console\Au3Console.au3(39,28) : ERROR: ConsoleSetColor(): undefined function.
    ConsoleSetColor($fg+$bg*16)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~^
C:\Documents and Settings\Asus\Desktop\Console\Au3Console.au3(54,26) : ERROR: ConsolePrint(): undefined function.
    ConsolePrint($data&@CRLF)
    ~~~~~~~~~~~~~~~~~~~~~~~~^
C:\Documents and Settings\Asus\Desktop\Console\Au3Console.au3(68,30) : ERROR: ConsoleInput(): undefined function.
    Local $data = ConsoleInput(1)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
C:\Documents and Settings\Asus\Desktop\Console\Au3Console.au3(110,14) : ERROR: ConsoleFree(): undefined function.
    ConsoleFree()
    ~~~~~~~~~~~~^
C:\Documents and Settings\Asus\Desktop\Console\Au3Console.au3(111,16) : ERROR: ConsoleLoad(): undefined function.
    ConsoleLoad($t)
    ~~~~~~~~~~~~~~^
C:\Documents and Settings\Asus\Desktop\Console\ConsoleTest.au3 - 5 error(s), 0 warning(s)

The Au3Console.au3 IS there, And I havnt changed it atall. Heres the script

#include <Au3Console.au3>

;~ Open Console
$plugin = PluginOpen ("Mx63.dll") ;;Mx63.dll must be in same directory and script/exe!!!!!
ConsoleLoad("hi")

;~ Do Stuff
ConsolePrintLine("Hello. What is your name?")
$input = ConsoleInputLine()
ConsolePrintLine("Hi there, "&$input)

Sleep(5000);Sleep for 5 seconds to let user see output.

;~ Close Console
ConsoleFree()
PluginClose($plugin)
Exit
# MY LOVE FOR YOU... IS LIKE A TRUCK- #
Link to comment
Share on other sites

  • Developers

This isnt working atall for me, no matter what I do.

These are AU3Check errors because AU3check doesn't know these functions.

You can ignore the errors or tell AU3CHECK to ignore the plugin functionnames by adding:

#compiler_plugin_funcs=yourfuncs
Edited by JdeB

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

These are AU3Check errors because AU3check doesn't know these functions.

You can ignore the errors or tell AU3CHECK to ignore the plugin functionnames by adding:

#compiler_plugin_funcs=yourfuncs
Ah, Thanks.
# MY LOVE FOR YOU... IS LIKE A TRUCK- #
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...