> Can you declare a variable from a variable in Transcript? > Like the following... > > put "randomVariableName" into newVariableToCreate > create variable newVariableToCreate
Just curious... for what purpose? Unless you have explicitVariables turned on, you don't need to predeclare your variables before you use them. That said, if you *do* have explicitVariables turned on, you might be able to get away with this: put "randomVariableName" into newVariableToCreate do "local" && newVariableToCreate Although I haven't tried it... Ken Ray Sons of Thunder Software Email: [EMAIL PROTECTED] Web Site: http://www.sonsothunder.com/ _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
