mozilla-prism

Mozilla Prism: disable pop-up blocker

I'm developing an application using Mozilla Prism. Unfortunately, Prism has its pop-up blocker activated. I tried to disable it by inserting a line like user_pref("privacy.popups.policy", "1"); or user_pref("dom.disable_open_during_load", false); into the webapp.js, which resides in the directory of the Prism application. Ho...

Porting addons to Mozilla Prism 1.0b1

Hi folks, I'm trying to port an application to the newest version of Mozilla Prism (1.0b1 currently). The instructions say to put this in install.rdf: <em:targetApplication> <!-- Prism --> <Description> <em:id>[email protected]</em:id> <em:minVersion>0.4</em:minVersion> <em:maxVersion>1.0.0.*</em:maxVe...

UWA widget running in Mozilla Prism

Can UWA widgets run seamlessly within Mozilla Prism? I've been asked to write a widget with tray icon support so I thought it would be a good idea to do it as a UWA widget and then create a lightweight wrapper with Prism to get maximum platform independency. Has anyone tried this? Does it work? Is there any catch? Any sample code? ...

Prism vs out-of-browser silverlight

I recently started reading up on the out-of-browser ability of Silverlight 3. I also noticed that quite a few people here speak of Prism. I only had a brief time to read up on the topics. However, from what I read, both of them perform the same role. What are the differences between the two, and if they are the same, why do people use ...

Chrome Application Shortcuts / Mozilla Prism Installer

I want to deploy a installer package to my customers. My application is basically a website, but I want them to have the optimal experience via. Chrome or Mozilla Prism. I would like to give them an installer (win:msi/exe) that puts an icon on the desktop and launches my app. They may or may not have chrome and Firefox already install...

Prism: Bundle not working

I am trying something completely new and decided to try out Webapps on Prism. I started out with the dev center on Mozilla on creating the very first bundle. It worked the first time, but once I added the other files to construct the entire bundle, Prism does not recognize my Parameters any more. Even when I tried removing all of the oth...

How to invoke Firefox Prism application from Firefox plugin?

I want to invoke a Firefox Prism application from Firefox plugin (I'm currently learning to make one). I also want to pass few variables to the page being opened in Prism application. These variables would fill some form elements in that page. How can I achieve these two? EDIT Someone might ask why I wanna do that but, believe me, i...

Open Source Mozilla Prism Alternative

Here is what I want to do, very simply: I want to put a URL into a Mozilla Prism (or some alternative), then be provided with an icon on my desktop that when I click it a window opens and the page is displayed. The process for this instance of Prism should be completely independent of any other Prism "applications" that are running. P...

AJAX works fine in firefox, but malfunctions in Mozilla Prism 0.9

I have the following ajax fucntion: function ajax(value, url, urlVarname, displayContainers_id){ if(value == ''){ document.getElementById(displayContainers_id).innerHTML=''; } /* THIS IS LINE 12*/ xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange=function() { if(xmlhttp.readyState == 4 &&...