home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap15 / npavi / README.TXT < prev    next >
Encoding:
Text File  |  1996-05-13  |  1.6 KB  |  36 lines

  1. AVI LiveConnect Example
  2. 5/13/96
  3.  
  4. This code is an example of an AVI plugin using Live Connect.
  5. This is 32-bit only at this time.
  6.  
  7. In this example, a Java class implements several functions in the 
  8. the AVI player like stop, play, seek etc. 
  9.  
  10. The HTML directory contains a couple of very simple examples which use
  11. the plugin. One of those uses JavaScript to access the plugin. The other
  12. one uses a Java applet.
  13.  
  14. Npshell.cpp and npwin.c are the two main files in the interaction between
  15. plugin and Navigator. You should not need to edit npwin.cpp, and only your
  16. initialization code should go in npshell.cpp. Plgwnd.h and plgwnd.cpp are
  17. the implementation of the "plugin" object. This is the object keeping state
  18. information about a specific instance of a plugin. The HWND coming from
  19. the Navigator is kept here. Cavi.h and cavi.cpp hae the AVI implementation.
  20. This is done through MCI.
  21.  
  22. Using the makefile will make some other files. Those files are the stubs,
  23. they will go in the _stubs directory and are a c/c++ representation of the
  24. Java/plugin class. They are your 'native' functions in your java class
  25. (viz. stop, play, etc.). Those files have extern fuctions which in turn are
  26. implemented in the avijava.cpp file. Avijava.cpp is the glue from your Java
  27. class and your AVI plugin implementation
  28.  
  29. To use LiveConnect, you must *zip* up your class files (the ones in the classes
  30. directory) in a zip file with *NO* compression. Put your zip file in the same
  31. directory where your plugin is (which can now be any subdirectory of the plugins
  32. directory).
  33.  
  34. You will need to find an AVI video to test this plugin.
  35.  
  36. Good Luck!