Скрипт нужно обозвать Link.ImageFiles, вместо 1000х1000 подставить нужный размер в пикселах
theVal = SELF
if (not (theVal.IsNull)) then
if (File.Exists(theVal.AsFileName)) then
i = ImageWin.Make(theVal.AsFileName, theVal)
i.SetScaled(false)
i.Open
i.resize(1000,1000)
else
MsgBox.Warning("File "+theVal+" not found.","Hot Link")
end
end