<?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: LiveCycle cheat sheet</title>
	<atom:link href="http://xrumxrum.com/blog/2008/09/19/livecycle-bugs/feed/" rel="self" type="application/rss+xml" />
	<link>http://xrumxrum.com/blog/2008/09/19/livecycle-bugs/</link>
	<description>things i need to remember, but don&#039;t</description>
	<lastBuildDate>Sat, 24 Mar 2012 00:06:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: zu</title>
		<link>http://xrumxrum.com/blog/2008/09/19/livecycle-bugs/comment-page-1/#comment-408</link>
		<dc:creator>zu</dc:creator>
		<pubDate>Fri, 24 Oct 2008 13:32:52 +0000</pubDate>
		<guid isPermaLink="false">http://xrumxrum.com/blog/?p=27#comment-408</guid>
		<description>hey :)

i usually use Javascript, seems like theres much more help for it online, but keep in mind that the LiveCicle Javascript is a bit different from the &quot;regular&quot; javascript - you may never end up facing this problem, i only figured it out while trying to get hte javascript prompt pop up to work, which &lt;em&gt;Acrobat Javascript &lt;/em&gt;does not have.

VeÃ„Â¾a Ã…Â¡Ã…Â¥astia

:)</description>
		<content:encoded><![CDATA[<p>hey <img src='http://xrumxrum.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>i usually use Javascript, seems like theres much more help for it online, but keep in mind that the LiveCicle Javascript is a bit different from the &#8220;regular&#8221; javascript &#8211; you may never end up facing this problem, i only figured it out while trying to get hte javascript prompt pop up to work, which <em>Acrobat Javascript </em>does not have.</p>
<p>VeÃ„Â¾a Ã…Â¡Ã…Â¥astia</p>
<p> <img src='http://xrumxrum.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dawid</title>
		<link>http://xrumxrum.com/blog/2008/09/19/livecycle-bugs/comment-page-1/#comment-407</link>
		<dc:creator>Dawid</dc:creator>
		<pubDate>Fri, 24 Oct 2008 10:58:28 +0000</pubDate>
		<guid isPermaLink="false">http://xrumxrum.com/blog/?p=27#comment-407</guid>
		<description>Many thanks for your prompt answer.

I was suspicious, but thought Acrobat Javascript has some &quot;built-in&quot; functions. Because I&#039;m new in a &quot;not-so-exiting&quot; world of LiveCycle (Visual Studio is my homeworld :) may be my problem is to differentiate object model (acroform, XFA), language used (Javascript, FormCalc) and to find a good reference guide, where I can fix what exactly I&#039;m programming...</description>
		<content:encoded><![CDATA[<p>Many thanks for your prompt answer.</p>
<p>I was suspicious, but thought Acrobat Javascript has some &#8220;built-in&#8221; functions. Because I&#8217;m new in a &#8220;not-so-exiting&#8221; world of LiveCycle (Visual Studio is my homeworld <img src='http://xrumxrum.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  may be my problem is to differentiate object model (acroform, XFA), language used (Javascript, FormCalc) and to find a good reference guide, where I can fix what exactly I&#8217;m programming&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zu</title>
		<link>http://xrumxrum.com/blog/2008/09/19/livecycle-bugs/comment-page-1/#comment-406</link>
		<dc:creator>Zu</dc:creator>
		<pubDate>Thu, 23 Oct 2008 14:47:30 +0000</pubDate>
		<guid isPermaLink="false">http://xrumxrum.com/blog/?p=27#comment-406</guid>
		<description>IsNumeric is not a LC function, it&#039;s javascript.
Google for &quot;IsNumeric Javascript&quot; and the world is yours :)

the first one that poped up, i beleive was the one i used:


&lt;code&gt;
function IsNumeric(sText)
{
   var ValidChars = &quot;0123456789.&quot;;
   var IsNumber=true;
   var Char;

 
   for (i = 0; i &lt; sText.length &amp;&amp; IsNumber == true; i++) 
      { 
      Char = sText.charAt(i); 
      if (ValidChars.indexOf(Char) == -1) 
         {
         IsNumber = false;
         }
      }
   return IsNumber;
   
   }
&lt;/code&gt;


Good Luck!</description>
		<content:encoded><![CDATA[<p>IsNumeric is not a LC function, it&#8217;s javascript.<br />
Google for &#8220;IsNumeric Javascript&#8221; and the world is yours <img src='http://xrumxrum.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>the first one that poped up, i beleive was the one i used:</p>
<div class="codesnip-container" >function IsNumeric(sText)<br />
{<br />
   var ValidChars = &#8220;0123456789.&#8221;;<br />
   var IsNumber=true;<br />
   var Char;</p>
<p>   for (i = 0; i < sText.length &#038;&#038; IsNumber == true; i++)<br />
      {<br />
      Char = sText.charAt(i);<br />
      if (ValidChars.indexOf(Char) == -1)<br />
         {<br />
         IsNumber = false;<br />
         }<br />
      }<br />
   return IsNumber;</p>
<p>   }</p></div>
<p>Good Luck!</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dawid</title>
		<link>http://xrumxrum.com/blog/2008/09/19/livecycle-bugs/comment-page-1/#comment-405</link>
		<dc:creator>Dawid</dc:creator>
		<pubDate>Thu, 23 Oct 2008 14:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://xrumxrum.com/blog/?p=27#comment-405</guid>
		<description>Hi,

nice post. I&#039;m just wondering, how did you run IsNumeric() function? Because in Livecycle 8.2 I&#039;m geting:
IsNumeric is not defined
in Change event of a text field with whatever Acrobat and Adobe Reader supported version. Am I missing something?

Thanks for your answer,
Dawid</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>nice post. I&#8217;m just wondering, how did you run IsNumeric() function? Because in Livecycle 8.2 I&#8217;m geting:<br />
IsNumeric is not defined<br />
in Change event of a text field with whatever Acrobat and Adobe Reader supported version. Am I missing something?</p>
<p>Thanks for your answer,<br />
Dawid</p>
]]></content:encoded>
	</item>
</channel>
</rss>

