Hi kimo ,
Thanks for elaborating the question further!
To make a button that copies the URL of the current page,
you'll have to use the "Javascript Function" action of Buttonizer, which is a premium function only.
Copy and paste this function into the "Javascript Function" action:
function buttonizerGetPageUrl() {
var dummy = document.createElement('input'),
text = window.location.href;
document.body.appendChild(dummy);
dummy.value = text;
dummy.select();
document.execCommand('copy');
document.body.removeChild(dummy);
};
buttonizerGetPageUrl();
This function will copy the link of the current page into your clipboard!