Search found 33 matches

by houdinix64
18 Aug 2017 06:25
Forum: User Help / Bug Reports
Topic: need help regarding concat function
Replies: 2
Views: 9642

Re: need help regarding concat function

Thanks Desmanto for your help and tips in creating scripts. Your idea perfectly work on my flow. Thanks again
by houdinix64
17 Aug 2017 09:03
Forum: User Help / Bug Reports
Topic: need help regarding concat function
Replies: 2
Views: 9642

need help regarding concat function

Hi guys I need your help please. my script: smartStates = newList("Smart Rotate","Smart Timeout","Smart Notification"); for (smartState in smartStates) { if( contains(smartState,'Rotate' )==true ) { detail = "on" } if( contains(smartState,'Timeout' )==true ) { detail = "1 minute" } if( contains(smar...
by houdinix64
20 Jul 2017 07:32
Forum: Flow Sharing Area
Topic: Battery Manager
Replies: 4
Views: 19208

Battery Manager

Features/How it works? This will prevent the phone from overcharging. Tap Overcharge Reminder at notification area to access settings. When your phone reached 100% or battery fully charged, the flow will add the configured alarm time to the actual time when your phone reached 100%. The phone will al...
by houdinix64
18 Jul 2017 16:25
Forum: Flow Sharing Area
Topic: Automatically record new CIDs when connected to any WiFi
Replies: 9
Views: 33974

Re: Automatically record new CIDs when connected to any WiFi

Dont manually execute the flow. I hope its correct.
by houdinix64
18 Jul 2017 13:06
Forum: Flow Sharing Area
Topic: Automatically record new CIDs when connected to any WiFi
Replies: 9
Views: 33974

Re: Automatically record new CIDs when connected to any WiFi

//location of saved cids, make a map
If ( global_map_cid == null )
{
global_map_cid = newMap();
}

addMapEntry(global_map_cid,cid,ssid);
by houdinix64
03 Jun 2017 00:07
Forum: User Help / Bug Reports
Topic: Ui event text variable bug
Replies: 3
Views: 10401

Re: Ui event text variable bug

Thanks Martin. Using text = replaceAll(text, '\\p{C}', '');
solved the problem.

The variable text contains the right value however you have to used the command above before you can normally used it in the flow. Sorry Im a newbee, no background in programming. :)
by houdinix64
02 Jun 2017 17:48
Forum: User Help / Bug Reports
Topic: Ui event text variable bug
Replies: 3
Views: 10401

Ui event text variable bug

Im not sure if this is a bug or phone related problem. Phone model: huawei p8 lite 2017, nougat Automagic: latest version from playstore The text variable generated by UI event: component clicked cannot be recognized. Trigger: ui event component click App = messaging When I clicked one of my contact...
by houdinix64
22 May 2017 07:55
Forum: User Help / Bug Reports
Topic: Problem removing double quotes in a string
Replies: 2
Views: 8903

Problem removing double quotes in a string

Hello.

How can i removed double quotes ( " ) in a string using replaceAll function?

Thanks