OH3: open page using rules

Hello, i have a question.
Is it possible to switch to a page using rules?
I want to switch to a page (or open a popup) with a camera image when motion is detected.

Thanks

Hi Manfred,

Did you get this working? I have the same question :wink:

Hi,
no unfortunately I have not yet found a solution.

Hi,
i found a workaround.
I added a block at the top of my overview page with columns for each camera and then hide this columns until movement is detected.

blocks:
  - component: oh-block
    config: {}
    slots:
      default:
        - component: oh-grid-row
          config: {}
          slots:
            default:
              - component: oh-grid-col
                config:
                  visible: =items["ZoneminderMonitorGarage_Alarm"].state === 'ON'
                slots:
                  default:
                    - component: oh-image-card
                      config:
                        title: Garage
                        url: http://172.16.0.30:8444/zm/cgi-bin/nph-zms?mode=jpeg&monitor=2
              - component: oh-grid-col
                config:
                  visible: =items["ZoneminderMonitorHaustuer_Alarm"].state === 'ON'
                slots:
                  default:
                    - component: oh-image-card
                      config:
                        url: http://172.16.0.30:8444/zm/cgi-bin/nph-zms?mode=jpeg&monitor=1

Hi Manfred,

Nice workaround. I will give it at try!

Thanks