User Tag List

Page 2 of 3 FirstFirst 1 2 3 LastLast
Results 11 to 20 of 22

Thread: Extension Testing

  1. #11
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Jun 2006
    Posts
    6,773
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension Testing

    Of course.

  2. #12
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Jun 2006
    Posts
    6,773
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension Testing

    Of course.

  3. #13
    No Products Registered

    Join Date
    Jun 2006
    Location
    Texas
    Posts
    1,002
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension Testing

    Two ideas to protect the extensions:

    A) Code a system where the exensions expire.

    B) Make it so the beta extensions can't build exe/ccn files <img src="/center/images/graemlins/wink.gif" alt="" />.

    I wonder if it is possible to distribute just the release version of the beta extension, and make it so it can't be used at runtime?

    Some ideas to start with:

    A) First remove everyone who doesn't own the full version.

    B) When you start the pilot perhaps only allow 30-40 people to join it during that period.

    I think it would be good if we could somehow tie the beta extension to the person it was given to. If we could do that, then tracing leaks would become much easier (especially if we didn't tell them :P).

  4. #14
    No Products Registered

    Join Date
    Jun 2006
    Location
    Texas
    Posts
    1,002
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension Testing

    Two ideas to protect the extensions:

    A) Code a system where the exensions expire.

    B) Make it so the beta extensions can't build exe/ccn files <img src="/center/images/graemlins/wink.gif" alt="" />.

    I wonder if it is possible to distribute just the release version of the beta extension, and make it so it can't be used at runtime?

    Some ideas to start with:

    A) First remove everyone who doesn't own the full version.

    B) When you start the pilot perhaps only allow 30-40 people to join it during that period.

    I think it would be good if we could somehow tie the beta extension to the person it was given to. If we could do that, then tracing leaks would become much easier (especially if we didn't tell them :P).

  5. #15
    No Products Registered

    Join Date
    Jun 2006
    Posts
    150
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension Testing

    []B) Make it so the beta extensions can't build exe/ccn files . [/]
    Easy, as I experienced when I tried to build an application with an extension created with the old SDK where GetDependencies were defined
    Code:
    LPCSTR* WINAPI DLLExport GetDependencies(mv _far *mV, LPEDATA edPtr)
    {
    	return NULL;
    }
    if you try to build an application with this function added in the .def file and defined like this, MMF2 will complain when trying to build a standalone app.

    so I would use something like this
    Code:
    #ifdef BETA_EXT
    LPCSTR* WINAPI DLLExport GetDependencies(mv _far *mV, LPEDATA edPtr)
    #else
    LPCSTR* WINAPI DLLExport GetDependencies()
    #endif
    {
    	return NULL;
    }

  6. #16
    No Products Registered

    Join Date
    Jun 2006
    Posts
    150
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension Testing

    []B) Make it so the beta extensions can't build exe/ccn files . [/]
    Easy, as I experienced when I tried to build an application with an extension created with the old SDK where GetDependencies were defined
    Code:
    LPCSTR* WINAPI DLLExport GetDependencies(mv _far *mV, LPEDATA edPtr)
    {
    	return NULL;
    }
    if you try to build an application with this function added in the .def file and defined like this, MMF2 will complain when trying to build a standalone app.

    so I would use something like this
    Code:
    #ifdef BETA_EXT
    LPCSTR* WINAPI DLLExport GetDependencies(mv _far *mV, LPEDATA edPtr)
    #else
    LPCSTR* WINAPI DLLExport GetDependencies()
    #endif
    {
    	return NULL;
    }

  7. #17
    No Products Registered

    Join Date
    Jul 2006
    Posts
    2,289
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)

    Re: Extension Testing

    These are good ideas! Great stuff.

    First, I am hoping that we can get the first PBP tested and published by the Holiday Season. Over here, that starts with Halloween, then Thanksgiving, and Xmas/etc.

    If we can protect and restrict the Beta extensions as proposed above, then the next step is to start the pilot program. Administering it is the trick. I like the ideas about limiting the number of participants, and we certainly would want to restrict it to actual, registered users.

    In order to verify users, Jeff would have to be involved and I am not sure how he would want to handle that. It would be nice if there were either a form that would allow them to "sign-up" and then would chck their status in the CT Database, and spit out an email to the appropriate CT staff, or a code that could verify the fact.

    Just thinking out loud. I know that Jeff wanted to eventually add a way for registered users to be recognized by the forum and allow for special areas, features, etc.

    While sometime this month is going to be a long overdue vacation for me, I may start to put together the agreement and guidelines for the pilot testing program.

    For now, please continue the discussion and brainstorm your ideas.

    Also: Since we have lost some older members, it might be a good idea to put togehter a thread, or a pack, for new EDT that includes what they need to know. Things like the popup code, guidlines, conventions for naming betas, etc., and anything else.

    Anybody who wants to take the lead for the new Apprentices is welcome to step-up and start a thread. I would prefer that the Journeymen who do lead tech be more like helpful managers and benefactors than bosses, as you already know <img src="/center/images/graemlins/wink.gif" alt="" /> We want to keep this enjoyable and laid-back.

  8. #18
    No Products Registered

    Join Date
    Jul 2006
    Posts
    2,289
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)

    Re: Extension Testing

    These are good ideas! Great stuff.

    First, I am hoping that we can get the first PBP tested and published by the Holiday Season. Over here, that starts with Halloween, then Thanksgiving, and Xmas/etc.

    If we can protect and restrict the Beta extensions as proposed above, then the next step is to start the pilot program. Administering it is the trick. I like the ideas about limiting the number of participants, and we certainly would want to restrict it to actual, registered users.

    In order to verify users, Jeff would have to be involved and I am not sure how he would want to handle that. It would be nice if there were either a form that would allow them to "sign-up" and then would chck their status in the CT Database, and spit out an email to the appropriate CT staff, or a code that could verify the fact.

    Just thinking out loud. I know that Jeff wanted to eventually add a way for registered users to be recognized by the forum and allow for special areas, features, etc.

    While sometime this month is going to be a long overdue vacation for me, I may start to put together the agreement and guidelines for the pilot testing program.

    For now, please continue the discussion and brainstorm your ideas.

    Also: Since we have lost some older members, it might be a good idea to put togehter a thread, or a pack, for new EDT that includes what they need to know. Things like the popup code, guidlines, conventions for naming betas, etc., and anything else.

    Anybody who wants to take the lead for the new Apprentices is welcome to step-up and start a thread. I would prefer that the Journeymen who do lead tech be more like helpful managers and benefactors than bosses, as you already know <img src="/center/images/graemlins/wink.gif" alt="" /> We want to keep this enjoyable and laid-back.

  9. #19
    No Products Registered

    Join Date
    Jun 2006
    Location
    Texas
    Posts
    1,002
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension Testing

    I think it is a plan, however we may need to take some steps to prevent people from lurking in the beta forums. What I mean by that is, perhaps their level of participation should determine their access <img src="/center/images/graemlins/wink.gif" alt="" />.

    If it was possible I would like to see where the testers would have to contribute in order to stay in the group (where if they contribute a lot they would stay in the group perminately).

    The reasoning behind this is that it doesn't make sense to keep people as beta testers if they provide no feedback. Keeping them around in that case is just serving to recreate the situation we have currently, but on a broader scale <img src="/center/images/graemlins/wink.gif" alt="" />.

    In any case testing is a vital issue and I am glad that the situation is being thought out.

  10. #20
    No Products Registered

    Join Date
    Jun 2006
    Location
    Texas
    Posts
    1,002
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Extension Testing

    I think it is a plan, however we may need to take some steps to prevent people from lurking in the beta forums. What I mean by that is, perhaps their level of participation should determine their access <img src="/center/images/graemlins/wink.gif" alt="" />.

    If it was possible I would like to see where the testers would have to contribute in order to stay in the group (where if they contribute a lot they would stay in the group perminately).

    The reasoning behind this is that it doesn't make sense to keep people as beta testers if they provide no feedback. Keeping them around in that case is just serving to recreate the situation we have currently, but on a broader scale <img src="/center/images/graemlins/wink.gif" alt="" />.

    In any case testing is a vital issue and I am glad that the situation is being thought out.

Page 2 of 3 FirstFirst 1 2 3 LastLast

Similar Threads

  1. Help with iAp testing?
    By Outcast in forum iOS Export Module Version 2.0
    Replies: 3
    Last Post: 3rd December 2013, 11:55 PM
  2. Testing...
    By Exploder1010 in forum File Archive
    Replies: 7
    Last Post: 13th September 2010, 10:32 PM
  3. Help with testing X Position
    By Eliyahu in forum Multimedia Fusion 2 - Technical Support
    Replies: 12
    Last Post: 14th July 2008, 07:58 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •