# Alert issue or another get around

**URL:** https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875
**Category:** Questions about Thunkable X
**Created:** [June 18, 2022, 7:14pm UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875 "2022-06-18T19:14:59Z")
**Posts on this page:** 12
**Page:** 1

<div class="post-metadata">

### Author: ![bibbi](https://avatars.discourse-cdn.com/v4/letter/b/db5fbb/32.png) [@bibbi](https://community.thunkable.com/u/bibbi)
#### Post date: [June 18, 2022, 7:14pm UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/1 "2022-06-18T19:14:59Z")

</div>

hi  
I use several screens and it seems that the alert messages are linked to the screen where they were created or am I wrong?  
in my case I want the user to be notified after a backup that it has been made  
if so I would have to put everything together in a screen 🤕

---

<div class="post-metadata">

### Author: ![tatiang](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/tatiang/32/55482_2.png) [@tatiang](https://community.thunkable.com/u/tatiang)
#### Post date: [June 18, 2022, 7:25pm UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/2 "2022-06-18T19:25:10Z")

</div>

Alerts are defined in the component tree OR by using blocks. If you define their content in the component tree, then every alert on every screen will have the same content. But if you use blocks, each alert will be different.

---

<div class="post-metadata">

### Author: ![bibbi](https://avatars.discourse-cdn.com/v4/letter/b/db5fbb/32.png) [@bibbi](https://community.thunkable.com/u/bibbi)
#### Post date: [June 18, 2022, 7:31pm UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/3 "2022-06-18T19:31:45Z")

</div>

hi

thanks for your intervention

i have used the alert before and i use them with the blocks  
my concern is that the alerts do not work as notifications if I leave the screen associated with an alert I will not see it

---

<div class="post-metadata">

### Author: ![tatiang](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/tatiang/32/55482_2.png) [@tatiang](https://community.thunkable.com/u/tatiang)
#### Post date: [June 18, 2022, 7:39pm UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/4 "2022-06-18T19:39:24Z")

</div>

Right, they are not pop-up notifications. For that, you’d have to use a third-party service.

---

<div class="post-metadata">

### Author: ![bibbi](https://avatars.discourse-cdn.com/v4/letter/b/db5fbb/32.png) [@bibbi](https://community.thunkable.com/u/bibbi)
#### Post date: [June 18, 2022, 7:48pm UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/5 "2022-06-18T19:48:16Z")

</div>

In my application I use firebase and cloudinary  
use an another service?  
it’s starting to get a lot 😉

whatever I can probably use firebase…

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [June 19, 2022, 5:11am UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/6 "2022-06-19T05:11:59Z")

</div>

Can you explain more or provide a simplified example of what you want to do.

Please note that `alert component` is asynchronous which means you will not see the alert popup if you change the screen (navigate to another screen) unless the navigation is inside the alert and with a condition.

---

<div class="post-metadata">

### Author: ![bibbi](https://avatars.discourse-cdn.com/v4/letter/b/db5fbb/32.png) [@bibbi](https://community.thunkable.com/u/bibbi)
#### Post date: [June 19, 2022, 5:27am UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/7 "2022-06-19T05:27:44Z")

</div>

hi

> unless the navigation is inside the alert and with a condition.

I might be interested but I don’t understand

I make backups even though my application is “visual”, that is to say that my backups feed a list of images if I do not see the image it means that it has not been saved it is even when although the user is informed but does not have to stay on a screen to know that it is done or not

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [June 19, 2022, 5:47am UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/8 "2022-06-19T05:47:41Z")

</div>

The **alert** will only show in the screen that has the blocks of the alert.

For example:  
You have a function to make the backup which can take few minutes or seconds and will show an alert box when finish. This will work if you stay in the same screen but if you move to another screen then the alert box will not show.

---

<div class="post-metadata">

### Author: ![bibbi](https://avatars.discourse-cdn.com/v4/letter/b/db5fbb/32.png) [@bibbi](https://community.thunkable.com/u/bibbi)
#### Post date: [June 19, 2022, 6:15am UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/9 "2022-06-19T06:15:31Z")

</div>

> [@muneer](#):
>
> The **alert** will only show in the screen that has the blocks of the alert.

I experienced it and I understood that

---

<div class="post-metadata">

### Author: ![bibbi](https://avatars.discourse-cdn.com/v4/letter/b/db5fbb/32.png) [@bibbi](https://community.thunkable.com/u/bibbi)
#### Post date: [June 19, 2022, 6:16am UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/10 "2022-06-19T06:16:31Z")

</div>

> [@muneer](#):
>
> unless the navigation is inside the alert and with a condition.

what I did not understand is this part of your precious intervention

---

<div class="post-metadata">

### Author: ![danibarzo16i718](https://avatars.discourse-cdn.com/v4/letter/d/258eb7/32.png) [@danibarzo16i718](https://community.thunkable.com/u/danibarzo16i718)
#### Post date: [June 22, 2022, 3:09pm UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/11 "2022-06-22T15:09:27Z")

</div>

Hi @bibbi , you can try this: Set the alert you want as the result of a cloud variable that changes. Then you will see the alert no matter what screen you are in.

You can use these blocks:  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/f/d/fd9799cfedd71d81170b064f27deb342de9b8428.png)

Or in my case I use the same idea but when something in my Realtime DB changes (firebase):

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/7/7/77ac755e23fc26bcc27ed7e60b3eedf290e0185a.png)

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/f/0f59f292712368bce16ff80133ae10de8a6f27e8.png) [@system](https://community.thunkable.com/u/system)
#### Post date: [September 20, 2022, 3:10pm UTC](https://community.thunkable.com/t/alert-issue-or-another-get-around/1930875/12 "2022-09-20T15:10:06Z")

</div>

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.
