Posts by Hristos
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.
-
-
-
Thanks for your answer!
I am working on an HTML5 project which does not support the "Get from clipboard" action.
So I tried using an external function embedded inside the html code of the page. Clicking on the button calls this function and the contents of the clipboard are supposed to be pasted in the edit box.
Your mfa works fine as a Windows application but not in HTML5. -
Hi,
I am trying to use the Clipboard API to read data from the clipboard and paste it inside my application (I tried edit box, string and list object)
I am calling this function:
Code
Display Morefunction readFromClipboard() { navigator.clipboard.readText() .then(text => { // `text` contains the text from the clipboard console.log("Clipboard contents:", text); // You can now use the text as needed, e.g., display it in an HTML element document.getElementById('output').textContent = text; }) .catch(error => { console.error("Unable to read from clipboard: ", error); }); }
and although the browser is asking me if I will allow my app to see the clipboard (meaning that the function works) I cannot get the content of the clipboard inside my app.
Any help will be much appreciated.
I attach the mfa and you can see the result online here:
Please login to see this link. -
I searched for older apps that we created for iOS and there is a function eggtimer object inside.
I can open it, it runs but I cannot add a new function eggtimer object!!!Please login to see this attachment.
-
Hi,
I have ran into a peculiar problem after updating the "Function Eggtimer" extension today. I can no longer add a new function eggtimer object in HTML5 unless I first open another old app of mine (HTML5) in which the object already exists!!!!In this image you can see that there is no "Function Eggtimer" in the "Create new object" menu (new app):
Please login to see this attachment.In this image you can see that there is no "Function Eggtimer" in the "Create new object" menu and there is a "Function Eggtimer" object inside the frame (app that I am currently working).
Please login to see this attachment.In this image you can see that there is "Function Eggtimer" in the "Create new object" menu and there is a "Function Eggtimer" object inside the frame. This is the old app in the same laptop.
Please login to see this attachment.I really want to thank Andos for this very useful extension and kindly request him to fix it and include it in all exporters (I am really in need of the iOS version)
Thanks in advance,
Christos -
Hi,
A way to get the serial number of the motherboard, the bios and the disk in a string. I use it in conjunction with encryption to generate unique codes for software activation.
Thanks to the Please login to see this link. by Christian_Wheel.
You will need the "Execute in Console" extenision by 2xD -
Hi,
You will find the beta versions in the Product Owner's Lounge> Fusion 2.5 > Download links:
Please login to see this link. -
I have already tried this solution which is described in Please login to see this link..
Unfortunately it does not work when the application has sound. -
So if they are viewing the site in desktop mode that solves the sound issue?
Tricky for me to get young kids to set their ipad browser to desktop view. Does anyone know of a html tag or script that will do this automatically? I have had a look online but could not find any examples.
I found these links:
Please login to see this link.
Please login to see this link.
But I do not have the time to try it right now. -
Thanks for this!
I will try this workaround but it is not a solution that will stand the test of time.
I hope Clickteam will provide a solution soon. -
If I understand correctly the users must first set their iPhone to "desktop mode" so that the applications will work. Is it also necessary to ask them to click on the button in the first frame?
-
I also have real trouble with this. We have a membership site with HTML5 applications and there are customers who use exclusively iPads. The only answer I can give them is to return their money!
-
It recently stopped working. The fix is to just add the "Multitouch object".
I also added a color change.Please login to see this attachment.
-
Hi again,
I just tested filesaver and found out that:
One can "Save Variable" but the user cannot define the name of the file to save (it is always test.txt).
The same goes for "Save Canvas" action (it is always canvas_image.png).
The "Save Texte" action first asks to "Save text Content" but it is actually the name of the file, not the content. The second part is "Save Texte" which is not working (maybe this should be "File name" or something similar).I hope that my observations are not frustrating to you, I believe that this is a great extesion which will be very useful in many applications and I am only trying to help you as a beta tester!
-
It works perfectly!
Thank you very much! -
Thank you very much! I will try it tonight!
-
Hi,
Thanks for the update, it fixed the problem. I can open the example now.
Is it possible to save a text which would include data from the application?
For example: Save aaa.txt with content from Global String AI was also wondering if it would be possible to save the canvas as a png with your extension.
Like this, but without using external javascript:
Please login to see this link.
There was a discussion about this in the forum:
Please login to see this link. -
The same thing happens to me too!
A few seconds after I open the event list editor or the event editor the application crashes. -
Hi,
I am trying to use "Send text to clipboard" action of the Special Object and it does not function.
I will try to use the document.execCommand("copy") method in a function that will be triggered on user click. but it would be nice to have this feature in HTML5.
Is this possible?