-
Hi,
Everything has to run with the same architecture. Either everything is 32 bit (SWT, XULRunner and its plugins) or 64 bit.
In your case, this error seems to be caused by using the wrong version of SWT. You would have to download the appropriate version of SWT.
If you are using the latest 0.9.9 preview, then you can find the appropriate version of SWT here...
2010-01-06 18:27:36 UTC in The DJ Project
-
> Can you give us any insight into when 0.9.9 will be GA'ed/fully released?
I am tempted to release the current preview version as the official 0.9.9 but I have to find the time to do so. As far as I can tell, the current 0.9.9 preview is stable and is far better than the 0.9.8 (stability, features, etc).
2010-01-05 20:52:17 UTC in The DJ Project
-
This may be related to the SWT bug:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=134646
The latest 0.9.9 preview greatly improves the situation (mostly because of an updated version of SWT) but I don't know whether it is the one you are already using.
Apart from that, old versions of IE leak a lot, but this is an IE specific issue...
I don't think there is much I can do about it. The...
2010-01-05 20:18:10 UTC in The DJ Project
-
Hi Adil,
The exception is in libxul, so this is happening in XULRunner. Moreover, the error tends to indicate that XULRunner crashes the JVM when it tries to load a plugin, which is likely to be the Flash plugin. Is XULRunner 64 bit? Is the Flash plugin 64 bit? I am not sure that all these components have a 64 bit counterpart, but a mismatch of architecture could well cause such issues...
2010-01-05 17:18:33 UTC in The DJ Project
-
Hi,
in your thread, place the code in an invokeLater call. But every 50 ms is quite fast and it is unclear whether the Javascript API can respond that fast. So waiting (50ms or longer) should happen after the JS call has executed. Something like:
SwingUtilities.invokeLater(new Runnable() {
public void run() {
final Runnable runnable = this;
int position =...
2010-01-05 11:17:01 UTC in The DJ Project
-
Hi Fredrik,
There is a way to add you own menu items (there is an example in the demo). Thus you could add it, invoking the Javascript print function of the native browser.
By default it is not there because I am not sure it would work in all situations. The Javascript call could fail if the page is loading or if the content is not HTML. Maybe if you get to try it and you find it mostly...
2010-01-05 10:58:10 UTC in The DJ Project
-
Maybe the command should be something like this:
sudo ln -s -t /usr/lib64/esc-1.0.0/plugins /usr/lib/mozilla/plugins/libflashplayer.so
If it does not work, at least you get the idea: find where the Flash plugin is located, find where XULRunner is looking for it, make a link using the appropriate commands on your operating system.
Hope this helps,
-Christopher.
2010-01-01 17:28:02 UTC in The DJ Project
-
After Flash is installed, run something like this on the command line:
sudo ln -s -t /usr/lib64/esc-1.0.0/xulrunner/libflashplayer.so /usr/lib/mozilla/plugins/libflashplayer.so
-Christopher.
2009-12-31 15:35:32 UTC in The DJ Project
-
Hi Adil,
Is the Flash plugin properly installed for the browser that it is using? You need Flash to be installed, and if you are using XULRunner, you need to link it with a command like this:
> sudo ln -s -t
> /usr/lib/xulrunner/libflashplayer.so
> /usr/lib/mozilla/plugins/libflashplayer.so
-Christopher.
2009-12-31 14:54:38 UTC in The DJ Project
-
Hi,
When the browser loads a page, it may automatically request the focus. For example, the google home page forces the focus to the search field once it has finished loading. The end of this loading is likely to happen after your user interface has loaded. Moreover, we can't know from the user code whether the focus request came because of a Javascript request or a user click.
The only...
2009-12-29 11:09:57 UTC in The DJ Project