<rss version="2.0">
		<channel>
			<title>FormAssembly.com Support Forum - All Discussions</title>
			<lastBuildDate>Sat, 21 Nov 2009 10:47:16 -0600</lastBuildDate>
			<link>http://www3.formassembly.com/forum/</link>
			<description></description>
			<generator>Lussumo Vanilla 1.1.5a</generator>
			<item>
		<title>Workflow question</title>
		<link>http://www3.formassembly.com/forum/discussion/430/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/430/</guid>
		<pubDate>Fri, 20 Nov 2009 22:44:23 -0600</pubDate>
		<author>mllb</author>
		<description>
			<![CDATA[I have a form that we use for registering players for a baseball league.<br /><br />Currently I ask for all the parent information then have &quot;add another response&quot; for each additional child beyond the first player registered.<br /><br />The biggest problem with this for my application is when exported as a csv file all the data is on one line and is time consuming for me to break the responses apart into single entries. I do not want to have the parents fill out their information again by filling out another form for each child they are registering. It seems that the workflow is precisely the cure for this but I have been trying to figure out a way to make it work correctly for our use.<br /><br />Upon completing the information needed for the first child is there a way to have them either click &quot;submit &amp; Pay&quot; or &quot;Add Another Player&quot;. If &quot;Submit &amp; Pay&quot; clicked they are then redirected to PayPal with the appropriate charges for the number of players they have registered thus far in the workflow. And of course, when clicking &quot;Add Another Player&quot; the common information is copied to the next players registration form?<br /><br />Any suggestions would be greatly appreciated.]]>
		</description>
	</item>
	<item>
		<title>Validate numerical range</title>
		<link>http://www3.formassembly.com/forum/discussion/429/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/429/</guid>
		<pubDate>Wed, 18 Nov 2009 14:52:47 -0600</pubDate>
		<author>dbuschho</author>
		<description>
			<![CDATA[Validate a field within a numerical range<br /><br />use by:<br />Including the code content in your custom code block.  Then add binding code like the one shown below into your custom code block, in order to link the validation to a given FormAssembly field.  Note the order of parameters is field_id, largest_value, smallest_value.<br /><br />&lt;script&gt;<br />setup_range(&quot;tfa_Intbetween100and&quot;,200.4,-100.1);<br />&lt;/script&gt;<br /><br /><br />example:<br />http://www.tfaforms.com/127819<br /><br />code:<br />&lt;script&gt;<br />wFORMS.behaviors.validation.rules.isInRange = { selector: &quot;.validate-range&quot;, check: 'validateRange'};<br /><br />wFORMS.behaviors.validation.messages.template_isInRange = &quot;The value provided is not in the range between %%1%% and %%2%%&quot;;<br />wFORMS.behaviors.validation.messages.isInRange = &quot;The value provided is not in the range between %%1%% and %%2%%&quot;;<br /><br /><br />wFORMS.behaviors.validation.instance.prototype.validateRange = function(element, value) {<br />var _value = parseFloat(value);<br />classAtts = element.className.split(&quot; &quot;);<br />var _larger = null;<br />var _smaller = null;<br />for(i = 0; i&lt;classAtts.length; i++){<br />	if(classAtts[i] == &quot;validate-range&quot;){<br />		if(classAtts[i+2]){<br />			_larger=parseFloat(classAtts[i+1]);<br />			_smaller=parseFloat(classAtts[i+2]);<br />		}<br />	}<br />}<br /><br />if( (_value &lt; _smaller) || (_value &gt; _larger) ){<br />	wFORMS.behaviors.validation.messages.isInRange = wFORMS.behaviors.validation.messages.template_isInRange;<br />	wFORMS.behaviors.validation.messages.isInRange = wFORMS.behaviors.validation.messages.isInRange.replace('%%1%%',_larger);<br />	wFORMS.behaviors.validation.messages.isInRange = wFORMS.behaviors.validation.messages.isInRange.replace('%%2%%',_smaller);<br /><br />	return false;<br />}<br /><br />return true;<br />}<br /><br />function setup_range(parent,larger,smaller){<br />base2.DOM.Element.addEventListener(document,'DOMContentLoaded',function(){<br />base2.DOM.bind(base2.DOM.Element.querySelector(document,&quot;#&quot;+parent)).addClass(&quot;validate-range &quot; + larger + &quot; &quot; +smaller);<br />});<br />}<br />&lt;/script&gt;]]>
		</description>
	</item>
	<item>
		<title>FormAssembly Forms / WordPress Plugin</title>
		<link>http://www3.formassembly.com/forum/discussion/306/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/306/</guid>
		<pubDate>Tue, 16 Dec 2008 17:09:47 -0600</pubDate>
		<author>dbuschho</author>
		<description>
			<![CDATA[There have been requests for a plug in to integrate FormAssembly forms with WordPress blogs.  We have now designed a (beta version) plugin that will integrate the two.  If you would like to help us out by testing it, please open a support request with the subject 'wordpress plugin'.<br /><br />The usage format once installed is installed:<br />[[formassembly formid='NNNN']]<br /><br />We'd also like to hear any ideas or suggestions on how to improve this plugin, or our integration with other CMS systems out there.]]>
		</description>
	</item>
	<item>
		<title>Confirm submission</title>
		<link>http://www3.formassembly.com/forum/discussion/244/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/244/</guid>
		<pubDate>Wed, 13 Aug 2008 17:58:42 -0500</pubDate>
		<author>Boomoirs</author>
		<description>
			<![CDATA[Hello<br />I'd like to use a form to enable people to create a small text advertisement. To prevent mischevious behaviour I'd like anyone submitting an ad to have to confirm the submission automatically ... much the same way as one uses double opt-in for collecting subscribers to a newsletter. Can I do this with FormAssembly?<br />thanks,]]>
		</description>
	</item>
	<item>
		<title>Email you when you get someone reply with the form.</title>
		<link>http://www3.formassembly.com/forum/discussion/428/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/428/</guid>
		<pubDate>Mon, 16 Nov 2009 17:10:59 -0600</pubDate>
		<author>Zach.Lundy</author>
		<description>
			<![CDATA[Like when someone on your website contacts you, you should get a email saying like you have a message waiting.<br /><br />Thanks]]>
		</description>
	</item>
	<item>
		<title>Anyone Got A Solid Example of Using the HTTP Post Connector with PHP/MYSQL?</title>
		<link>http://www3.formassembly.com/forum/discussion/426/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/426/</guid>
		<pubDate>Mon, 16 Nov 2009 00:10:07 -0600</pubDate>
		<author>lifestyle</author>
		<description>
			<![CDATA[Has anyone got a solid example (step by step, assuming the user knows PHP and MYSQL) of how to use the HTTP Post Connector to send variables to a script I host so I can stick the data in my database?  I don't get what I need to to have in my script and how I answer back to the Form Assembly mechanism when I have saved my data and am ready to complete the process...<br /><br />Basically, I LOVE form assembly for the simple approach to complex forms but it is imperative that I capture the form data in my own DB and I just cannot seem to get all the pieces of the puzzle from the docs and this forum.<br /><br />Anyone with some experience and a sample script would gain Karma by sharing with me and others with this challenge.  I pledge to post a script here when/if I get to understand how this works and can get my script to work.]]>
		</description>
	</item>
	<item>
		<title>Speed Up Form Snippit Embedding? (Pages Laaaaaaaaaaaaaag)</title>
		<link>http://www3.formassembly.com/forum/discussion/425/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/425/</guid>
		<pubDate>Mon, 16 Nov 2009 00:04:06 -0600</pubDate>
		<author>lifestyle</author>
		<description>
			<![CDATA[I have a simple form that I have embedded into a php page.  Since copying in the form, the page loads very slowly as it downloads all the dependent scripts etc...<br /><br />Can I download all the dependent scripts to my server and run the form using those scripts... still having it point back to FormAssembly when users submit it?  This would speed up my pageload.<br /><br />Is this allowed?  Has anyone else done this before?]]>
		</description>
	</item>
	<item>
		<title>Any Way To Change Error Box For Incomplete Form?</title>
		<link>http://www3.formassembly.com/forum/discussion/427/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/427/</guid>
		<pubDate>Mon, 16 Nov 2009 07:26:11 -0600</pubDate>
		<author>lifestyle</author>
		<description>
			<![CDATA[I am embedding a form in some i-framed sites and notice that when an incomplete form is submitted, a slick little javascript error box pops up to tell the user how many problems were found with their submission.  This is great BUT can I change the dialogue that references the calling site? <br /><br />Right now, it says &quot;The page at http://www.myserver.ca says:&quot;  I would like to either remove that line or modify it with a variable or otherwise customize it?<br /><br />Is this possible and if so, where do I look for the source?<br /><br />Thanks.]]>
		</description>
	</item>
	<item>
		<title>Using wForms with php and MySQL</title>
		<link>http://www3.formassembly.com/forum/discussion/188/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/188/</guid>
		<pubDate>Fri, 25 Apr 2008 09:22:15 -0500</pubDate>
		<author>Nouri</author>
		<description>
			<![CDATA[Hi,<br /><br />I'm looking for some code-examples, any help appreciated;<br /><br />So far I have only created auth and email forms using php and mysql in my web-life, and did that working from existing examples, which went easy for me because I understand the basics of many different programming languages and their syntaxes. However, now I need to create some fairly complex webforms for some people, and I bump into a lot of issues that are not so easy to find examples for.<br /><br />The intention is to make certain parts of a large MySQL database easier to add new records to, and/or change them, and for that I have to create some webforms. One important thing is that they want me to put many form actions on just one page, with one submit button (that is how I got the idea to use a conditional wForm script). For now let's assume all related fields are of the varchar(128) type to keep it simple.<br /><br />(Restricting access is not an issue (I have that down) because it works outside of the form using a cms-type thing, giving access for the form only to those that are allowed to add or change records etc.)<br /><br />Let me describe some of the involved structure and actions I need for one of the forms, because when I get one done (with help of some example code from you perhaps), it's easy for me to understand and create more out of it;<br /><br />In an existing (and already populated) TABLE_X the user needs to add a new record to field_x<br />but I need to check if needed field_x already exists, if it does, it should be selected from the database and query and echo a lot of contents under that form entry,<br />if it does not exist it should be (as filled in a textbox by the user) added to MySQL and then continue further down the form.<br />Aside from this, whatever the user has picked (picking an existing one or filling in something new) ALSO needs to go into field_y which resides in TABLE_Y and in field_z residing in TABLE_Z (but this happens hidden from the user).<br /><br />In the same form-page I then need to have a dropdown box showing the records in field_a from TABLE_A but show only those records in the dropdown for which field_b (from TABLE_A) has values (record) xx and yy.<br />The user selected item from field_a should be added as field_h which resides under TABLE_H<br /><br />Then I have a couple more that are similar to this on the same page. Basically I need a complete example (including where I need to put the include for the connection to the database) so I understand how to create the user selects existing or adds new record issue in a webform, plus I'm at a total loss on doing the cross table writing and reading in one form.<br /><br />If anyone could provide a simple example using the exact table and field names mentioned in my puzzle above, I'd be on my way and very thankful!<br /><br />Thanks!<br /><br />Nouri]]>
		</description>
	</item>
	<item>
		<title>Email validation</title>
		<link>http://www3.formassembly.com/forum/discussion/60/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/60/</guid>
		<pubDate>Tue, 20 Nov 2007 16:48:08 -0600</pubDate>
		<author>strangepl</author>
		<description>
			<![CDATA[Hi folks,<br /> I would like to validate email addresses on a form i.e. type an address in twice and validate that they are the same constructed in a propper format. Is this possible? By the way formassembly is absolutely fabulous and has blown me away big time. I am a 4 hour old member.<br /><br /><br />Regards,<br /><br />strangepl]]>
		</description>
	</item>
	<item>
		<title>Can I use this API to create a form with form assembly?</title>
		<link>http://www3.formassembly.com/forum/discussion/424/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/424/</guid>
		<pubDate>Thu, 12 Nov 2009 16:53:05 -0600</pubDate>
		<author>repairdental</author>
		<description>
			<![CDATA[I have Form Assembly pro account. I am also using a hosted ecommerce solution by bigcommerce.com <br />They have an API. I would like the invoice info for each customer to be sent to Form Assembly using the bigcommerce API. This invoice info would be turned into a form and emailed to the customer's email address and to a third party fulfillment company. I would like to remove some fields such as &quot;price&quot; so it doesnt show in the new form. <br /><br />Can you let me know if this is possible and if so, how can I implement it? <br /><br />Thanks in advance,<br />Jim<br /><br />Here is a link to the <br />the Bigcommerce.com API PDF documentation. http://www.bigcommerce.com/pdf/Big_Commerce_API_Guide_1.0.pdf]]>
		</description>
	</item>
	<item>
		<title>Multiple Responses</title>
		<link>http://www3.formassembly.com/forum/discussion/423/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/423/</guid>
		<pubDate>Thu, 12 Nov 2009 14:52:43 -0600</pubDate>
		<author>Education@Roundabout</author>
		<description>
			<![CDATA[I am trying to enter a whole set of responses into a form I built. However, after I enter the first one I get the &quot;this form has already been submitted&quot; error message. I don't seem to have a &quot;reload&quot; button. What can I do get around this problem?]]>
		</description>
	</item>
	<item>
		<title>Repeatable answers</title>
		<link>http://www3.formassembly.com/forum/discussion/421/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/421/</guid>
		<pubDate>Mon, 09 Nov 2009 23:23:45 -0600</pubDate>
		<author>Oasis</author>
		<description>
			<![CDATA[We are developing a Loan Application form where there my be multiple borrowers.<br /><br />My question is:  Where applicant 2 has the same address details as Applicant 1 is there a way for populate the fields for applicant 2 with the details from applicant 1?]]>
		</description>
	</item>
	<item>
		<title>Non Printing Fields</title>
		<link>http://www3.formassembly.com/forum/discussion/422/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/422/</guid>
		<pubDate>Thu, 12 Nov 2009 01:17:24 -0600</pubDate>
		<author>Oasis</author>
		<description>
			<![CDATA[Is it possible to identify a field so that it won't print?  As an example we may have a broker complete an application form for a client and in presenting that application to a funder we don't want the original brokers name on the printed form.]]>
		</description>
	</item>
	<item>
		<title>Move the placement of next/previous buttons</title>
		<link>http://www3.formassembly.com/forum/discussion/387/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/387/</guid>
		<pubDate>Mon, 14 Sep 2009 15:43:05 -0500</pubDate>
		<author>st8</author>
		<description>
			<![CDATA[Hello, I am using a mult-page form on my own site from the source code.<br /><br />How can I separate the next/previous buttons? I would like to be able to move the previous button to the top of the form.<br /><br />Please help. Thanks,<br /><br />Steven]]>
		</description>
	</item>
	<item>
		<title>Conditional Questions</title>
		<link>http://www3.formassembly.com/forum/discussion/419/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/419/</guid>
		<pubDate>Mon, 09 Nov 2009 03:39:38 -0600</pubDate>
		<author>Oasis</author>
		<description>
			<![CDATA[Is it possible to have an entire section appear based on a selection.  For example we are developing a loan application.  Because there may be multiple applications if a user clicks a button saying there is an additional borrower it would be great to have the section with all the 2nd borrowers questions appear.<br /><br />Graham]]>
		</description>
	</item>
	<item>
		<title>Calendar related javascript</title>
		<link>http://www3.formassembly.com/forum/discussion/420/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/420/</guid>
		<pubDate>Mon, 09 Nov 2009 12:27:04 -0600</pubDate>
		<author>dbuschho</author>
		<description>
			<![CDATA[Two calendar related javascript functions that have been asked for:<br />1.  Age calculation from date of birth calendar field<br /><br />use by:<br />setting DOB calendar field to variable (example: _DOB)<br />in a new hidden text field add the formula: _calcAge(_DOB)<br />the field will be set to the age in years of the text field rounded down to the nearest year.<br /><br />example:<br />http://app.formassembly.com/126030<br /><br />code:<br />&lt;script&gt;<br />function _calcAge(dob){<br />if(dob == 0){<br />  return 0;<br />}<br /><br />var _now = new Date();<br />var _dob = new Date(dob);<br /><br />return Math.floor( (_now-_dob) / (1000*60*60*24*365.25) );<br />}<br />&lt;/script&gt;<br /><br />--------------------------<br /><br />2.  Validating one calendar as older than a second<br />use by:<br />adding code into custom code block<br />then adding a new script block like:<br />&lt;script&gt;<br />linkCalendars(&quot;tfa_Date1&quot;,&quot;tfa_Date2&quot;);<br />&lt;/script&gt;<br />where tfa_Date1 is the id of the first calendar field, and tfa_Date2 is the second which must be older.<br /><br />example:<br />http://app.formassembly.com/126048<br /><br />code:<br /><br />&lt;script&gt;<br />wFORMS.behaviors.validation.rules.isOlderThan = { selector: &quot;.validate-older&quot;,           check: 'validateOlder'};<br /><br />wFORMS.behaviors.validation.messages.isOlderThan = &quot;Your date selection is invalid.  This value must be after the first value&quot;;<br /><br />wFORMS.behaviors.validation.instance.prototype.validateOlder = function(element, value) {<br />        var olderDate= new Date(value);<br />		//Find younger date ID<br />		classAtts = element.className.split(&quot; &quot;);<br />		_id = &quot;&quot;;<br />		for(i = 0; i&lt;classAtts.length; i++){<br />			if(classAtts[i] == &quot;validate-older&quot;){<br />			   if(classAtts[i+1]){<br />			     _id=classAtts[i+1];<br />				 break;<br />			   }<br />			}<br />		}<br />		<br />var youngerDateValue = document.getElementById(_id).value;<br />var youngerDate = new Date(youngerDateValue );<br />		<br />        return this.isEmpty(value) || (olderDate &gt; youngerDate);<br />}<br /><br />function linkCalendars(parent,child){<br />base2.DOM.Element.addEventListener(document,'DOMContentLoaded',function(){<br />base2.DOM.bind(base2.DOM.Element.querySelector(document,&quot;#&quot;+child)).addClass(&quot;validate-older &quot; + parent);<br />});<br />}<br />&lt;/script&gt;<br /><br />-----------------]]>
		</description>
	</item>
	<item>
		<title>Forms and identifying duplicate Salesforce records</title>
		<link>http://www3.formassembly.com/forum/discussion/416/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/416/</guid>
		<pubDate>Tue, 03 Nov 2009 15:59:51 -0600</pubDate>
		<author>mlongshore</author>
		<description>
			<![CDATA[Hi everyone,<br />Is there a way for FormAssembly to identify an existing record in Salesforce and update that record (e.g., when someone fills out a web form but they're already in Salesforce as a contact)?<br /><br />Thanks for your help!]]>
		</description>
	</item>
	<item>
		<title>I'm having problems reading my replies.</title>
		<link>http://www3.formassembly.com/forum/discussion/418/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/418/</guid>
		<pubDate>Fri, 06 Nov 2009 12:33:21 -0600</pubDate>
		<author>vickielane</author>
		<description>
			<![CDATA[Everytime I try to read them it keeps asking me to login. I've logged in about six times and I keep getting kicked off. Can someone please help? <br /><br />Thank you !<br />VICKIELANE]]>
		</description>
	</item>
	<item>
		<title>Limiting the number of form submission?</title>
		<link>http://www3.formassembly.com/forum/discussion/417/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/417/</guid>
		<pubDate>Thu, 05 Nov 2009 18:52:39 -0600</pubDate>
		<author>xero.simonp</author>
		<description>
			<![CDATA[We would like to create a signup form for an event we plan to run and Form Assembly seems to tick all the right boxes functionality wise with just one exception... we need to limit the amount of attendees. Is there a way to limit the amount of respondants? Perhaps by disabling the form when a certain number of submissions have been made?]]>
		</description>
	</item>
	<item>
		<title>Customizing the body of email notifications</title>
		<link>http://www3.formassembly.com/forum/discussion/415/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/415/</guid>
		<pubDate>Mon, 02 Nov 2009 15:03:00 -0600</pubDate>
		<author>jlanceho</author>
		<description>
			<![CDATA[Hi,<br /><br />I would like to customize the body of email notifications so that they take up less space.  My current form prints from Outlook onto 3 pages, and that is way too many.  Is there a way I can customize the HTML that is sent in the email notification?<br /><br />Thanks,<br />Jeremy]]>
		</description>
	</item>
	<item>
		<title>Usernam change</title>
		<link>http://www3.formassembly.com/forum/discussion/414/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/414/</guid>
		<pubDate>Tue, 27 Oct 2009 16:26:51 -0500</pubDate>
		<author>thefatjeweller</author>
		<description>
			<![CDATA[Would you please change my username to thecurvyjeweller as I have had a business name change.  Many thanks :)]]>
		</description>
	</item>
	<item>
		<title>Agregate report not reporting correctly</title>
		<link>http://www3.formassembly.com/forum/discussion/413/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/413/</guid>
		<pubDate>Mon, 26 Oct 2009 21:56:07 -0500</pubDate>
		<author>thefatjeweller</author>
		<description>
			<![CDATA[My agregate report shows some answers as  &quot;not answered&quot;, but the customers have answered the question.  Can anyone help plse?]]>
		</description>
	</item>
	<item>
		<title>For Homepage quirk - can this be fixed?</title>
		<link>http://www3.formassembly.com/forum/discussion/411/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/411/</guid>
		<pubDate>Mon, 26 Oct 2009 07:23:11 -0500</pubDate>
		<author>martin.hawes@suntrust.com</author>
		<description>
			<![CDATA[I like the new home form page. Having a method to group the forms is real nice. I have notice each time I change my view however, all the groups I have collapsed get expanded again. This is REAL annoying. Is there any way to have the browser remember what I have collapsed and what is expanded? Otherwise, what is the point of having that functionality if it just gets reset to expand all on each page change?]]>
		</description>
	</item>
	<item>
		<title>Saving form error : &quot;String could not be parsed as XML&quot;</title>
		<link>http://www3.formassembly.com/forum/discussion/410/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/410/</guid>
		<pubDate>Mon, 26 Oct 2009 05:18:06 -0500</pubDate>
		<author>orsuser09</author>
		<description>
			<![CDATA[Hi there,<br /><br />While editing a form and trying to save it, I received the following error: &quot;String could not be parsed as XML&quot;. I have changed the title of the form, some questions inside it and a picture attached to it, and I have done that before with no problems whatsoever, yet now I am incapable of saving the form.<br /><br />Do you have any idea why this is happening or how can I solve the problem?<br /><br />PS. I also have to mention I am in a sort of a rush, so any quick reply will surely be appreciated!<br /><br />Thanks, <br />Andrei]]>
		</description>
	</item>
	<item>
		<title>Email being shown as user in forum</title>
		<link>http://www3.formassembly.com/forum/discussion/412/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/412/</guid>
		<pubDate>Mon, 26 Oct 2009 07:25:25 -0500</pubDate>
		<author>martin.hawes@suntrust.com</author>
		<description>
			<![CDATA[How do I change my displayed ID in the forum from my email address to something else?]]>
		</description>
	</item>
	<item>
		<title>PayPal</title>
		<link>http://www3.formassembly.com/forum/discussion/409/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/409/</guid>
		<pubDate>Fri, 23 Oct 2009 10:55:20 -0500</pubDate>
		<author>ArunMurugavel</author>
		<description>
			<![CDATA[Is it possible to associate a different paypal account with each form?]]>
		</description>
	</item>
	<item>
		<title>New form home page</title>
		<link>http://www3.formassembly.com/forum/discussion/408/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/408/</guid>
		<pubDate>Thu, 22 Oct 2009 17:09:39 -0500</pubDate>
		<author>dwilson@cchit.org</author>
		<description>
			<![CDATA[I appreciate the fact you guys are actively working on the application, but the new form home page is a loser.<br /><br />The organization of the forms on the left side of the page is a regression from the previous layout.  The pop-up menu is pretty much useless.  The overall layout uses too much vertical space, while under-utilizing the horizontal space.<br /><br />I prefer the previous layout of the form home page.]]>
		</description>
	</item>
	<item>
		<title>Is anyone having problems with people NOT being able to access forms when using IE 8?</title>
		<link>http://www3.formassembly.com/forum/discussion/407/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/407/</guid>
		<pubDate>Thu, 22 Oct 2009 15:37:40 -0500</pubDate>
		<author>AHIMA</author>
		<description>
			<![CDATA[I'm testing my form and it seems that I can view my form using just about any other browser, including from my Blackberry and iPhone, but am having problems with IE8.  Any thoughts?]]>
		</description>
	</item>
	<item>
		<title>Duplicate text (add another&quot; on Multiple item forms (embedded form)</title>
		<link>http://www3.formassembly.com/forum/discussion/406/</link>
		<guid isPermaLink="false">http://www3.formassembly.com/forum/discussion/406/</guid>
		<pubDate>Thu, 22 Oct 2009 08:46:13 -0500</pubDate>
		<author>artofweb</author>
		<description>
			<![CDATA[I created a simple contact form and inserted it into my CMSMS site. It worked.<br /><br />Next I created a simple form with the option to add fields for multiple responses and inserted it into a new page in CMSMS. see here: <br /><br />http://174.132.89.162/~artofweb/cms/index.php?page=content-questionnaire<br /><br />As you can see, there were multiple &quot;Add another response&quot; texts shown.<br /><br />Also, they were always shifted far to the right and I was unable to bring them left.<br /><br /><br />Any ideas on how/why the &quot;add another&quot; text is repeated and andy ideas on how to set the div width to &lt;975px?<br /><br />Cheers,<br />Marc]]>
		</description>
	</item>
	
		</channel>
	</rss>