
Code: Select all
set the backgroundImage of this stack to "http://domain.com/image.jpg"
Code: Select all
put url "http://domain.com/image.jpg" into tImage
set the backgroundImage of this stack to tImage
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
set the backgroundImage of this stack to "http://domain.com/image.jpg"
Code: Select all
put url "http://domain.com/image.jpg" into tImage
set the backgroundImage of this stack to tImage
I've read about it in the paste, but haven't yet made a stack to try it out. Any advice or tips appreciated.sefrojonesGAda40 wrote:Are you familiar with a groups ability to "Behave like a background"?
Code: Select all
on mouseUp
put "http://runrev.com/wp-content/uploads/2013/04/Gracemount-Girls-LiveCoding-slim.jpg" into tPath
put url (tPath) into tImage
put tImage into image 1
set the backgroundPattern of this card to the short id of image 1
end mouseUp