Jump to content

Recommended Posts

Posted

Lets say we've got nested functions.

_Alpha()

Func _Alpha()
  $a = 1
  _Bravo()
EndFunc

  Func _Bravo()
     msgbox(0,"",$a)
    _Charlie()
  EndFunc

    Func _Charlie()
      msgbox(0,"",$a)
    EndFunc

As far as I know, the only way to get the above msgbox() in both _Bravo() and _Charlie() to work properly, either $a = 1 must be declared as Global scope, or $a must be passed to _Bravo() and then passed again to _Charlie(). Is there another way?

  Reveal hidden contents

 

Posted (edited)

You can use global variables or submit a parameter to the function:

_Alpha()

Func _Alpha()
  Local $a = 1
  _Bravo($a)
EndFunc

  Func _Bravo($a)
     msgbox(0,"",$a)
    _Charlie($a)
  EndFunc

    Func _Charlie($a)
      msgbox(0,"",$a)
    EndFunc

Br,

UEZ

Edited by UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Posted

  Quote

Is there another way?

Maybe Herez one

EnvSet('a','nothing')
_Alpha()
Func _Alpha()
  _Bravo()
EndFunc
  Func _Bravo()
     msgbox(0,"",EnvGet('a'))
    _Charlie()
  EndFunc
    Func _Charlie()
      msgbox(0,"",EnvGet('a'))
    EndFunc

My code:

  Reveal hidden contents
PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.

Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners.

MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. 

Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression.

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
  • Recently Browsing   0 members

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