You'll need to tell us more please.
Have you first downloaded the .spk?
Paul
"Works well from installed .apk"
Run once to initialize - then it will show under any browser's Share menu item, and in some other apps when you use their Share menuitem - after highlighting some text first starting http://blahblah...
Paul
Since I did the first version, I've actually noticed phone numbers that are in plain text, and web pages addressees in plain text (not as links) is something else I've had to copy, locate and open apps, and paste, etc quite a bit from browsers.
So here's a basic effort to better handle highlighted text in browsers, or other text displaying apps, that mark out a bare phone number, or web address.
It can anticipate a lowercase www or http style web address, will hopefully work for www.something.com etc, http://something.com(etc), and even a bare something.xxx.yyy etc, and also 012345678 etc, while baulking at any highlighted text that has any middle space(s) in it.
Don't know if its bullet proof, but has passed whatever I've thrown at it so far.
Please freely do whatever with it.
Make apk, install, run once directly to set it up for receiving "Shares".
Thereafter, in a browser web page either just use the browser's Share menuitem to activate (its called Open Browser), or highlight a bare phone number or plain text web address, and then use the app, your in', Share menuitem.
Paul
I suspect this may be a JavaScript release issue.
Paul
Here's a fixed version using the pre-2015 syntax, with an attempt to catch highlighted (selected) but non-hardwired, email addresses and initiate an email as well.
Incorporated Steve's suggestion for setTimer, and Girard's for showing the dialler so user can edit a phone number first if necessary, appoligies if I've missed out any one whose provided information or advice, thanks.
Paul
To
if (sharedText.indexOf("http") == -1 ){
sharedText = "http://" + sharedText ;
}
To allow for https:// when it is used.
I'm actually finding myself using it more than I thought would be necessary, some newspapers' online editions (for legal reasons perhaps?) often will show a web or email address, but not live link it.
Paul