Jump to content

Simple question(s)


Recommended Posts

Greetings,

I have an easy question regarding variables and their scopes.

Example:

AutoItWinSetTitle("Example")

Opt("TrayAutoPause", 0)
Opt("TrayIconDebug", 1)
Opt("MustDeclareVars", 1)

Global $Log = 0
; Is this now declared and initialized? Should I use OnAutoItStart() to initalize global variables?

While 1
   Sleep(1000)
WEnd

Func define()
   Local $defPath

   Local $defPath = Call("SomeFunction")
      If $Log == 1 Then
; Can I call this variable since it's declared already in a global scope?
         MsgBox(0,"Log","Actually, I would write to a log file, but you get a message box for the example!")
      EndIf
EndFunc

Thanks guys, I'm really bad at coding/dumb!

Edited by Vexus
Link to comment
Share on other sites

Is this now declared and initialized? Should I use OnAutoItStart() to initalize global variables?

Yes and no, better to put them at the top of the script. The other thing might cause warnings by au3check.

Can I call this variable since it's declared already in a global scope?

Yes

Ever wanted to call functions in another process? ProcessCall UDFConsole stuff: Console UDFC Preprocessor for AutoIt OMG

Link to comment
Share on other sites

This Global $Log = 0 is fine, it will be declared and usable everywhere within your script.

This $Local defPath and this $Local defPath = Call("SomeFunction") are defined incorrectly, I'm assuming it's a case of mistyping where you put the "$" on them. You're declaring the variable $defpath twice, that's not correct, you only need to declare it once. Also, you don't NEED to use the Call command to run a function, you just need to run it like this, SomeFunction(), but using Call is ok as long as you don't need to use a ByRef parameter in the function.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

I found the culprit! It's a pretty stupid moment, but a certain function that I referenced earlier was registering 'before' the necessary variables were declared/initialized! Hence the error, duh!

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...