So, you’re telling me there is a chance 
Maybe I should explain what I’m trying to achieve - it’s actually quite simple. I want to make a “more apps” page with links that open the iTunes store. I was hoping to just have a webPopup with this in it: http://light-sleepers.com/otherbooks/otherbooks.htm (with graphics of course), but the links in the webPopup can’t open the iTunes store. And I need to be able to add more links to that window.
Then I thought of doing this:
local vars = require("vars")
local link1 = display.newRect(110, 20, 100, 100)
link1:setFillColor (100, 100, 100)
link1.alpha = 1
function link1:tap( event )
system.openURL( app1 )
end
link1:addEventListener("tap", link1)
--
local link2 = display.newRect(110, 130, 100, 100)
link2:setFillColor (100, 100, 100)
link2.alpha = 1
function link2:tap( event )
system.openURL( app2 )
end
link2:addEventListener("tap", link2)
where the “vars.lua” file would be DL-ed from the internet and define the variables “app1” “app2” and so on as the required addresses. That’s where this post started.
But if I can DL and XML file instead of LUA and get the addresses from there, that might work right?
Please feel free to suggest any other way I might achieve this, as I am just an animator in a programmer’s world 
@SUHADA I’ll look at the links you posted and see if any of them help, thanks. [import]uid: 102175 topic_id: 28938 reply_id: 116905[/import]