Hi, Noob here
I think this piece of software is amazing and open up so many possibilities. I have the need to cast a personal dashboard in the mornings to my TV. Currently there is no apps that can do this, so I am thinking of using my pc and this software to do the following on a voice command.
1. Open a url in chrome - have a card to do this already
2. Cast the chrome tab to 'family room tv' - can this be done? Some sort of script?
Open website and cast to chromecast
Re: Open website and cast to chromecast
Well, you can certainly have Push2Run open a website, but in terms of casting - as far as I know, you can only cast movie or sound files (or with the cast program - text files (which are actually just text files converted to sound files and then cast). The sound or movie files can be a file on your PC or a url.
If you can provide a list of the urls to the movie and or sound files you would like to cast, yes it should be simple to add those to a script to be cast in sequence.
For more on the cast program, please visit: https://rlatour.com/cast/
If you can provide a list of the urls to the movie and or sound files you would like to cast, yes it should be simple to add those to a script to be cast in sequence.
For more on the cast program, please visit: https://rlatour.com/cast/
Re: Open website and cast to chromecast
Thank you for the reply, I managed to find autohotkey. So you can put together the script in there - and send a key stroke or run the script.
This allowed me to cast a tab from chrome with a specific url. I then have a chrome add-in that can rotate urls to show different reports. Have not completely finished it but should work in theory. Autohotkey script is very low level (move mouse to x,y and click here etc) so could potentially fall over.
This allowed me to cast a tab from chrome with a specific url. I then have a chrome add-in that can rotate urls to show different reports. Have not completely finished it but should work in theory. Autohotkey script is very low level (move mouse to x,y and click here etc) so could potentially fall over.
-
- Posts: 7
- Joined: Wed Jan 16, 2019 10:58 pm
Re: Open website and cast to chromecast
Was curious if you got this worked out because I sure would use it i believe. If you feel like sharing, please do
Terry
Terry
-
- Posts: 1
- Joined: Wed Sep 09, 2020 6:53 pm
Re: Open website and cast to chromecast
Code: Select all
Set WshShell = WScript.CreateObject("WScript.Shell")
WScript.Sleep 1000
WshShell.SendKeys "%"
WScript.Sleep 1000
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
WshShell.SendKeys "{C}"
WScript.Sleep 1000
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 1000
WshShell.SendKeys "{ENTER}"
Last edited by NoobMasterTrojan on Wed Sep 09, 2020 7:03 pm, edited 1 time in total.