Saving all files in one folder

So I’ve looked all over for this and I haven’t been able to find a solution.

I want to know how to save all of my files in the same folder. One of the portals that I make banners for requires for all files to be sent like that.
duck.zip (74.0 KB)

here’s an animation as an example. How would I put this all in one folder?

Dump the index.html into the Duck.hyperesources folder.

Then edit the line in the index.html’s code
where it is var h="Duck.hyperesources"

To be

var h="."


If you were have the normal index html

You would change

<div id="Duck_hype_container" style="margin:auto;position:relative;width:768px;height:1024px;overflow:hidden;" aria-live="polite">
		<script type="text/javascript" charset="utf-8" src="Duck.hyperesources/duck_hype_generated_script.js?94585"></script>
	</div>

to

<div id="Duck_hype_container" style="margin:auto;position:relative;width:768px;height:1024px;overflow:hidden;" aria-live="polite">
		<script type="text/javascript" charset="utf-8" src="duck_hype_generated_script.js?94585"></script>
</div>

In both cases you would have to make sure that any linked resources have the Duck.hyperesources/ in the path removed.

2 Likes

Thank you! that worked perfectly!