Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/15/2024 in all areas

  1. ioa747, You have NO idea how grateful I am! All because of a five character word...I have spend the better part of ten+hours on this endeavour!! It would "appear" ...[...and please correct me if I wrong here...though I believe NOT...]...In the original Function, though a Global variable was declared, I assigned that Global variable as Local! what a "DuFuss!" Anyhow...we move on and hopefully...learn from our mistakes!! Thanks again, ioa747...you have come to my rescue again! Appreciated!
    1 point
  2. No like this ; _BrowseForFolder.au3 ; ----------------------------------------------- #include <FileConstants.au3> #include <MsgBoxConstants.au3> ; ----------------------------------------------- Opt("MustDeclareVars", 1) ; ----------------------------------------------- Global $_MasterEdlFile = "" ; This global variable must always be enabled! ; ----------------- Global $_sMasterType1Edl = "Type1.edl" Global $_sMasterType2Edl = "Type2.edl" Global $_sMasterType3Edl = "Type3.edl" Global $_sMasterType4Edl = "Type4.edl" ; ----------------- Global $g_SetName = "" ; ----------------------------------------------- _BrowseForFolder() ConsoleWrite("$g_SetName=" & $g_SetName & @CRLF) ; ----------------------------------------------- ... ... and this ; _EnterSetName.au3 ; ----------------------------------------------- #include <FileConstants.au3> #include <MsgBoxConstants.au3> ; ----------------------------------------------- Opt("MustDeclareVars", 1) ; ----------------------------------------------- Global $_MasterEdlFile = "" ; This global variable must always be enabled! ; ----------------- Global $_sMasterType1Edl = "Type1.edl" Global $_sMasterType2Edl = "Type2.edl" Global $_sMasterType3Edl = "Type3.edl" Global $_sMasterType4Edl = "Type4.edl" ; ----------------- Global $g_SetName = "" ; ----------------------------------------------- _EnterSetName() ConsoleWrite("$g_SetName=" & $g_SetName & @CRLF) ; ----------------------------------------------- ... ...
    1 point
  3. Completely agree, it was just for sake of the example, i just picked something fast, It's not what OP needed so he wont be using it, only the button part he needed, but nice call, I'll edit the example if someone else should read it and use it.
    1 point
×
×
  • Create New...