Script to do some things and then navigate to new dashboard

I am trying to replace Logitech Harmony remote and have been pretty successful so far.

Main Dashboard has “activities” like “Watch DirecTV”. That is a picture card that calls a script. The first thing the script does is perform action “browser_mod.navigate” to a sub-panel that has all the DirecTV remote mapped (along with other things). Then switch on receiver, select input, etc…

This works great except ALL browsers registered with browser_mod switch to the same panel.

I just need away to tell browser_mod to only change path on the current browser.

Seems this is a “browser” call according to this (ref: link):

  • A server call will perform the service on ALL REGISTERED BROWSERS.
  • A browser call will perform the service on THE CURRENT BROWSER, i.e. the browser it was called from.

I can’t get it to work.

Here is a snipet of my script

alias: MBR - Watch DirecTV
sequence:
  - action: browser_mod.navigate
    data:
      path: /lovelace/master-bedroom-directv
  - action: denonavr.get_command
    target:
      device_id: 1d181e13a88f92ddef6d7193bf8bef6b
    data:
      command: /goform/formiPhoneAppDirect.xml?PWON
    alias: Turn on Receiver
  - alias: Switch to DirecTV Input
    action: denonavr.get_command
    target:
      device_id: 1d181e13a88f92ddef6d7193bf8bef6b
    data:
      command: /goform/formiPhoneAppDirect.xml?SISAT/CBL

bump! still need help with this