Page 2 of 2

Re: RNORadio

Posted: Fri Feb 13, 2026 7:56 am
by jPV
NathanH wrote: Thu Feb 12, 2026 7:22 pmI'd be interested to know how you embedded the binary and ran it from within Hollywood. Thanks.
Simply just linking the external program as a file in Hollywood executable with the @FILE preprocessor. And then at the program startup I write the file to a temporary location (which I clean at exit then).

Like this:

Code: Select all

@FILE 2, "path/to/binary"
StringToFile(ReadBytes(2), "T:MyTempDir/binary")
And then use Execute() or Run() to run the temp file from Hollywood.

Re: RNORadio

Posted: Sat Feb 14, 2026 11:49 pm
by NathanH
Thanks, clever!

NathanH