Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How can i show pics with timer on textbox

Hello Peeps,

Find attached. How can i  show probably with a code segment pictures one after the other without clicking on any button.

Regards

Zion

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

I have defined a variable:

=left(right(Now(),5),2) that gives the seconds from 00 to 60, then, every object can be showed with conditional expression, I've simply set this expression like: visible if :  myVar >= 10 and myVar <= 20 so yjììthe object is visible for 10 sec. from the 10th to 20th

hope it helps

View solution in original post

7 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Take a look at this:

tresesco
MVP
MVP

See attached, every pic would be visible for one minute one after another. Check - Layout Show Conditional expressions.

ashfaq_haseeb
Champion III
Champion III

Hi,

May be like this.

Regards

ASHFAQ

alexandros17
Partner - Champion III
Partner - Champion III

I have defined a variable:

=left(right(Now(),5),2) that gives the seconds from 00 to 60, then, every object can be showed with conditional expression, I've simply set this expression like: visible if :  myVar >= 10 and myVar <= 20 so yjììthe object is visible for 10 sec. from the 10th to 20th

hope it helps

ashfaq_haseeb
Champion III
Champion III

Hi,

Did you try my application.

Regards

ASHFAQ

tresesco
MVP
MVP

Right click on the textbox when it is active, goto layout tab->Show Conditional (Expression)

If you want to see all the textboxes at one go, right click on the sheet->Objects tab, you will see all the textboxes: ShowMode: Condional:Hidden, select the object-> On right bottom corner-Properties->Layout

ashfaq_haseeb
Champion III
Champion III

Hi,

By the below logic

(((now()*24 * 60) - floor((now()*24 * 60)) ) * 60 / 10) < 1

(((now()*24 * 60) - floor((now()*24 * 60)) ) * 60 / 10) >= 1 and

(((now()*24 * 60) - floor((now()*24 * 60)) ) * 60 / 10) < 2

(((now()*24 * 60) - floor((now()*24 * 60)) ) * 60 / 10) >= 2 and

(((now()*24 * 60) - floor((now()*24 * 60)) ) * 60 / 10) < 3

(((now()*24 * 60) - floor((now()*24 * 60)) ) * 60 / 10) >= 3 and

(((now()*24 * 60) - floor((now()*24 * 60)) ) * 60 / 10) < 4

Above function will be true every 10 second and hence it worked.

Regard

ASHFAQ