Hi Paul, Put an extra visible button which will be your submit
button.This "extra" button will do validations and all pre-submission
checks.Once all checks have passed, then execute a "hidden" email submit
button.Code Example:var formPassedValidations = false;if
(formPassedValidations == true)
btnHiddenEmailSubmit.execEvent("click");else hope this is what you are looking for... have fun!Regards, Luigi
D'Amico8 BIT PLATOONdesign develop deploywww.8bitplatoon.com
off the top of my head... the following comes to mind:1) Either a
setting in Reader (an unknown one to me)2) Either reinstall reader and
see (was Reader or Outlook installed first on the machine)3) Does the
PDF only give this error when "run" from within designer, or does it
also do it when run in stand-alone mode.
Ensure you are using the FLOW layout in the containing subform, then
everything will "move" accordingly.Best practice for starters: -> Make
you Root-Subform flowed, and then build from there
Sudha....the technical aspect you want to prove is calling another
webpage... What is at the end of the webpage is irrelevant....your test
code is: xfa.host.gotoURL(www.google.co.za);you work code
is:xfa.host.gotoURL(http://someserver/pdfs/mypdf.pdf);have
fun...------------------8 BIT PLATOON design develop
deploywww.8bitplatoon.com
Radzmar has given you one optionelse you can use an image....or probably
a nice way is use a MASSIVE MASSIVE checkbox or radio button and set the
"Button Style" to "cross" (obviously taking away the borders and
customizing the appearance)Have fun...----------------------8 BIT
PLATOONdesign develop deploywww.8bitplatoon.com
Hi,You can use the following script, with RGB
specs:TextField1.border.fill.color.value = "196,196,196";There are many
other sections you can highlight and bold, etc... this will highlight
the entire field.have fun...
I thought the purge option, was to purge the files in the "input"
folder.However a solution could be:Write another process, that:1) Runs
every 24 hours (using the "wait" activity)2) Reads all files in the
"Result" folder (use the "find" activity)3) Iterate through each file
("read Document" activity)4) Checks each files created property - either
using JAVA or possibly in the SetValue activity using the
getDocAttribute command.hope this helps
Hi Steven, regarding the "add new line!" see
forum:http://forums.adobe.com/thread/960612?tstart=0I tried many
different options, and the most consistent was to go the executeScript
way.Make a resuable component or something like that.hope it helps...