Difference between revisions of "Mozilla.dev.tech.js-engine"

From CDOT Wiki
Jump to: navigation, search
(FAQ)
(FAQ)
Line 16: Line 16:
  
 
== FAQ ==
 
== FAQ ==
* [http://groups.google.com/group/mozilla.dev.tech.js-engine/browse_frm/thread/3e840becb09acccb How long are private pointers? ]
+
=== [http://groups.google.com/group/mozilla.dev.tech.js-engine/browse_frm/thread/3e840becb09acccb How long are private pointers? ] ===
  
 
2-byte aligned check the JSVAL macros at the top of [http://lxr.mozilla.org/seamonkey/source/js/src/jsapi.h#71 jsapi.h ]
 
2-byte aligned check the JSVAL macros at the top of [http://lxr.mozilla.org/seamonkey/source/js/src/jsapi.h#71 jsapi.h ]
  
* [http://groups.google.com/group/mozilla.dev.tech.js-engine/browse_frm/thread/9a2c9872a3e5c94e Can I call functions in Mozilla extensions from web page?]
+
=== [http://groups.google.com/group/mozilla.dev.tech.js-engine/browse_frm/thread/9a2c9872a3e5c94e Can I call functions in Mozilla extensions from web page?] ===
 
No, accessing anything in the web page's script may lead to security problems.
 
No, accessing anything in the web page's script may lead to security problems.
  
* Is there a specific issue with ActiveX and Instance Handling I am not aware of? What could I do to get it working, any ref
+
=== Is there a specific issue with ActiveX and Instance Handling I am not aware of? What could I do to get it working, any ref material or hints? ===
material or hints?
 
  
 
A: No awnsers as of yet
 
A: No awnsers as of yet
  
* Firefox does not ignore screenX (Y) parameters like IE does. By adding menuwd.moveTo(posX, posY); flicker is added to the screen. Is there any way to solve this?
+
=== Firefox does not ignore screenX (Y) parameters like IE does. By adding menuwd.moveTo(posX, posY); flicker is added to the screen. Is there any way to solve this? ===
  
 
A: No awnsers as of yet
 
A: No awnsers as of yet

Revision as of 10:44, 8 October 2006

Newsgroup

JS-Engine on Google groups

JavaScript on MDC

Authors

  • Dejan Tolj
  • David Bertenshaw

Weekly Summaries

FAQ

How long are private pointers?

2-byte aligned check the JSVAL macros at the top of jsapi.h

Can I call functions in Mozilla extensions from web page?

No, accessing anything in the web page's script may lead to security problems.

Is there a specific issue with ActiveX and Instance Handling I am not aware of? What could I do to get it working, any ref material or hints?

A: No awnsers as of yet

Firefox does not ignore screenX (Y) parameters like IE does. By adding menuwd.moveTo(posX, posY); flicker is added to the screen. Is there any way to solve this?

A: No awnsers as of yet