zenox98's Forum Posts

  • Ezubby

    That thread is nearly a year old, and is unlikely to be relevant to your situation.

    It would be better if you posted your own query in the 'How Do I' section, preferably with a small ,capx or url link, highlighting your problem, so you can get a better, more helpful response.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Ensure they are all numerical by forcing to Int() maybe?

    Although "enemy1.Count*10*Level" works for me (Level is the Global holding current level value).

    Maybe show your .capx or event sheet?

  • Construct Classic is effectively dead, with no development being done for many years. It is DirectX 9 based, and has many quirks and bugs that can easily destroy your work.

    Having said that, it is still used by people because it is free.

    C2 is in constant development and it's range of exporters, are extensive. It's executable exporter - whilst being a wrapper - is still comparable to CC in many benchmarks.

  • Rather than asking users to view a video, wouldn't it make sense to create a new simple .capx that just shows the error, so we can all test?

  • It should probably be, assuming the variable is a number,

    Set Text to "Score: " & Score

    Notice the variable doesn't have quotes, and the ampersand is outside of the quotes, unlike yours.

  • If you haven't setup autosave and auto backups, why not? They are there to help in situations such as this.

    You should always have a backup regime setup - using both the inbuilt system, and also one of your own making, such as backup before every major change and make a copy off site.

    It always amazes me when people complain they have lost their work when, if it is so important, they should be delibereately saving and backing up as much as possible.

    I sincerely hope you have a backup or autosave. If so, they are in the same directory as your project - just rename to 'whatever.capx'.

    If not, then this is a harsh lesson indeed, unfortunately.

  • blackant

    I can see possibly two problems with this:

    1. Cross-domain error (have you checked browser console?)

    2. You are not using the load url action correctly, i.e. you are supposed to wait for 'On image URL loaded' to trigger before trying to load an image (not essential, I think, but good practice).

    If you try an image from one of the usual image hosting sites, such as 'http://i.imgur.com/QZhRLp7.jpg' then it will work.

    So, essentially, not a bug, but a cross-domain issue.

  • Yep - not a bug.

    From the Manual:

    [quote:2x2slcy6]Form controls are actual HTML elements floating above the game canvas in the HTML page. Therefore, nothing can be displayed on top of a form control, apart from other form controls.

  • Is this thread of relevance?

    It has many examples of trying to fake 3D, some good ones that make use of R0J0hound's excellent Paster plugin.

  • landman

    Obviously, quickest way to easy your mind, or if you have any issues regarding licensing, is to email .

  • Was probably the student one.

    But the personal is once off.

    Good point - forgot about the Educational side.

  • landman

    I was an early adopter, and in all the time since - years and years - the licensing has always been a one-off payment.

    I have no idea where you have got that information from - most likely from a different piece of software (?).

  • As is often stated, test often, and if you notice a serious degradation in performance, then revert to a prior build and try again.

    Just make sure you create a new build when you are about to try to add a new feature, and you should be OK.

  • Have you had a browser update? How old is your GPU? Maybe GPU blacklisted by browser?

    Have you tested any other projects, either your own or those that come with C2?

  • If you can't find anything searching or within the plugin section, it may be the case that you will have to write your own plugin to do what you want.

    If you Google, you will find many discussions on capturing video using HTML5.