// Henjin Referencing Demo // (c) 2008, Notequalsoft Games // http://www.notequalsoft.com/games/henjin/ // This demo demonstrates the concept of referencing an object from a variable name by // using the $ qualifier. // setup system System.Size 640 480 System.Continue true System.CreateTextBox TextBox 0 0 640 480 TextBox.DisplayAtOnce true System.CreateImage WaitImage 619 460 18 17 "waiting.gif" System.WaitImage WaitImage // set the name of the WaitImage object to a variable set name = System.WaitImage // display the WaitImage's Src value directly and by variable reference TextBox.Text "WaitImage.Src = {WaitImage.Src}\n \n$name.Src = {$name.Src}" react