fdf_set_on_import_javascript

(PHP 4 >= 4.3.0, PHP 5)

fdf_set_on_import_javascript -- Adds javascript code to be executed when Acrobat opens the FDF

Description

bool fdf_set_on_import_javascript ( resource fdfdoc, string script [, bool before_data_import])

Warning

This function is currently not documented; only the argument list is available.

See also fdf_add_doc_javascript(), and fdf_set_javascript_action().

f, "foo", "bar");

  
/* tell client to display FDF data using "fdf_form.pdf" */
  
fdf_set_file($fdf, "http://www.example.com/fdf_form.pdf");

  
/* output fdf */
  
fdf_save();

  
/* clean up */
  
fdf_close();
?>