how could I add a message that appear only when you open the Form 1st time
and this message contain text with multi lines
exactly like this :
I need the whole the code , and where could I put it please
I mad this photo on photoshop
Adobe Experience Manager Forms
Solved! Go to Solution.
to call a script on form initialize place the script on the docReady event:
Once you create the script you can edit in the script editor:
You can put the message on form initialise of guideroot container.
Views
Replies
Total Likes
this code give the message
===========
xfa.host.messageBox(" السلام عليكم ورحمة الله وبركاته ... يعطيك قالب التقارير تعليمات مباشرة عن مكوناته وكيفية التعامل مع حقوله كل ما عليك فعله هو وضع زر الماوس على الحقل لتعرف المطلوب ", "Alert", 3);
but I need the message apear on there lines :
first line :
السلام عليكم ورحمة الله وبركاته
2nd line :
يعطيك قالب التقارير تعليمات مباشرة عن مكوناته وكيفية التعامل مع حقوله
3rd line :
يعطيك قالب التقارير تعليمات مباشرة عن مكوناته وكيفية التعامل مع حقوله كل ما عليك فعله هو وضع زر الماوس
==how can write the code to make the message on 3 lines ?
Views
Replies
Total Likes
Have you tried inserting \n
It may insert a new line character.
E.g.
"Abc def"
"Abc\n def"
Views
Replies
Total Likes
In html string you can try adding <br> for new line
"This text contains<br>a line break."
Use this
xfa.host.messageBox("السلام عليكم ورحمة الله وبركاته\u000a يعطيك قالب التقارير تعليمات مباشرة عن مكوناته وكيفية التعامل مع حقوله \u000a يعطيك قالب التقارير تعليمات مباشرة عن مكوناته وكيفية التعامل مع حقوله كل ما عليك فعله هو وضع زر الماوس ");
Thanks,
Mayank
Views
Replies
Total Likes
to call a script on form initialize place the script on the docReady event:
Once you create the script you can edit in the script editor:
thanks Mayank .. thank you so much
I have have one more Q .. hope you can help me
Views
Replies
Total Likes
Great that the solution worked for you!
I will check and let you know about the other question also.
Thanks,
Mayank Gandhi
Views
Replies
Total Likes