Gud day guys. im new in this forum and also new to shadowbox script. we have same problems in loading a html file. but i find a simple solution in loading it. your script will not load any object because you dont declare any players. in order to automatically load a file or object you need to declare or open a function that calls the type of file you are calling. example you are calling a html file. then you need to call a player for that html file.
here's the script(i just added a player function and remove the skip setup)
<script>
window.onload = function(){
Shadowbox.init({
// let's skip the automatic setup because we don't have any
// properly configured link elements on the page
//skipSetup: true
players: [ 'html']
});
// open a welcome message
Shadowbox.open({
player: 'html',
title: 'Program Alert',
content: '<url="
http://www.microsoft.com">',
height: 450,
width: 450
});
};
the players:['html'] calls the function for the html objects. then that should work.
hope this script will help.