Powerpoint 2010 viewer in a website - html

I want to view a PowerPoint presentation in a new window when a end user clicks a link to it,i don't want it to be downloaded,

Related

Access Phone Gallery/Camera from WebPage

Is there anyway to access a phone's gallery/camera directly from a web page using html. I have a file input accepting images, but if I upload a file on my phone it asks if I want to use either camera or gallery. I was wanting to have a separate file upload button for each action (ie. one button opens the camera directly, the other opens the gallery no questions asked) but I don't know if it is completely possible.

how can i add a "safe as svg" option to users for my inline svg spritesheet iconset

i created a open source icon set what you can see here : https://fusion.li
as a designer, i can imagine users would love to drag out an icon from the website directly on the desktop or into a design programm and using it.
i wonder if have any parameter or way to make it easy to save an icon from website. each icon dragable to desktop to save an icon directly from web to file - as i can do it with images - or have a right click to "save file as".

Open SSRS Action URL's In a New Tab/Window

I have a report PDF created using SSRS with images and I have defiend the Action - Go to Url on all the images. When clicked on the pictures I need the url to open in a new tab rather than same tab while viewing the pdf from Chrome or IE.
I tried the javascript:window.open but it doesn't work. I mean it just opens a blank new tab but not the actual URL this is when viewd from adobe however when tried to view the same from Chrome it doesn't even give me the option to click.
My URL Expression
="javascript:void window.open('https://www.gocanvas.com/values/5246297662','_blank')"

How do you set a Link so that it opens in a new tab or window in Google App Maker?

In my Google App Maker application, whenever a user clicks on a Link, it causes the href link to open in the same window as the application. This causes a problem because the user has to click back in order to access the application again. Is there any way to set the link such that when a user clicks on it (without right click > open new tab), the page opens in a new tab/window? Thanks.
Try
window.open('www.your_link.com','_blank');
In the app maker property editor for the link widget set the target property to _blank

How to programatically close the file "save" window in flex?

I am using alivePDF to generate pdfs from my flex application. When I click on the save pdf button on my flex application, a "save as" window pops up which allows me to browse to the location where I want to save the pdf file. Its the same window that pops up when we try to save any file in notepad, word, etc. I want to programatically close this window if the user is idle for a given amount of time. The code that I am using for saving the pdf is as follows.
var file:FileReference = new FileReference();
var genPdf:PDF = new PDF();
genPdf = generatePDF(target, generateXML,str);
file.save(genPdf.save(Method.LOCAL), 'graph.pdf');
This can't be done as it would violate flash's security model, ie it would allow something to be saved to the hd without the user's knowledge/permission.