Hi Henrik, I want to thank you for your increased participation in the forums, it's been helpful!
Over the past month I have been moving my game from a private server to GameFS. It has been interesting and more challenging than it should have been IMHO.
The doc's
https://playerio.com/documentation/services/gamefs/
seem a bit behind the times in that I can't find hide nor hair of Permanent Urls or Tiny Loaders in the control panel.
Plus there just needs to be a LOT more examples.
The setup of the actual files in GameFS eluded me for a while too.
Here is how mine is setup. Not sure why I have to have a top level folder call VoxelVerse, and then I needed a subfolder called VoxelVerse with the actual info in it.
https://imgur.com/a/Gzjr5
And just today did I figure out that I should be pointing at the playerIO site, and not the CDN.
So here is an example of my index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<style type="text/css">
html, body { height:100%; overflow:hidden; }
body { margin:0; }
</style>
<title>VoxelVerse - Release</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<link rel="shortcut icon" href="icon.ico">
<embed src="https://r.playerio.com/r/MY_GAME_ID/VoxelVerse/VoxelVerse.swf" width="100%" height="100%" wmode="direct" menu="false" scale="noScale" allowFullscreen="true" allowFullScreenInteractive="true" allowScriptAccess="always" >
<embed/>
</object>
</head>
</html>
And here is how I configured my google domain.
https://imgur.com/a/hxGDr
So maybe this will help someone else.
I am doing something wrong? or how can I make it better?
Now that browsers are blocking flash, how do I detect that and redirect to a video or webpage?