EMI_INDO's Forum Posts

  • 8 posts
  • Hi Tom,

    I need some help with my Seller Account. I have £1,584 in my Available to Cashout balance, but I'm completely stuck and can't withdraw it.

    I can't use the automated buttons because Stripe is not supported in Indonesia, and my PayPal account got permanently blocked back in 2022. I literally have no way to use the standard payout methods.

    Since I've been selling assets and plugins here for a while and the balance has piled up, is there any chance Scirra can do a manual SWIFT wire transfer straight to my local bank account?

    Just let me know if this is possible and what bank details you need from me.

    Thanks!

    Tagged:

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Paid demand for personal needs, or for the community?

    // 1: The process of making a new cordova plugin.

    // 2: the process of making plugins.c3addon new.

    // subject to funds as needed.

  • {

    "rules": {

    "users": {

    "$uid": {

    ".read": "$uid === auth.uid",

    ".write": "$uid === auth.uid"

    }

    }

    }

    }

  • To fix this issue load the ad after the ad has been closed by the user, with a dismiss condition.

  • Update admobplus_pro_3_0_0_7.c3addon

    construct.net/en/game-assets/addons/admob-plus-pro-768

    Added 4 new conditions.

    New c3p AppOpenAd, Banner, Interstitial, Rewarded.

    Fix Rewarded Give gifts to users here.

    Report bugs: github.com/EMI-INDO/c3addon-bug/issues

  • sorry this is not a plugin forum 🙏

    if I have time I can make it,

    but the logic is like the html example that I gave

    add the Element HTML plugin to try it out.

    Actually, this doesn't require a third party plugin.

  • 	<!DOCTYPE html>
    <html lang="en">
    <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <title>File Reader Example</title>
    </head>
    <body>
    
     <input id="inp" type="file">
     <p id="b64"></p>
     <img id="img" height="150">
    
     <script>
     function readFile() {
     if (!this.files || !this.files[0]) return;
    
     const FR = new FileReader();
    
     FR.addEventListener("load", function(evt) {
     document.querySelector("#img").src = evt.target.result;
     document.querySelector("#b64").textContent = evt.target.result;
     });
    
     FR.readAsDataURL(this.files[0]);
     }
    
     document.querySelector("#inp").addEventListener("change", readFile);
     </script>
    
    </body>
    </html>
    
    
  • You do not have permission to view this post

  • 8 posts