Announcement

Collapse
No announcement yet.

2 Question about Making Plugin

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 2 Question about Making Plugin

    I have 2 Question about Making Plugin:

    1. Can I make a action plugin with license? (I can make plugin correctly but I don't know how can I set a license to my plugin)

    2. Is there any guide to help me for making Object Plugin with AMS Plugin Maker or other tools?

  • #2
    The Plugin SDK is a sticky post in the plugin forum. Once decompressed the zip file, you will find a file name "Indigo Rose Plugin SDK_2.0.pdf" which explains what you need to know regarding creating plugins.

    Ulrich

    Comment


    • #3
      Ulrich, Thanks for your answer.
      When I use ActionPluginComplier or AMS Plugin Maker I must use this SDK anyway?

      AMS Plugin Maker has a section to create object plugin, how can I make object plugin using this section?

      Comment


      • #4
        Originally posted by mslight13 View Post
        Ulrich, Thanks for your answer.
        When I use ActionPluginComplier or AMS Plugin Maker I must use this SDK anyway?

        AMS Plugin Maker has a section to create object plugin, how can I make object plugin using this section?
        Both them tools was not by IR there by another user I don't know how to make objects but when you buy it I sure it came with or you get access to the Windows Button Object button I think if not and you have our key I sure he will send you the source code to learn from it, no you don't need the SDK to use the plugin creator tool not for Action plugins anyway I own that tool myself and its a great tool.
        Plugins or Sources MokoX
        BunnyHop Here

        Comment


        • #5
          License Plugins

          If using the plugin SDK the following C++ code will add license to your plugins!

          Code:
          bool irPlg_ValidateLicense(char* lpszLicenseInfo)
          {
          	CString cs = lpszLicenseInfo;
          
          	BOOL bReturn;
          
          	if((cs == "LICENSE1") || (cs == "LICENSE2"))
          	{
          	  bReturn = TRUE;
          	} else
          	{
                    bReturn = FALSE;
          	}
          
          	return bReturn;
          }
          Plugins:

          Bitmap (113 KB)

          ComboBoxEx (141 KB)

          Comment

          Working...
          X