06-10-2021, 09:03 AM
Hi aixzhou,
that is very old code from the VFX template.
If you check in widget configs (Admin view->Project Essentials->widget config) you'll see the button "RV Play" configuration for view Definition for stype sthpw/snapshot.
the button calls a script called rv/play
open the script editor (Admin view->Project -> script editor) and open script rv/play
the script runs in your browser and uses the old java applet to launch local commands and open RV on your computer (var applet = spt.Applet.get().
Java applets are no longer supported by any modern browser and the script can't work, to my knowledge there is no simple solution to this but writing a browser extension or running a local service listening to commands on a TCP port and sending this commands from the tactic server
that is very old code from the VFX template.
If you check in widget configs (Admin view->Project Essentials->widget config) you'll see the button "RV Play" configuration for view Definition for stype sthpw/snapshot.
the button calls a script called rv/play
open the script editor (Admin view->Project -> script editor) and open script rv/play
the script runs in your browser and uses the old java applet to launch local commands and open RV on your computer (var applet = spt.Applet.get().
Java applets are no longer supported by any modern browser and the script can't work, to my knowledge there is no simple solution to this but writing a browser extension or running a local service listening to commands on a TCP port and sending this commands from the tactic server