How can I open the share sheet from my website? - ios-sharesheet

Is it possible to use the share sheet on my website for IOS and Mac devices?
And if it´s possible then how?

Yes, it is possible using Web Share API.
Check here for more detail:
https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share
Example:
https://mdn.github.io/dom-examples/web-share/
Source code of example:
https://github.com/mdn/dom-examples/blob/master/web-share/index.html

Related

Ii know Django and flutter. Would it be possible to use these two to make a website? if yes, could we use the same code for the mobile app?

I wanted to build a website for someone. I know Django and flutter. would it be possible to use these two to make a website? If yes can we use the same code for the mobile app?
If you know the answer would you be kind enough to enter the steps or the way to do this?
would it be possible to use these two to make a website?
You can definitely build a website with Flutter. This is in beta however so be aware of that. Simply run these commands then you can compile to chrome instead of iOS / Android.
flutter channel beta
flutter upgrade
flutter config --enable-web
Source: https://flutter.dev/docs/get-started/web

Run userscript within the IE web browser control in a MFC application

I am developing a C++ application using the Internet Explorer webcontrol. I would like to use some userscripts to modify the webpage.
Do you have ideas how I can achieve this?
You're looking for IHTMLWindow2::execScript().

developing browser extension for content filtering

I'm developing an application for content filtering. i'll use it as web service but my problem is that i hadn't developed any extension for firefox or ie before. i read some about firefox extensions and now i know a little about it.
firstly can i use web service in a firefox/ie extension? if yes, can you give me a link of tutorial or sth like that?
all suggestions are welcome.
The question is too broad. Yes, you can call a web service using XMLHttpRequest, for example.

Google Earth and Windows application

I have a C++ Windows application continually updating lat, long and altitude.
I would like my application to incorporate Google Earth to visually "track it".
Any advice or pointing in the right direction would be appreciated.
Thanks.
You can embed the Google Earth plugin into your application as an ActiveX control. The API for the control can be found here. You need to instantiate your GEPlugin control and from here you can retrieve all the other COM objects. There is no need to register with Google for the development key. This is not supported by Google as it bypasses the official method of development using Javascript.
Starting point - look at using a web browser as a control/component. For example, Internet Explorer can be used as an ActiveX control. Not easy in plain C++, but supported by MFC - which I'm not very familiar with.
I can't give any more specific pointers than that, unfortunately, except that I tried it once a few years ago (just for fun) and couldn't get it to work. I could get it into a dialog, but when I told it to load a page, it would stay blank.
Still, it is possible - look at all the magazine coverdisks that have "their own web browser".
Sep,
Can you provide a few more details on how to do this with the GE Plugin? I've gotten it working by embedding a browser object in my C# app, but not directly as an ActiveX control. If I can avoid having to create a web site to host javascript, then I'm all for that. Thanks!
Bob

How can I enable folder sharing in Google Docs? Can I write my own program/application for it?

Google Docs does provide sharing of files.But it does not provide sharing of folders.
Is there any way by which I can share the folders too? Can I write my own application/program for it?
If yes, then how?
UPDATE: Now this question is no longer
useful.Gmail now supports folder
sharing too.Cheers!
The best place to start is to go through the documentation. I would also recommend you check out this videocast (it shows how to do this in PHP, but you should be able to replicate this to any other language you might be using). Good luck.
I found a discussion at google (support forum, I'd link if I could have more than one/post)
Down the page there is a link to an app that supposedly uses new API features to implement folder sharing
http://tng.appspot.com/2009/9/Folder-Sharing-in-Google-Docs-now-possible
After reading my blog post mentioned by goorj you can try out my folder sharing app at
http://folders.gdoclab.com
You will be asked to login using you google account and give permission to manipulate you google docs sharing permission. It works for plain google accounts not for google apps accounts yet (but I am working on that too ...)
Yes you can write your own application using Google docs APIs.