Search found 241 matches

by bogdyro
01 Oct 2018 05:40
Forum: Flow Sharing Area
Topic: Triggers select helper
Replies: 5
Views: 15834

Triggers select helper

Hello everyone. I'd like to share a flow and widget I've made to make checking which trigger started a flow (with condition expression) easier . The ideea is to get the list of triggers in the current flow, to copy the one you want in the expression (trigger==...). This feature has already been dema...
by bogdyro
22 Jun 2018 15:42
Forum: Feature Requests
Topic: Trigger check
Replies: 8
Views: 19690

Re: Trigger check

+1 ?
by bogdyro
12 Jun 2018 13:06
Forum: Feature Requests
Topic: Trigger check
Replies: 8
Views: 19690

Re: Trigger check

Yeah, good idea. Should work well. But I think a built in feature would be nice.
by bogdyro
12 Jun 2018 05:28
Forum: Feature Requests
Topic: Trigger check
Replies: 8
Views: 19690

Re: Trigger check

Yeah, but that's possible for only a few use cases, I'm talking about a condition that applies to any trigger in any flow.
by bogdyro
11 Jun 2018 14:17
Forum: Feature Requests
Topic: Trigger check
Replies: 8
Views: 19690

Trigger check

Hi Martin. I have a little request. It's not a big deal but what more could I ask from such a features filled app? :) Could you develop a condition to evaluate the triggers of a flow ? Right now I'm using condition 'expression:' to contain or equal the name of the trigger but it's a pain to copy the...
by bogdyro
28 Apr 2018 07:51
Forum: User Help / Bug Reports
Topic: Is there a simpler way to access Java arrays?
Replies: 14
Views: 29845

Re: Is there a simpler way to access Java arrays?

Well..you shouldn't do it this way.
You use the function button in the bottom of the script window. You type in the desired Java function and you get the screen where you choose the class and function.
And the parameters get filled in automagically
by bogdyro
27 Apr 2018 20:53
Forum: User Help / Bug Reports
Topic: Is there a simpler way to access Java arrays?
Replies: 14
Views: 29845

Re: Is there a simpler way to access Java arrays?

It's not me that changed the parameters. Automagic fills them in. It's weird that they're not the same for both of us. Anyway, glad it works.
by bogdyro
27 Apr 2018 08:26
Forum: User Help / Bug Reports
Topic: Is there a simpler way to access Java arrays?
Replies: 14
Views: 29845

Re: Is there a simpler way to access Java arrays?

Nice find. In my opinion it's simpler to copy the array to a list. But this method does work also callJavaStaticMethod("java.lang.reflect.Array", "get(java.lang.Object, int)", name_of_array, index) Your 'get' method signature is weird. I have 'int' instead of 'java.lang.Integer' for the second param...