Hi, marciolevi
You have to go in the parameters of your app, in the permissions section, check if your phone allow "Media" to your app.
Try with this plugin : plugin-html-iframe_t149647
Example did in 1 minute : https://www.dropbox.com/s/01fxulnkrpcr8 ... .capx?dl=0
You can use the action of the Browser plugin.
Else you can create your own plugin
— Hi,
Thanks for your precious help, I had searched before posting but I have not found!
Really thanks
Hello,
can someone help me to get base 64 string of sprite's frame ?
I have tried these function but it doesn't work...
function toDataUrl(src, callback, outputFormat) { var img = new Image(); img.crossOrigin = 'Anonymous'; img.onload = function() { var canvas = document.createElement('CANVAS'); var ctx = canvas.getContext('2d'); var dataURL; canvas.height = this.height; canvas.width = this.width; ctx.drawImage(this, 0, 0); dataURL = canvas.toDataURL(outputFormat); callback(dataURL); }; img.src = src; if (img.complete || img.complete === undefined) { img.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw=="; img.src = src; } } //then execute : var url = this.inst.cur_animation.frames[this.inst.cur_frame].texture_img.src; toDataUrl(url, function(base64Img) { console.log(base64Img); }); [/code:1naz8ifx] I have also tried this code: [code:1naz8ifx] function getBase64FromImageUrl(url) { var img = new Image(); img.setAttribute('crossOrigin', 'anonymous'); img.onload = function () { var canvas = document.createElement("canvas"); canvas.width =this.width; canvas.height =this.height; var ctx = canvas.getContext("2d"); ctx.drawImage(this, 0, 0); var dataURL = canvas.toDataURL("image/png"); alert(dataURL.replace(/^data:image\/(png|jpg);base64,/, "")); }; img.src = url; } //then execute: var url = this.inst.cur_animation.frames[this.inst.cur_frame].texture_img.src; getBase64FromImageUrl(url); [/code:1naz8ifx] Thanks fro your help!
roxinhojp Hi,
What do you mean by "update the apk" ? If you mean close and start the app, it's normal that the variables values will be lost. You have to use localstorage plugin
davides
Use the system condition "Is on platform"
X3M Thank you for helping !!
— Games
I have solved my problem, thank you
h1k3 I don't see the plugin to buy it...
cooltaby Try with this one :
IGDev
yes it's possible (you don't have to use php&SQL and the Ajax Plugin, you have to use rexrainbow plugins)
Hi,
You have to use Ajax Plugin + server + php&SQL.
Good luck
Yes, with Construct 2, you can make any 2D Game!
Develop games in your browser. Powerful, performant & highly capable.
You can use the Cordova Plugin