Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Markus_Heller
Markus_Heller
Offline

Badges

Badges
7

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
11

Discussions

Discussions
0

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Markus_Heller
Customize the badges you want to showcase on your profile
Preferences Folder - Adobe LiveCycle 09-07-2009
Hello all,the question I'm asking here is actually related to a different issue, so I'll give the whole context.I have issues with image fields in Livecycle Designer, no matter if I use the one that comes with Acrobat Pro 8.0 or 9.0. Image fields have at least one bug: The anchor position in the layout is ignored, the image is *always* anchored top middle. In version 8.0, the picture was always scaled to fill the rectangle, causing a skewed aspect ratio, no matter what scaling option was selecte...

Views

386

Likes

0

Replies

0
Specify Subject and File Name when using E-Mail Submit button - Adobe LiveCycle 24-06-2009
Hello,I'm using an E-Mail Submit button in my form, and I'd like to specify the Subject of the E-Mail and File Name of the file attached to the e-mail when the form is submitted.I know I can do this by using a regular button and mailDoc, but that allows me to send the form in pdf. My clients only have the reader, so I need to be able to send the data in XML format.The reason why I like using the E-Mail Submit Button is that I can easily ensure that all required fields are non-blank.So again, how...

Views

1.1K

Likes

0

Replies

1
Livecycle Designer ES 8.2 and Preferences Folder - Adobe LiveCycle 03-06-2009
Hello all,the question I'm asking here is actually related to a different issue, so I'll give the whole context.I have issues with image fields in Livecycle Designer, no matter if I use the one that comes with Acrobat Pro 8.0 or 9.0. Image fields have at least one bug: The anchor position in the layout is ignored, the image is *always* anchored top middle. In version 8.0, the picture was always scaled to fill the rectangle, causing a skewed aspect ratio, no matter what scaling option was selecte...

Views

1.3K

Likes

0

Replies

1
Re: Image field issues in Adobe LiveCycle Designer - Adobe LiveCycle 02-06-2009
Nope, nothing got fixed. Similar issues here with Adobe Pro 8.0 and 9.0, image fields just don't work properly. Either the aspect ratio is screwed up, or the anchor position is being ignored.Haven't seen a fix yet. Markus

Views

342

Likes

0

Replies

2
XML Parsing Error - Adobe LiveCycle 29-05-2009
Hello *,the following works:if(subSection == "R"){ //good }but if(subSection == "R" && ProjectNo.length == 5){ //good }gives ``Xml parsing error: not well-fromed (invalid token) (error code 4). Why? Or, in other words, how do I express the operator AND correctly?Thanks and Cheers!Markus

Views

887

Likes

0

Replies

0
Re: Validation of Text Fields (LCD 8.0) - Adobe LiveCycle 28-05-2009
Professor,this works! I might play around with it some more and come up with further questions, but your code works!Thanks again!Markus

Views

162

Likes

0

Replies

0
Re: Validation of Text Fields (LCD 8.0) - Adobe LiveCycle 28-05-2009
i did that, but still nothing happened. Maybe I'm doing something completely wrong ...Attached is a test pdf file, and pasted below is the corresponding complete XML code. Maybe that'll help you show me what I'm doing wrong ...Thanks so much for youer time and help, I appreciate it a lot!MarkusXML Code: A9999 Project #: A9999 var ProjectNo=this.rawValue; var subSection = ProjectNo.substring(1,0); if(subSection == "R"){ //good } else if(subSection == "D"){ //g...

Views

144

Likes

0

Replies

0
Re: Validation of Text Fields (LCD 8.0) - Adobe LiveCycle 28-05-2009
Sorry, the code snippet didn't ake it.Here it is: A9999 Project #: A9999 var ProjectNo=Project; var subSection = ProjectNo.substring(1,0); if(subSection == "R"){ //good } else if(subSection == "D"){ //good } else if(subSection == "G"){ //good } else if(subSection == "S"){ //good } else if(subSection == "C"){ //good } else { xfa.host.messageBox("Value in this should start with one of B, C, D, E"); } Markus

Views

146

Likes

0

Replies

0
Re: Validation of Text Fields (LCD 8.0) - Adobe LiveCycle 28-05-2009
Hi LC Prof,thanks for the pointer. Unfortunately, I'm new to this whole XML/JS thing.Here's the complete XML code snippet for the field including myattempt to adapt your suggestion: A9999 topInset="1mm"> Project #: A9999 var ProjectNo=Project; var subSection = ProjectNo.substring(1,0); if(subSection == "R"){ //good } else if(subSection == "D"){ //good } else if(subSection == "G"){ //good } else if(subSection == "S"){ //good } else if(subSection == "C"){ //good } else ...

Views

144

Likes

0

Replies

0
Validation of Text Fields (LCD 8.0) - Adobe LiveCycle 28-05-2009
Hello,I have a text field where users enter a code consisting af one of four letters, say B, C, D, or E, followed by 4 digits, e.g. B0123. I know how to validate the pattern to get a character followed by 4 digits using A9999 in the Value-->Validation Pattern. But that allows G1234, and G is not an ``allowed'' letter.Now, I'd like to use something like the following for the validation pattern in order to make sure that only the 4 allowed letters are used:Validation Pattern: 'B'9999 | 'C'9999 | '...

Views

1.8K

Likes

0

Replies

7