1
votes

I created an ioslides project with shiny runtime in RStudio.

For practical reasons, i want to use the browser for presentation instead of RStudio's viewer. Is there a way to specify (e.g. in the markdown document header) which browser to use for displaying of the HTML file?

1

1 Answers

0
votes

Let's say you want to use firefox, then locate it and put it the options:

options(browser = "C:/Program Files/Mozilla Firefox/firefox.exe")

like this:

runApp(list(ui = ui, server = server),host="192.168.xx.xx",port=5013, launch.browser = TRUE)