this works great
Code: Select all
get url "myurl/folder/folder/text.txt"
Code: Select all
local tURL
put "myurl/folder/folder/" & fld "Variable" & ".txt" into tURL 
get url tURL 
help
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
get url "myurl/folder/folder/text.txt"
Code: Select all
local tURL
put "myurl/folder/folder/" & fld "Variable" & ".txt" into tURL 
get url tURL 
Code: Select all
on mouseUp
  put "http://www.major-k.de/" & fld "Variable" & ".html" into tURL
  get url tURL
  put it into fld "test"
end mouseUpCode: Select all
answer tURL