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

Steve_L_Walker
Steve_L_Walker
Offline

Badges

Badges
36

Accepted Solutions

Accepted Solutions
212

Likes Received

Likes Received
198

Posts

Posts
1435

Discussions

Discussions
119

Questions

Questions
1316

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Steve_L_Walker
Customize the badges you want to showcase on your profile
Re: Comb of (number) character ... - Adobe LiveCycle 11-11-2011
stwalker.adobe@gmail.com

Views

783

Likes

0

Replies

0
Re: Workbench DAtabase Connectivity - Adobe LiveCycle 11-11-2011
Is the DB2 database the same database being used for LC?If not, you need to add an entry in a file *-ds.xml located under C:\Adobe\LiveCycle8.2\jboss\server\all\deploy. There should be at least two *-ds.xml files in the directory for the LC installation. The data source xml files add the JNDI names visible in Workbench. I'd recommend creating a separate *-ds.xml for application data source so as not to mess with LC. You can copy-and-paste one of the datasources nodes and create a new file, such ...

Views

514

Likes

0

Replies

0
Re: Comb of (number) character ... - Adobe LiveCycle 11-11-2011
Is the form saved as a dynamic?The following works in the attached.// form1.page1.subform1.dd::exit - (JavaScript, client)var str = this.rawValue; switch (str) { case "A": form1.page1.subform1.resolveNode("tf.ui.#textEdit.comb").numberOfCells = "9"; break; case "B": form1.page1.subform1.resolveNode("tf.ui.#textEdit.comb").numberOfCells = "8"; break; case "C": form1.page1.subform1.resolveNode("tf.ui.#textEdit.comb").numberOfCells = "7"; break; default: form1.page1.subform1.resolveNode("tf.ui.#tex...

Views

845

Likes

0

Replies

0
Re: Combine .ps files using PDF Generator - Adobe LiveCycle 10-11-2011
The attached process is as follows:It uses PDF Generator > Distiller > Create PDF to generate two PDFs from two .ps files, uses Assembler to merge the PDFs into a single PDF and extracts the assembled PDF from the AssemblerResult object.Steve

Views

687

Like

1

Replies

0
Re: Help on Caluculations - Adobe LiveCycle 10-11-2011
Sure.stwalker.adobe@gmail.com

Views

519

Likes

0

Replies

0
Re: Livecycle ES Installtion - Adobe LiveCycle 10-11-2011
Debadas,It looks like the current release of LC (rebranded ADEP) supports MySQL 5.1.30. http://help.adobe.com/en_US/enterpriseplatform/10.0/supported_platforms.htmlConfiguration notes can be found here...http://help.adobe.com/en_US/enterpriseplatform/10.0/PrepareInstallSingle/WS624e3cba99b79e12-38fb9c7e12eea97fd78-7fc3.htmlSteve

Views

592

Likes

0

Replies

0
Re: Password protect xdp file - Adobe LiveCycle 10-11-2011
Dariush,There is no native way to password protect an .xdp file. If you have a copy of Acrobat you could add the .xdp as an attachment to a PDF and password protect the PDF.Steve

Views

557

Likes

0

Replies

0
Re: automatic tab - Adobe LiveCycle 09-11-2011
I am not sure I follow. The code below will take a string, break it into two pieces and then put the two pieces together with a horizontal tab in the middle.// form1.page1.tf::exit - (JavaScript, client)var str = this.rawValue;var firstFiveChars = str.substring(0,5);var remainingChars = str.substring(5,str.length);this.rawValue = firstFiveChars + "\t" + remainingChars;Steve

Views

531

Likes

0

Replies

0
Re: Error in encoded data in 2D barcode - Adobe LiveCycle 09-11-2011
Kristine,What format is being used in barcode, delimited or XML?Steve

Views

586

Likes

0

Replies

0
Re: Adding Date/Time Field + X Number of Days - Basic Calculation Question - Adobe LiveCycle 09-11-2011
The attached calculates dates for next six days starting Monday. It forces the start day to be a Monday also.// form1.page1.mon::exit - (FormCalc, client)var dayNum = Date2Num($.formattedValue,"MM/DD/YYYY") form1.page1.dayOfWeek.execCalculate()if (dayOfWeek.rawValue == "Mon") then tues.rawValue = Num2Date(dayNum+1,"MM/DD/YYYY") wed.rawValue = Num2Date(dayNum+2,"MM/DD/YYYY") thurs.rawValue = Num2Date(dayNum+3,"MM/DD/YYYY") fri.rawValue = Num2Date(dayNum+4,"MM/DD/YYYY") sat.rawValue = Num2Date(day...

Views

439

Likes

0

Replies

0
Likes given to
Likes from