xulrunner

How to Install and run a XulRunner Application on Mac OS X?

一笑奈何 提交于 2019-12-30 23:25:10
问题 I'm on a Mac OS X Lion, and I have followed this tutorial exactly as it is: https://developer.mozilla.org/en/getting_started_with_xulrunner When I try to run: /Library/Frameworks/XUL.framework/xulrunner-bin --install-app /Users/CIRK/Documents/deskapp.zip Gives me nothing as a result in the terminal, and I can't find any file called deskapp.app . So I mean nothing happens at all. I tried to run it without the installation as it is suggested in the tutorial but doesn't worked : /Library

How to handle downloading in GeckoFX 29

匆匆过客 提交于 2019-12-29 08:12:15
问题 How can I handle downloading in GeckoFx I'm using version 29 I've found some ways like adding event of LauncherDialog_Download(object sender, LauncherDialogEvent e) But, I'm not able to add handler for this event I tried this for handler LauncherDialogFactory.Register(); LauncherDialog.Download += LauncherDialog_Download; But, it is showing as error, how can i add handler and is there any other ways to handle downloading in GeckoFx 29 ? 回答1: In form load after your browser.navigate("http:/

How to handle downloading in GeckoFX 29

会有一股神秘感。 提交于 2019-12-29 08:12:11
问题 How can I handle downloading in GeckoFx I'm using version 29 I've found some ways like adding event of LauncherDialog_Download(object sender, LauncherDialogEvent e) But, I'm not able to add handler for this event I tried this for handler LauncherDialogFactory.Register(); LauncherDialog.Download += LauncherDialog_Download; But, it is showing as error, how can i add handler and is there any other ways to handle downloading in GeckoFx 29 ? 回答1: In form load after your browser.navigate("http:/

setting xulrunner browser preferences

自作多情 提交于 2019-12-25 16:56:21
问题 I am using a xulrunner-1.9.2.12.en-US.win32 for an app I am creating. I want the user to be able to change the colours of the app using something similar to the "tools, options, content, colors" menu in firefox. I am using a prefwindow to set browser.display.background_color using a colour picker. If I look at chrome://global/content/config.xul I see that the value for this property has been correctly changed, however, I see no corresponding change in the web page look and feel. If I view

Flash Player trust file not working with Embedded browser on linux

喜你入骨 提交于 2019-12-25 04:33:58
问题 I have an application which embeds a xulrunner based browser. I have to load some flash content in this browser. At certain points of time the flash changes my URL and Page Title to reflect the location in the flash file where I am at. This works fine in a firefox browser when I place my trust file at /etc/FlashPlayerTrust folder with entries for the directory and the swf file I want to trust.( according to the Flash security guide http://www.adobe.com/devnet/flashplayer/articles/flash_player

nsIGenericFactory.h is missing in the above version of xulrunner-2.0.en-US.win32.sdk

空扰寡人 提交于 2019-12-23 15:12:39
问题 Previously, I created XPCOM dll for the mozilla version 3.6 and XulRunner version of 1.9.2 . Now I try to update that xpcom dll for the mozilla recent versions namely 4 and above. So I downloaded Xul Runner above version but I couldn't find nsIGenericFactory.h . How to work my xpcom dll for the mozilla 4 and above versions. Actually I used the following sample to develop XPCOM DLL. http://www.iosart.com/firefox/xpcom/ Thanks.. 回答1: Since Mozilla 4.0 is using Gecko 2.0 this applys to your

Error while delivering code in RTC

喜欢而已 提交于 2019-12-23 01:37:10
问题 I m setting up RTC on Ubuntu 12.10 64 bit. My RTC and JDK7 are also 64 bit versions. Whenever I try to deliver code using RTC I get an error: Error logged from Process Client UI: No more handles [MOZILLA_FIVE_HOME='/opt/xulrunner/'] (java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons: /opt/IBM/TeamConcert/configuration/org.eclipse.osgi/bundles/613/1/.cp/libswt-mozilla-gtk-3659.so (libxpcom.so: cannot open shared object file: No such file or directory) swt-mozilla-gtk (Not

Error while delivering code in RTC

我是研究僧i 提交于 2019-12-23 01:37:06
问题 I m setting up RTC on Ubuntu 12.10 64 bit. My RTC and JDK7 are also 64 bit versions. Whenever I try to deliver code using RTC I get an error: Error logged from Process Client UI: No more handles [MOZILLA_FIVE_HOME='/opt/xulrunner/'] (java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons: /opt/IBM/TeamConcert/configuration/org.eclipse.osgi/bundles/613/1/.cp/libswt-mozilla-gtk-3659.so (libxpcom.so: cannot open shared object file: No such file or directory) swt-mozilla-gtk (Not

How to package a standalone xulrunner app for OS X?

别说谁变了你拦得住时间么 提交于 2019-12-22 13:51:00
问题 I'm trying to create a xulrunner app for OS X 10.9+. I need it to be standalone, i.e. to not require any extra additional software (including Firefox) to be installed on the box along with the app. I was not able to google up an up-to-date guide on how to do that. It seems that I've hit every issue described here: https://bugzilla.mozilla.org/show_bug.cgi?id=923979 One of the last ones is: $ open MyApp.app LSOpenURLsWithRole() failed with error -10810 for the file /Path/To/MyApp.app. Here is

how to package a standalone xulrunner application

别说谁变了你拦得住时间么 提交于 2019-12-21 12:06:45
问题 I was wondering what I need to do to create an executable (.exe) file that will run my XUL application? I'm trying to create an application using Mozilla's XUL format. 回答1: Here are the steps: Compress your application folder tree using WinZip. Rename the .zip file to have a .xpi extension. (i.e., myApp.xpi). Assuming you have xulrunner in your PATH, execute: xulrunner --install-app myApp.xpi. On Windows, this installs your app to c:\Program Files\<Vendor>\<Application Name>\<Application Name