Can I customize popup share screen default of browser? - webrtc

I have a design for this popup, I've tried looking around, but not found any tutorial to edit the above popup with HTML/CSS.
Is it possible to customize it or is there an alternative?
Thanks for your help!

You can not - otherwise an attacker could present a misleading interface that gets a user to share something they do not want.

Related

how to display share button in bigcommerce quickview popup

how can I show share button in bigcommerce quickview popup.I have used %%GLOBAL_QuickViewShareLinks%% variable.but no use.
Any help is appreciated.
Depending on the theme, the share options should be there anyway. You shouldn't need to customize them. Make sure you aren't running something like uBlock as that can prevent them from showing.
Alternatively, you can use AddThis to implement them yourself.

How to deactivate facebook share button after click

is there some way to deactivate FB share button or mark it like "done" after sharinig content? Like button have two states which indicates if I "like" it or not. On the share button is not visible if I shared the content or not. Is there a way to do it?
Thanks.
The only way i could think of is by authorizing a user with publish_actions. In that case, the response will be the new post id, as you can read in the docs: https://developers.facebook.com/docs/sharing/reference/share-dialog
BUT: You should not do something like that anyway. Let the user share stuff several times if he wants to. He may want to select different recipients for the share.

Google +1 Button - how to disable the pop up?

I'd like to disable the box that appear when the user hover +1 button I've placed on my site. Also I'd like to disable the box that pops out when the action is made.
Is this possible to do? I can't find any details in the documentation.
Very similar question: Facebook Like Button - how to disable Comment pop up?
Unfortunately, the hover bubble is a feature of the +1 button, as it provides a user with additional information about what they are recommending. At this time, it is not possible to remove them. But you can feel free to make the feature request in our Issue Tracker, which you can find at http://developers.google.com/+/support.
I'd also like to know the proper answer to this! Their data-recommendations="false" attribute currently does nothing. The best I have currently found is a CSS solution to hide the table that is displayed on hover:
table.gc-bubbleDefault.pls-container {
display: none !important;
}

making a swf file into a linkable button

I'm not very handy with actionscript 2 let alone 3, but I simply want to make the flash animation on my website entry page into a link that connects my about page. I understand it can't be done the easy way with an href on the html page. So my research tells me that I can somehow use an invisible button in the fla file, but I can never each the details.
I have made buttons in flash, but never something that uses the entire stage.
thanks for the help
Your problem can be solved by the way click tag works, see how clicktag is implemented, thats excactly what you need.
oh, here's a link http://www.flashclicktag.com/

Creating a Logon Screen

What is the best way to make password/logon screen? Iread somewhere that it is better to use a popup control. If so where exactly do I need to create it, in App.xaml?
There are number of things you need to consider while implementing a login screen for your Windows Phone 7 application. Here is a sample that can give you an idea of how to get started, if you haven't. One of the important aspects of a login screen is its appearance on the "back stack" - the list that grows while you are within your application, each item in this list is accessible through the "back" button. Ideally, you wouldn't want the user to press the back button and view the login screen. In other words, the login screen should never be in the "back stack". Therefore, it is probably best to implement the login screen as popup, see Peter Torr's post discussing this.
Peter Torr published an article on "Places" which could help you design your application with the login screen.
Regarding implementation of a popup, I posted a simple example in the Answer linked below which you can check out. In this case it implements a context menu.. you can populate the popup with whichever contents make sense for your login screen.
http://social.msdn.microsoft.com/Forums/en-US/windowsphone7series/thread/e6d2a444-91d9-4d69-937e-689b24c36c09
I recommend reading the two links Indyfromoz has hooked you up with for how to handle a login screen wrt the navigation service. This are the most relevant and the current posts on the topic of handling login screens and the like wrt the navigation service.