Re: RevMedia 4.0 - download installers
Posted: Fri May 17, 2024 9:18 am
You have to right-click and 'allow to open as an application'
A forum for xTalk discussion
https://forums.openxtalk.org/
You have to right-click and 'allow to open as an application'
Is that a fact?You have to right-click and 'allow to open as an application'
Code: Select all
"revolution_media: ELF 32-bit LSB executable"
Code: Select all
put the seconds into tSecs
convert tSecs to dateitems
put item 7 of tSecs into tDayEnum
if tDayEnum is "1" then put "Sunday" into tDayEnum
if tDayEnum is "2" then put "Monday" into tDayEnum
if tDayEnum is "3" then put "Tuesday" into tDayEnum
if tDayEnum is "4" then put "Wednesday" into tDayEnum
if tDayEnum is "5" then put "Thursday" into tDayEnum
if tDayEnum is "6" then put "Friday" into tDayEnum
if tDayEnum is "7" then put "Saturday" into tDayEnum
answer "here's another test, at " & the short time & " on " & tDayEnum
Sure, the GitHub Repo for that Github hosted page is here:tperry2x wrote: ↑Sat Jun 01, 2024 6:52 pm To that end, is it possible to have a file dump of everything that makes 'https://openxtalk-org.github.io/OpenXTalk-Playground/' tick? If this was being run locally from choosing file>open in the browser, and loading the html file to start, then this would be a lot faster. It'd be a half-way-house as a compromise. Platform agnostic, yet does not require internet access to use it.
I'm pretty sure I've got developer mode on (I'm actually running this in the developer edition of Firefox).OpenXTalkPaul wrote: ↑Sun Jun 02, 2024 4:32 am One thing about running this from local directory in a browser, you may have to turn on developer mode and disable its 'local file restrictions' otherwise the Engine's JS file might not load.
That's correct file: index.htmltperry2x wrote: ↑Sun Jun 02, 2024 7:28 amI'm pretty sure I've got developer mode on (I'm actually running this in the developer edition of Firefox).OpenXTalkPaul wrote: ↑Sun Jun 02, 2024 4:32 am One thing about running this from local directory in a browser, you may have to turn on developer mode and disable its 'local file restrictions' otherwise the Engine's JS file might not load.
I don't get any errors, but I also don't get any further than this either:
spinning-forever.gif
I hope I'm opening the right file. I couldn't see anything else that looked openable by a browser in that archive.
I think you are conflating two different goals here, you wanted to load that webstack from local directory, so you have to disable those restrictions regardless of which browser engine you're using, I believe they would all block loading external .JS files loading from relative paths on disk unless explicitly allowed to. For security reasons that should hold true for any website run from disk that has external script files.tperry2x wrote: ↑Sun Jun 02, 2024 6:05 pm Hmmm. Okay, that does indeed work.
I generally use an appimage version of a browser for any testing like this, so it's sandboxed from the rest of the system.
It's not as simple as I'd hoped though. What I'd hoped to offer was a smooth, seamless way (eventually) for someone running xtalk in a browser. It's probably going to be an instant show stopper as many target users won't go changing settings in about:config.
So, if it's hosted online, it'll cut out that step but then the issue of the need for an active internet connection becomes apparent. So that might be a deal breaker too.