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

Paul_Butenko
Paul_Butenko
Offline

Badges

Badges
22

Accepted Solutions

Accepted Solutions
27

Likes Received

Likes Received
23

Posts & Comments

Posts & Comments
234

Discussions

Discussions
0

Questions

Questions
16

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Paul_Butenko
Customize the badges you want to showcase on your profile
Re: Acrobat versions and form - Adobe LiveCycle 04-10-2009
Hi,You can use xfa.host.version property to define version of Reader and write if condition to prevent form opening.BR,Paul Butenko

Views

430

Like

1

Replies

0
Re: Hiding and unhiding unused sections of a form - Adobe LiveCycle 04-10-2009
Hi,For subform which should moved under Subform tab select Content field to Flowed, this will make your subform flowable.BR,Paul Butenko

Views

442

Likes

0

Replies

0
Re: Help - Add row and remove row not working! - Adobe LiveCycle 04-10-2009
Hi,To remove specified row you have to use functionTable1._Row1.removeInstance(ind);where ind is index of the row.You should put button delete under each row of the table, and write onClic script:Table1._Row1.removeInstance(this.parent.index);BR,Paul Butenko

Views

340

Likes

0

Replies

0
Re: Help - Add row and remove row not working! - Adobe LiveCycle 02-10-2009
Hi,Under Object tab - Binding - Set checkbox repeat for each data item, and set max value of elements.

Views

339

Likes

0

Replies

0
Re: Removing fill color of checkbox field upon deselection. - Adobe LiveCycle 02-10-2009
Hi,This is links about some basics related javascript syntax and control flow:http://home.cogeco.ca/~ve3ll/jstutor2.htmhttp://home.cogeco.ca/~ve3ll/jstutor3.htmAlso, I've attached some docs related Adobe scripting and FormCalc language.BR,Paul Butenko

Views

516

Likes

0

Replies

0
Re: Newbie question - importing long lists of dropdown values - Adobe LiveCycle 01-10-2009
Hi,You can put some string with values that you need splitted by some char: combova1,comboval2, comboval3then you can use this script:dropValues = stringVal.rawValue;// add each choice to drop downchoicesBR, = dropValues .split(",");for (var i = 0; i < numchoices; i=i+2){yourDropDown.addItem(choices[i], choices[i+1]);}var numchoices = choices.length;var numchoices = choices.length;for (var i = 0; i < numchoices; i=i+2){yourDropDown.addItem(choices[i], choices[i+1]);}Paul Butenko

Views

312

Like

1

Replies

0
Re: difference within xfa - Adobe LiveCycle 01-10-2009
Hi,xfa.host.messageBox - simple messageBox like Javascript alert in web browsersxfa.layout - Represents the root of the layout model. Has some usefull methods like xfa.layout.relayout();xfa.form - Represents the root of the form model. To access some field you can use xfa.form.purchaseOrder.taxAlso check attached docs.BR,Paul Butenko

Views

454

Likes

0

Replies

0
Re: Removing fill color of checkbox field upon deselection. - Adobe LiveCycle 01-10-2009
Hi again,You had some mistakes in script:1) in condition you shoud use == instead =2) if (condition) but not if{condition}this is working script:if (this.rawValue == "1") { this.fillColor="244,254,114"; }else {this.fillColor="255,25,128";}Also see attach.BR,Paul Butenko

Views

523

Likes

0

Replies

0
Re: How do I enumerate a table that grows? - Adobe LiveCycle 30-09-2009
Hi,You can use index property.On initialize event of your field you can put script:this.rawValue = this.parent.index+1;See example attached.BR,Paul Butenko

Views

344

Likes

0

Replies

0
Re: Renaming a text object - Adobe LiveCycle 29-09-2009
Hi,Object tab - Binding - Name.

Views

431

Like

1

Replies

0
Likes given to
Likes from