<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Ready For 2010!</title>
	<atom:link href="http://forms.stefcameron.com/2010/01/04/ready-for-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://forms.stefcameron.com/2010/01/04/ready-for-2010/</link>
	<description>Building intelligent forms using Adobe LiveCycle Designer</description>
	<lastBuildDate>Thu, 19 Jan 2012 16:32:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Stefan Cameron</title>
		<link>http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7156</link>
		<dc:creator>Stefan Cameron</dc:creator>
		<pubDate>Thu, 21 Jan 2010 22:29:38 +0000</pubDate>
		<guid isPermaLink="false">http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7156</guid>
		<description>Vishnu Prasath,

That sounds strange. Are you certain that those header rows aren&#039;t also marked as &quot;Overflow Leaders&quot; on some subform that might break across pages?

Can you replicate the issue by creating a new form, new table, multiple rows, and no header on subsequent pages (option unchecked)?</description>
		<content:encoded><![CDATA[<p>Vishnu Prasath,</p>
<p>That sounds strange. Are you certain that those header rows aren&#8217;t also marked as &#8220;Overflow Leaders&#8221; on some subform that might break across pages?</p>
<p>Can you replicate the issue by creating a new form, new table, multiple rows, and no header on subsequent pages (option unchecked)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vishnu Prasath</title>
		<link>http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7155</link>
		<dc:creator>Vishnu Prasath</dc:creator>
		<pubDate>Wed, 20 Jan 2010 04:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7155</guid>
		<description>Hi Stefan,

We are using a dynamic pdf created using Adobe Livecycle 8.1. The pdf has multiple dynamic pages and multiple grids.we have unchecked the option &quot;Include header row in subsequent pages&quot; for all the grids.

 Results:
1.But if any of the table data extends to more than one page, then the table header row on the subsequent page is appearing with a table header row which is incorrect.
2.Moreover the header row that appears does not belong to the current table itself.

Expected results:
With the option &quot;Include header row in subsequent pages&quot; unchecked, the subsequent pages should not include a header row at all.

Please help us to resolve this issue.</description>
		<content:encoded><![CDATA[<p>Hi Stefan,</p>
<p>We are using a dynamic pdf created using Adobe Livecycle 8.1. The pdf has multiple dynamic pages and multiple grids.we have unchecked the option &#8220;Include header row in subsequent pages&#8221; for all the grids.</p>
<p> Results:<br />
1.But if any of the table data extends to more than one page, then the table header row on the subsequent page is appearing with a table header row which is incorrect.<br />
2.Moreover the header row that appears does not belong to the current table itself.</p>
<p>Expected results:<br />
With the option &#8220;Include header row in subsequent pages&#8221; unchecked, the subsequent pages should not include a header row at all.</p>
<p>Please help us to resolve this issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Cameron</title>
		<link>http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7154</link>
		<dc:creator>Stefan Cameron</dc:creator>
		<pubDate>Wed, 13 Jan 2010 15:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7154</guid>
		<description>JC,

I&#039;m not sure if this can be done however the new &lt;a href=&quot;http://blogs.adobe.com/formfeed/2009/10/new_reader_92_api.html&quot; rel=&quot;nofollow&quot;&gt;Acrobat/Reader 9.2 API for attachments&lt;/a&gt; might make this possible. I would imagine you would have to have a button that you click in the form guide which would execute the click event of a button in the PDF which would, in turn, execute the script to add the attachment.

For example, add a regular button to your form with the following Click event script:

&lt;pre&gt;&lt;code&gt;if (xfa.host.name == &quot;Flash&quot;)
{
    // executing within context of form guide (ActionScript)
    var fieldName:String = OtherButton.name;
    if (ExternalInterface.available)
    {
        var exFunc:String = &quot;callPdf&quot;;

        var messageParams:Array = [];
        messageParams [ 0 ] = id;
        messageParams [ 1 ] = &quot;execAction&quot;;
        messageParams [ 2 ] = fieldName;
        messageParams [ 3 ] = &quot; &quot;;

        ExternalInterface.call(exFunc, messageParams);
    }
}&lt;/code&gt;&lt;/pre&gt;

(Note that this code depends on the current implementation of the LiveCycle FormBridge script that is injected into XFA-PDF forms rendered as form guides.)

Then place a second regular button called &quot;OtherButton&quot; which is hidden and has the script necessary to add an attachment in its Click event.

Finally, expose only the first button in your form guide. When the user clicks on it, it will execute the Click event of the OtherButton in the PDF which will, in turn, execute the attachment script, theoretically letting you add an attachment to the PDF running in the form guide.

Note that you will have to ensure that the PDF is rendered along with the form guide (and make sure you include the PDF when you preview as well) otherwise, the call to the OtherButton will do nothing.</description>
		<content:encoded><![CDATA[<p>JC,</p>
<p>I&#8217;m not sure if this can be done however the new <a href="http://blogs.adobe.com/formfeed/2009/10/new_reader_92_api.html" rel="nofollow">Acrobat/Reader 9.2 API for attachments</a> might make this possible. I would imagine you would have to have a button that you click in the form guide which would execute the click event of a button in the PDF which would, in turn, execute the script to add the attachment.</p>
<p>For example, add a regular button to your form with the following Click event script:</p>
<pre><code>if (xfa.host.name == "Flash")
{
    // executing within context of form guide (ActionScript)
    var fieldName:String = OtherButton.name;
    if (ExternalInterface.available)
    {
        var exFunc:String = "callPdf";

        var messageParams:Array = [];
        messageParams [ 0 ] = id;
        messageParams [ 1 ] = "execAction";
        messageParams [ 2 ] = fieldName;
        messageParams [ 3 ] = " ";

        ExternalInterface.call(exFunc, messageParams);
    }
}</code></pre>
<p>(Note that this code depends on the current implementation of the LiveCycle FormBridge script that is injected into XFA-PDF forms rendered as form guides.)</p>
<p>Then place a second regular button called &#8220;OtherButton&#8221; which is hidden and has the script necessary to add an attachment in its Click event.</p>
<p>Finally, expose only the first button in your form guide. When the user clicks on it, it will execute the Click event of the OtherButton in the PDF which will, in turn, execute the attachment script, theoretically letting you add an attachment to the PDF running in the form guide.</p>
<p>Note that you will have to ensure that the PDF is rendered along with the form guide (and make sure you include the PDF when you preview as well) otherwise, the call to the OtherButton will do nothing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JC</title>
		<link>http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7153</link>
		<dc:creator>JC</dc:creator>
		<pubDate>Mon, 11 Jan 2010 18:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7153</guid>
		<description>Dear Mr. Cameron,

do you think its possible to add attachments via form guide?

I know that in pdf form, we could do that by clicking the paper clip button beside the pdf form. I am wondering if it is possible to do that in form guide

thanks,</description>
		<content:encoded><![CDATA[<p>Dear Mr. Cameron,</p>
<p>do you think its possible to add attachments via form guide?</p>
<p>I know that in pdf form, we could do that by clicking the paper clip button beside the pdf form. I am wondering if it is possible to do that in form guide</p>
<p>thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Cameron</title>
		<link>http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7152</link>
		<dc:creator>Stefan Cameron</dc:creator>
		<pubDate>Wed, 06 Jan 2010 13:34:42 +0000</pubDate>
		<guid isPermaLink="false">http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7152</guid>
		<description>Stefan,

It looks like Paul was able to help you out...</description>
		<content:encoded><![CDATA[<p>Stefan,</p>
<p>It looks like Paul was able to help you out&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan</title>
		<link>http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7151</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Tue, 05 Jan 2010 17:22:41 +0000</pubDate>
		<guid isPermaLink="false">http://forms.stefcameron.com/2010/01/04/ready-for-2010/#comment-7151</guid>
		<description>Dear Mr. Cameron,

Seems that I have a small problem with changing the values of an image field. When I hit delete the subform is deleted but the image field is not updated.
Can you please help with the issue discussed here: http://forums.adobe.com/thread/548405</description>
		<content:encoded><![CDATA[<p>Dear Mr. Cameron,</p>
<p>Seems that I have a small problem with changing the values of an image field. When I hit delete the subform is deleted but the image field is not updated.<br />
Can you please help with the issue discussed here: <a href="http://forums.adobe.com/thread/548405" rel="nofollow">http://forums.adobe.com/thread/548405</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

