News:

We really need your input in this questionnaire

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Lyn007

#1
General Support / Re: Transformation Scripts
April 28, 2010, 04:51:17 PM
I pasted the following in the transformation script window:
sub main()
{
  if ($1 == 0)
     return 1;
  else
     return ($1 * 2);
}
When I click the test button I get the following: request failed 'Incompatible operation'

Can I not use the test button?
#2
General Support / Transformation Scripts
April 27, 2010, 06:54:42 PM
Why does this fail in transformation script:

if ($1 == null)
   return 0;
else
   return ($1 * 2);