Script to select netflix on a panasonic TV

Hi All

I’m trying to create a script to select netflix from a button on the remote Ive built for my Panasonic TV.

The script is:

alias: outside netflix
sequence:
  - service: remote.send_command
    data:
      num_repeats: 1
      delay_secs: 1.5
      hold_secs: 0
      command:
        - apps
        - right
        - enter
    target:
      entity_id: remote.outside_tv

The commands I use are all valid and can be selected manually from my HA remote.

When I run the script it goes as far as the first action and then no further.

What Am I missing? Any help will be gratefully received.

Try this:

alias: outside netflix
sequence:
  - service: remote.send_command
    data:
      command:
        - apps
    target:
      entity_id: remote.outside_tv
  - delay: 1
  - service: remote.send_command
    data:
      command:
        - right
    target:
      entity_id: remote.outside_tv
  - delay: 1
  - service: remote.send_command
    data:
      command:
        - enter
    target:
      entity_id: remote.outside_tv

Magic. I had to increase the delay but it works a treat. Thanks for your help.