
Re: Edit/Combine Text Variables?
ckeyes888 wrote:tell application "IndigoServer"
set Forecast_Short to (value of variable "Yahoo_tomorrow_forecast") & " " & (value of variable "Yahoo_tomorrow_max_temp") & "/" & (value of variable "Yahoo_tomorrow_min_temp")
end tell
try this...
tell application "IndigoServer"
set the value of variable "Forecast_Short" to (value of variable "Yahoo_tomorrow_forecast") & " " & (value of variable "Yahoo_tomorrow_max_temp") & "/" & (value of variable "Yahoo_tomorrow_min_temp")
end tell