I want to set my button to get its image from the “assets” folder that’s located in the project folder, but I can’t figure out how to get it to work.
playBtn = widget.newButton{
label=“Play Now”,
labelColor = { default={255}, over={128} },
baseDir = “assets”,
defaultFile=“button.png”,
overFile=“button-over.png”,
width=154, height=40,
onRelease = onPlayBtnRelease
}
I’ve also tried ‘baseDir = “\assets”,’ and that didn’t work.
