iSpring Platform
Knowledge Base
Popular Questions
Search results in Popular Questions
- Where can I get the version number and license key of my iSpring Platform?
- What Adobe Flash Player version do I have to have to play iSpring-created presentations?
- What version of ActionScript is supported by iSpring Platform?
- Where should I enter License Key I got after purchase?
- A Flash movie I've inserted plays fine in PowerPoint, but after the conversion only a blank slide is displayed. What should I do?
- Is it possible to control iSpring Platform generated files from the Flex application that uses ActionScript 3.0?
- What are the system requirements for using iSpring Platform?
- How is a trial version different from the full version?
- Is it possible to call the converter from an application written in Java in a Windows environment in any of iSpring products?
- Is it possible to create Flash clips with international content using iSpring?
FAQs Where should I enter License Key I got after purchase?
Frequently Asked Questions
Search results in FAQs
Filter docs by category:
General
- What version of ActionScript is supported by iSpring Platform?
- How is a trial version different from the full version?
- What are the system requirements for using iSpring Platform?
- Is it possible to call the converter from an application written in Java in a Windows environment in any of iSpring products?
Registration
Flash Output
- What Adobe Flash Player version do I have to have to play iSpring-created presentations?
- A Flash movie I've inserted plays fine in PowerPoint, but after the conversion only a blank slide is displayed. What should I do?
- If I publish my presentation to the web, will the users have to wait until the entire Flash file is loaded to start viewing it?
- Is it possible to create Flash clips with international content using iSpring?
- Is it possible to have a button in a slide that can launch another file?
- Is it possible to control iSpring Platform generated files from the Flex application that uses ActionScript 3.0?
Multimedia
Size and Compression
Where should I enter License Key I got after purchase? Permalink
The license has to be activated just once. You can activate it through command line:
ispringsdk.exe a <license name> <license key>
Also it's possible to activate it via CodeBuilder. To do it, please, proceed to iSpring Platform CodeBuilder ---> General tab ---> License.
The product license data are required during the products use and must be passed to iSpring Platform each time the conversion is performed.
You can use the following samples:
[C# example]
PresentationConverter pc = new PresentationConverter();
pc.LicenseName = "John Smith";
pc.LicenseNumber = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX";
// ...
[/C# example]
[VisualBasic.NET example]
Dim pc As PresentationConverter = New PresentationConverter
pc.LicenseName = "John Smith"
pc.LicenseNumber = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX4"
' ...
[/VisualBasic.NET example]
[PHP example]
$pc = new COM("iSpring.PresentationConverter");
$pc->LicenseName = "John Smith";
$pc->LicenseNumber = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX";
// ...
$converter = null;
[/PHP example]
[Java example]
PresentationConverterFactory pcFactory = new PresentationConverterFactory();
PresentationConverter pc = pcFactory.createPresentationConverter();
pc.setLicenseName("John Smith");
pc.setLicenseNumber("XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX");
// ...
pcFactory.release();
[/Java example]
[C++ example]
CoInitialize(NULL);
{
CComQIPtr<iSpring::_PresentationConverter> pPC;
pPC.CoCreateInstance(__uuidof(iSpring::PresentationConverter));
pPC->put_LicenseName(CComBSTR(L"John Smith"));
pPC->put_LicenseNumber(CComBSTR(L"XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"));
// ...
}
CoUnitialize();
[/C++ example]
[VBScript example]
Set pc = CreateObject("iSpring.PresentationConverter")
pc.LicenseName = "John Smith"
pc.LicenseNumber = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
' ...
[/VBScript example]
[Command line example]
ispringsdk.exe s --license "John Smith"
"XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" <ppt> <swf>
[/Command line example]
ispringsdk.exe a <license name> <license key>
Also it's possible to activate it via CodeBuilder. To do it, please, proceed to iSpring Platform CodeBuilder ---> General tab ---> License.
The product license data are required during the products use and must be passed to iSpring Platform each time the conversion is performed.
You can use the following samples:
[C# example]
PresentationConverter pc = new PresentationConverter();
pc.LicenseName = "John Smith";
pc.LicenseNumber = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX";
// ...
[/C# example]
[VisualBasic.NET example]
Dim pc As PresentationConverter = New PresentationConverter
pc.LicenseName = "John Smith"
pc.LicenseNumber = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX4"
' ...
[/VisualBasic.NET example]
[PHP example]
$pc = new COM("iSpring.PresentationConverter");
$pc->LicenseName = "John Smith";
$pc->LicenseNumber = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX";
// ...
$converter = null;
[/PHP example]
[Java example]
PresentationConverterFactory pcFactory = new PresentationConverterFactory();
PresentationConverter pc = pcFactory.createPresentationConverter();
pc.setLicenseName("John Smith");
pc.setLicenseNumber("XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX");
// ...
pcFactory.release();
[/Java example]
[C++ example]
CoInitialize(NULL);
{
CComQIPtr<iSpring::_PresentationConverter> pPC;
pPC.CoCreateInstance(__uuidof(iSpring::PresentationConverter));
pPC->put_LicenseName(CComBSTR(L"John Smith"));
pPC->put_LicenseNumber(CComBSTR(L"XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"));
// ...
}
CoUnitialize();
[/C++ example]
[VBScript example]
Set pc = CreateObject("iSpring.PresentationConverter")
pc.LicenseName = "John Smith"
pc.LicenseNumber = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
' ...
[/VBScript example]
[Command line example]
ispringsdk.exe s --license "John Smith"
"XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" <ppt> <swf>
[/Command line example]
Like this article?