list of triggers

Hi!

where can i find the list of triggers i can use?

<WhilePressed>
<WhileVisible>
<WhileScrollable>
...

i am looking for something to trigger an event when something is shown (i don’t mean visible i mean when there is nothing on top of it) to be able to reload the page when the user scrolls up and he reaches the top of the scroll (facebook style)):

<Panel>
    <ScrollView>
        <Items...>
       </ScrollView>

    <Panel Height="10 Alignment="Top">
        <Text Value="one" TextAlignment="Center"/>
    <Panel/>

    <Panel Height="10 Alignment="Top" Margin="0,10,0,0">
        <Text Value="two" TextAlignment="Center"/>

        <!-- I want something to happen when user scrolls up when -->
        <!-- he is on the top so those 2 panels become "visible" -->

        <WhileWhatever>
        </WhileWhateve>
    <Panel/>
   </Panel>

I found the list… but still don’t know if it’s possible to do what i want:

https://www.fusetools.com/docs/fuse/triggers/trigger

and finally i found an example :slight_smile:

https://www.fusetools.com/examples/pull-to-reload