Posts by prester

Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.

A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.

Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!

Clickteam.

    :?:

    Definition in Cncf.h about WORD oilFree, Is it safe to use this freely for extension developers? ( It says Not Used in the comments. I will need to consider the possibility of being rewritten by other extensions, though.)

    Or if have any role in this variable, plz let me know aboout it.


    Thanks.

    Still Hard-Coding.. but the result is great.
    Fixed Yves code.


    About Active object's effect "Alpha-Blending coefficient", Probably basic, but not be able to how to implement on my test extension.
    Please login to see this attachment.

    I found an old forum post, unfortunately not for HWA.
    Please login to see this link.


    "Sprite display structure" at Cncf.h, "ros.rsFlash" "ros.rsFlags" "rsEffect" "rsEffectParam" etcs..
    At first thought it was simple, actually not so easy with try and errors what i realized.
    Any sample codes or Documents are there?

    P.S. If it is possible, from the extension, i wish to control the shader effect param.

    Please login to see this attachment.

    Thanks.

    Sry for delay.

    short WINAPI DLLExport ACT_TEST(LPRDATA rdPtr, long param1, long param2)// TEST Action
    {
    LPPOS pPos = (LPPOS)&rdPtr->rHo.hoCurrentParam->evp.evpW.evpW0;
    auto layer = 0;
    switch (pPos->posOINUMParent)
    {
    case(-1):
    layer = pPos->posLayer;
    __fallthrough;
    default:
    CHECK_VALUE_MESSBOXW(pPos->posOINUMParent, _T("pPos->posOINUMParent; = "), _T("TEST"));
    break;
    };
    return 0;
    };

    I am still low understanding level.
    I've tried this code but anything no reaction from ACT_TEST function, then i noticed the target object's "Create at start" checkbox is off.

    If the Checkbox is on, returns number 1|2|3.. etcs, but not found case of -1.

    defisym's explanation exactly bit complex and still i can't understand (I thanks for defisym >> will learn from you and andos's source codes).

    I suggest that if you want a layer information in all cases you forget PARAM_POSITION and use your own X, Y and Layer parameters.

    Unfortunately, The only solutions i can do now, Yes, i will forget to get from the PARAM_POSITION.
    (or make a custom Dialog window.)

    Thank a lot!

    If not using Relative, is it possible to way to get the layer param from pulldown in the PARAM_POSITION Dialog?

    I found an exsample in Andos's opensource "Create By Name object".
    It was using PARAM_POSITION Dialog, but this extension get XY pos only from Dialog and to get a layer info from the another param.

    Please login to see this attachment.

    I am missing How to activate and get a layer number of in the PARAM_POSITION Dialog. (Especially to know how to activate the layer setting)

    Please login to see this attachment.

    Currently The positions data recived as a integer, if include the layer info in it, to use the user defined struct?

    paramExt* getxyl = (paramExt*)CNC_GetParameter(rdPtr);
    xylParam* xyl = (xylParam*)getxyl->pextData;// custom struct
    int xpos = HIWORD(xyl.layer);
    int ypos = LOWORD(xyl.layer);
    int layer = xyl.layer;

    have any info?

    Hi, Yves.

    I've made an extension for MMF2 and CF25 what is including the function of "Disable IME".
    This extension i am calling "DIME".
    will open the code if Clickteam need it (plz PM me).
    (My extension is working completely in japanese environment)

    Regards.

    >mimato
    List or StringTokenizer object is functions of array( or data structure ), not provided the views like spread sheet in your application.

    Spread sheet (like in excel) can make easy to use ListView or DataGrid Object. But i don't know what you having licence permission of these objects in your cf25 version. (Dev only extensions?)

    And these objects works on PC build only.

    exsamples( 3071kb )
    DataGrid + ListView + List + SringTokenizer's working exsample ( .mfa + .exe)
    DataGrid + ListView + Load From Files ( .mfa + .exe)
    Please login to see this link.