i have the following code

-- Stack Script
global g_smtp_nextTransaction, CRLF

on openStack
  put empty into g_smtp_nextTransaction
  put numToChar(13) & numToChar(10) into CRLF
end openStack

-- Button 1 code
on mouseUp
  put "CONN" into g_smtp_nextTransaction
end mouseUp

-- Button 2 code
on smtp_conn
  put "next: " & g_smtp_nextTransaction & linefeed after field "debug"
end smtp_conn

(yes, that's my debug code)

as far as i can tell, the code looks fine and should write "next: CONN" at the end of 
the field but what gets written is "next: g_smtp_nextTransaction"..

any thoughts or ideas here? yes this is a show stopper for my emailer that i want to 
upload to RunRev for the website

--
-Sean

Reply via email to