Number of Default Activations

I have the same question as the post at https://wyday.com/forum/t/2040/change-initial-number-of-activations/#post-10511 but need a more specific answer:

I'd like the default number of activations for my products to be 3 to allow for installation on a work and home computer or to allow for a new computer, hard drive crash, etc. without my manual intervention. How exactly can that be done?

The post says "Oh, ok, no the default value in the LimeLM web interface is always 1. We don't currently have a way of changing that default value. (Of course, all you have to do is change the 1 to any other number)."

Where exactly do you "change the number 1 to any other number?" I'm using the Xojo embedded purchase function so customers are registering through the built in menus with TurboActivate.

Thanks.

without my manual intervention. How exactly can that be done?
Where exactly do you "change the number 1 to any other number?"

When you automate the order process, change the api call to limelm.pkey.generate to use 3 allowed activations.

Does that make sense?

Your link to me to the trial extension page, so that wasn't clear. I'm using LimeLM with FastSpring though, so I came across this post and it looks like it works:

https://wyday.com/forum/t/2370/fastspring-of-activations/

For anyone else who is in the same situation, all I did was modify the License Generator PHP Script for the product at Fastspring. Change the $post_data variable section as follows:

Instead of this: 'num_acts' => $quantity,

Do this: 'num_acts' => $quantity * 5,

Thanks, Wyatt!

Oops, my original post linked to the wrong article. I'm glad you figured it out.