Hi,everyone.
I need for help about how to show the recording issue of gleeo time tracker on my widgets.
And how can I change the global variables in the flows?
Thank you.
How can I show the gleeo recoring project?
Moderator: Martin
Re: How can I show the gleeo recoring project?
Hi,
You can build a flow that reacts to the recording started/stopped events.
Something like this should work:
Flow 1
-triggers Gleeo Recording Started
-action Script with script:
Flow 2
-triggers Gleeo Recording Stopped
-action Script: global_project_title=""; global_task_name=""
The global variables can be shown on the widget in a text element with following text:
Martin
You can build a flow that reacts to the recording started/stopped events.
Something like this should work:
Flow 1
-triggers Gleeo Recording Started
-action Script with script:
The started event will make the project title and the task name available in local variables project_title and task_name. The script assigns the content of the two variables to two global variables which can be accessed in a widget.global_project_title=project_title;
global_task_name=task_name;
Flow 2
-triggers Gleeo Recording Stopped
-action Script: global_project_title=""; global_task_name=""
The global variables can be shown on the widget in a text element with following text:
Regards,{global_recording_project_title} - {global_recording_task_name}
Martin