Search found 342 matches

by digitalstone
10 Dec 2017 16:06
Forum: Feature Requests
Topic: Bounding Boxes
Replies: 3
Views: 11177

Bounding Boxes

Maybe it would be more visually apparant when we can place a box (e.g. rectangle) around a group of blocks or part of a flow.

Also nice if the blocks within the box were linked to it as with a parent-child-relation.
Then, if you would drag the box, you would move the entire group with it.
by digitalstone
08 Dec 2017 18:09
Forum: User Help / Bug Reports
Topic: Flow Opening Time
Replies: 7
Views: 18909

Re: Flow Opening Time

With only some flows.
And those flows will keep that behavior for most of the time.
Sometimes it opens instantaneously.

But it definately doesn't switch around to other flows.
by digitalstone
07 Dec 2017 16:07
Forum: User Help / Bug Reports
Topic: Flow Opening Time
Replies: 7
Views: 18909

Flow Opening Time

With some flows i experience a high waitingtime for it to open. In most cases, the screen turns black (except the statusbar and 3 system buttons at the bottom) for a whole minute before it opens up. After that, i can do everything with the flow and it runs smooth. But i will need to go through this ...
by digitalstone
18 Nov 2017 05:20
Forum: User Help / Bug Reports
Topic: Volume per Audiostream
Replies: 3
Views: 11161

Re: Volume per Audiostream

Just finished testing. It appears it has to to with relative volume. Playing a loud part of a song makes the TTS seem just more quiet for some reason (quieter than you would expect because of other loud music). Had nothing to do with the 3 audio focus options. They work fine. I use Rocketplayer as m...
by digitalstone
16 Nov 2017 11:45
Forum: User Help / Bug Reports
Topic: Volume per Audiostream
Replies: 3
Views: 11161

Volume per Audiostream

I have a "work-commute" flow that tells me the time every now and then while i listen some music and switches my profile once i plug out my audiojack on arrival. The audio-stream through which the TTS goes is DTMF and set to volume maximum (15). (DTMF because i have no other known use for that strea...
by digitalstone
30 Oct 2017 19:00
Forum: User Help / Bug Reports
Topic: split function
Replies: 4
Views: 13826

Re: split function

Just as alternative. Since 1.34.0, I never use split() function anymore. findAll() has all I need, and usually it is so powerful, that most splitting can be done in single line of script (thanks Martin, for this very useful addition). For this case, you wanna extract the "000" and "17:15" as separa...
by digitalstone
26 Oct 2017 17:30
Forum: User Help / Bug Reports
Topic: split function
Replies: 4
Views: 13826

Re: split function

Oh.. my god... yep i should have known :roll:
Thanks a bunch Yogi!
by digitalstone
26 Oct 2017 16:05
Forum: User Help / Bug Reports
Topic: split function
Replies: 4
Views: 13826

split function

I have been banging my head against the metaphoric wall for 2 days, so i'm placing this (supposedly) easy question here. I have some raw weather information From this website : 000|17:15 000|17:20 000|17:25 000|17:30 000|17:35 000|17:40 000|17:45 000|17:50 000|17:55 000|18:00 000|18:05 000|18:10 000...
by digitalstone
24 Oct 2017 08:54
Forum: User Help / Bug Reports
Topic: "trigger" variable
Replies: 4
Views: 12970

Re: "trigger" variable

Thanks Desmanto
I should have linked the expressions parallel instead of serial to look at both values.

I kind of got away from that method because i saw an aweful lot of re-doing actions when parallel linking. I think i know why too now.
by digitalstone
22 Oct 2017 17:59
Forum: User Help / Bug Reports
Topic: "trigger" variable
Replies: 4
Views: 12970

Re: "trigger" variable

What elements do you use to check it? Probably you assign value "Manual" to the {trigger} by using single equal sign. In Automagic, trigger = "Manual" is different with trigger == "Manual" Single equal sign (=) is to assign value, while double equal sign (==) is to check the value and return true o...