レベル 1
レベル 2
コミュニティにログイン
詳細情報
ログインしてすべてのバッジを表示
コミュニティアチーブメントバーを展開する。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Is there any way to do this? Instead of a number (Like, 5s) set it to be a value generated in the workflow
解決済! 解決策の投稿を見る。
Hi @CampaignerForLife ,
You can replace wait activity with JavaScript Code Activity, and insert the below script
instance.vars.WaitTime = 5000; task.wait(instance.vars.WaitTime);
Or By using Wait Activity > Advanced tab's Initialization script > add the same code, and Define duration as 0s in Wait tab.
元の投稿で解決策を見る
Hello @CampaignerForLife
If you have a single wait activity then you can use this code in a javascript activity before the wait activity.
instance.activities.wait[0].delay=TIME_IN_SECONDS;
表示
いいね!
返信