I know we can grab a A tag and use it I already do this
But I would like to also grab hover actions and even maybe right click actions from the browser back in to AMS, also is it possible to run commands from the browser just seeing what my limits are for my html 5 user list I am creating at the moment
PHP Code:
GrabMe = String.Find(e_URL, "#user");
if (GrabMe ~= -1) then
UserAddress = String.Mid(e_URL, GrabMe+6, -1);
UserAddress = String.Replace(UserAddress, '@', '#', false);
Dialog.Message('User', 'Found? ' ..UserAddress);
end