would it be ok if I make a "shareable exe" which is a striped down of the editor that only "plays" an animation. Then copy all the animation data into the end of the sharable exe data.

Finaly to find the data I simply search for a magic string that is used to begin the animation data block (around 256 char to be as unique as possible) and calculated in the shareable exe so that the magic string does not appear anywhere in the shareable exe without it animation block being copied.

All of this is so the end user can create an animation and export a "shareable" exe file which does not require any installation and related but one file for another user to open to view the animation.

I tried a hello world on a linux machine and it worked. Will it work on a windows machine? and is this a good or bad idea?