Expand my Community achievements bar.

Debadas
Debadas
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Hello,Horizontal Scroll bar in the List Box is possible, by changing the Anchor option present in the Layout palette to 90 degree.But the text of the list box canot rotate according to the layout of the List Box rotation.Thanks,Debadas.

    Type

    Questions

    Views

    359

    Likes

    0

    Replies

    0
  • Hello MDawn,You can write the following script in the "postSubmit" event of the Email buttonapp.execMenuItem("SaveAs");  // to save the formxfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 0, 0, 0, 0);  // to Print the formThanks,Debadas.

    Type

    Questions

    Views

    245

    Likes

    0

    Replies

    0
  • HelloActually this isn't  the main reason for using FormCalc as opposed to JavaScript,FormCalc is not as powerful or as ubiquitous as JavaScript. However, it  is ideal for nonprogrammerswho need to add calculations to their forms.  If you come from a Microsoft Excel background andyou don't have any ...

    Type

    Questions

    Views

    951

    Likes

    0

    Replies

    0
  • Hello,I saw this example, actually what do you want to do with the background and font color.Thanks,Debadas

    Type

    Questions

    Views

    662

    Likes

    0

    Replies

    0
  • Hello,You can do the following changes in the dropdownlist object to satisfy your requirements i.e.for a Sunken box :you can select the  Object palette > field > Appreance > Choose Sunken BoxWhite font colour :for white font color first you select the text then right click on that then select the Fo...

    Type

    Questions

    Views

    662

    Likes

    0

    Replies

    0
  • Hello,You can make two check boxes  to be mutually exclusive by writing the following codein the click  event i.e.for check box B1:-if(this.rawValue == 1)    {            B2.rawValue = 0;    }for check box B2:-if(this.rawValue == 1)     {             B1.rawValue = 0;     }Thanks,Debadas.

    Type

    Questions

    Views

    424

    Like

    1

    Replies

    0
  • Hello,You can give the background color of the drop down list according to the value selectedby writing the following script in the exit event:if(this.rawValue == "High")    {        this.fillColor="255,0,0"; //RED    }    if(this.rawValue == "Low")    {        this.fillColor="0,128,0"; //Green    }...

    Type

    Questions

    Views

    678

    Likes

    0

    Replies

    0
  • Hello Abhishek,You can directly specify the particular specifications of an object (in mm), which are given,in the X and Y co-ordinates of the layout palette.e.g. -: X: 23mm        Y: 45mmThis amount is automatically changed to inch format.Thanks,Debadas.

    Type

    Questions

    Views

    1.8K

    Like

    1

    Replies

    0
  • Hello Srinivas,you can write the following script for coloring the check box:-this.ui.checkButton.border.fill.color.value="255,0,0";It will fill the check box in RED color.Thanks,Debadas.

    Type

    Questions

    Views

    200

    Likes

    0

    Replies

    0
  • Hello Prasad,You can write the script to display off drop down arrow button when the saveAs button is clicked, by following three steps1) First you write script in the Click event :-  app.execMenuItem("SaveAs");   Then you write the script in the mouseDown event:-  if (xfa.event.name == "mouseDown"...

    Type

    Questions

    Views

    206

    Likes

    0

    Replies

    0