How to continuously display numeric data (real time)

in ScreenMaker
Hi all,
1. I would like to display real time position (angle) for example axis 1 of robot as shown in image below.
But i could not get the real time data. The joint angle (Bar graph) will only update once robot stop movement, Does anybody try this before and have a solution?
2. I could not find a way to display data in a rectangle box instead of using a bar display. Does anybody know?

1. I would like to display real time position (angle) for example axis 1 of robot as shown in image below.
But i could not get the real time data. The joint angle (Bar graph) will only update once robot stop movement, Does anybody try this before and have a solution?
2. I could not find a way to display data in a rectangle box instead of using a bar display. Does anybody know?

Comments
1. The required values must be provided via RAPID in a persistent data declaration because variables do not generate any data changed event.
2. You can use the control "tpsLabel" to show the value. If you want to have a reactangle around the label you can change the BorderStyle from "None" to "FixedSingle".
Best regards
Micky
Sorry yo let u misunderstand. I can display the current angle position by using PERM. My problem is that, the data will not update continuously while the robot is moving. The data will only updated after robot has stopped.
For example, I need the value display 90.0, 90.1, 90.2,.......while robot is moving.
Best regards
Micky
As my poor understanding about RAPID programming, the source code is running by step.(rolling down). The instruction will stop at line for example MOVEL, how can it go through WHILE loop? Can you give me an example of programming?
Does your robot support option "Multitasking"? If yes, you can create another task, and write a while loop there. This task and your current task will run in parallel.
To create new task you go here in FlexPendant: Control Panel -> Configuration -> Topics -> Controller -> Task. Or in RobotStudio: Controller tab -> Configuration Editor -> Controller -> Task, then right-click New Task.