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

Josh_B_369
Josh_B_369
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
11

Discussions

Discussions
0

Questions

Questions
4

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Josh_B_369
Customize the badges you want to showcase on your profile
Re: Export "Image Field" to Excel file - Adobe LiveCycle 27-01-2012
Hi,I do want the user to interact/change the image at runtime, but am looking for a way to have the image embedded when exported to a Excel file or similar table view.I did use an imagefield although when exported to CSV it has the image in multiple lines of XML code in multiple cells.Because the XML Source converts images into code I'm wondering if there is a way for Excel to be able to read the code (thus rendering back an image). Or potentially have the form not convert the image to XML at al...

Views

288

Likes

0

Replies

0
Export "Image Field" to Excel file - Adobe LiveCycle 26-01-2012
So I have a form created in LiveCycle Designer ES.The form contains the following fields which all export well into a CSV file which can be easily copied over to a formatted Excel template.Text FieldsCheck BoxesDate/Time FieldsIt also contains the following items which are ignored when exporting to a CSV file.TextImageButtonI recently tried to add a "Image Field" that is an editable field in the form, in the hope that the image could be added to the row of cells in the CSV file. (which converted...

Views

2.1K

Likes

0

Replies

3
Re: Calculate Difference in Days Between two Dates - Adobe LiveCycle 08-03-2011
Where "DateField01" = user entered date fieldWhere "DateFiled02" = Current Date/Time (Runtime Property)where "Subform" = the subform containing DateField01My script now resembles:var oneDay = 24*60*60*1000;var firstDate = new Date(Subform.DateField01.rawValue); var secondDate = new Date(DateField02.rawValue); (firstDate.getTime() - secondDate.getTime()) / oneDay;I tried adding:app.alert(String(diffDays));Although I assume the reason I didn't get an error is because DateField01 is empty when the ...

Views

1.5K

Likes

0

Replies

0
Re: Calculate Difference in Days Between two Dates - Adobe LiveCycle 08-03-2011
Thanks!Just wondering how to reference another date field in place of either or both of the dates.Ex.Instead of static dates:var oneDay = 24*60*60*1000;var firstDate = new Date(2008, 01, 22); var secondDate = new Date(2008,01,12); Math.abs((firstDate.getTime() - secondDate.getTime())/(oneDay));...Reference fields:var oneDay = 24*60*60*1000;var firstDate = new Date(SubForm_DateField01); var secondDate = new Date(DateField02); Math.abs((firstDate.getTime() - secondDate.getTime())/(oneDay));I also ...

Views

1.5K

Likes

0

Replies

0
Re: Calculate Difference in Days Between two Dates - Adobe LiveCycle 08-03-2011
This is exactly what happened. I got an error stating "10" (the number of days between 2008,01,12 and 2008,01,22.In terms of assigning the value incorrectly, my "event" is set on "calculate"Under Objects > Value > Type is "Calculated - Read Only" ("Calculation Script" selected)Under Objects > Field > Patterns I have no patterns set.Under Objects > Binding > Default Binding set to "None"Under Objects > Binding > Data Format set to "Float"I'm not sure which of these are incorrect or if I've left o...

Views

1.5K

Likes

0

Replies

0
Re: Calculate Difference in Days Between two Dates - Adobe LiveCycle 08-03-2011
I don't recieve a result when adding this code to a text or numeric field. (double checked to make sure JavaScript is selected as opposed to FormCalc)The second example I referenced should be self containing, therefore have no requirements pertaining to the field the script that it was added to.

Views

1.5K

Likes

0

Replies

0
Re: Calculate Difference in Days Between two Dates - Adobe LiveCycle 07-03-2011
I tried using the below code (and other variations) to see if I could get any result in a field but came up without any.var oneDay = 24*60*60*1000;var firstDate = new Date(2008,01,12); var secondDate = new Date(2008,01,22); var diffDays = Math.abs((firstDate.getTime() - secondDate.getTime())/(oneDay));

Views

1.5K

Likes

0

Replies

0
Calculate Difference in Days Between two Dates - Adobe LiveCycle 04-03-2011
Hi,I'm trying to figure out how to calculate the difference in days between two dates using JavaScript in LiveCycle. (JavaScript knowledge = minimal)Where "Start_Date" and "Current_Date" are the names of the two dates in the Hierarchy palette. (both Date/Time Field)*Current date is using the Object > Value > Runtime Property > Current Date/TimeI need a Text or Numeric field displaying the difference in days. (Difference_in_Days)I've noticed the following code being pretty standard amongst other ...

Views

7.5K

Likes

0

Replies

10
Re: Sum of Radio Button Values - Adobe LiveCycle 01-03-2011
I found the following solution using FormCalc but would rather use the JavaScript equivilant.sum(Subform1.Question1, Subform2.Question2)Is there a Javascript script equal to the FormCalc script above?

Views

598

Likes

0

Replies

0
Sum of Radio Button Values - Adobe LiveCycle 28-02-2011
Hi,I'm looking to add the values of separate radio buttons together. (JavaScript knowledge = minimal)If I have one group of radio buttons with 5 different answers (each answer with a value 1-5). Then I have another group of radio buttons with 2 different answers (each answer with a value 1-2).From these two groups of radio buttons I want to have a numeric field that calculates the sum of the two groups of radio buttons. (this would range from a total value of 2-7)Take for instance the following ...

Views

4.2K

Likes

0

Replies

3