shinkan's Forum Posts

  • bows before shinkan*

    oh bless you, you who joined the inner circle!

    lol

    you may rise, sir The_Funny_Guy.

  • Already send pm to Tom, now we can only prey ;P

  • no idea, saw that picture on some page and just had to download it... for the reference of course

  • ow, emmm wow, didn't expect that :)

  • So i accidently click on "Edit this page" in tutorials sections and to my surprise i was able to edit that tutorial. I could do that with every tutorial submited.

    Isn't that suposed to be locked for everyone besides the author of that tut? I coudn't modify that after logging out as a guest but every logged in user can do some changes to articles. Any time some ignorant moron can join the community and mess up every article on that page.

  • That's a great news Ashley!

    yeah i just added manualy

    <meta http-equiv="X-UA-Compatible" content="IE=edge" />

    right after title and it works perfectly fine!

    All right then, we can call this solved.

  • One more thing, I've just test that on my brothers pc - win 7 64.

    He's using firefox (only blank screen) but when i tried to run it on default IE (IE9 beta version) it runs without problems!

    I've tried on IE9 32, IE9 64 even reinstall java.

  • Thank you Ashley ;)

    Back to subject. I did try few diferent links, and it looks like that i cannot load projects from dropbox. I even made myself a new project and upload it to my dropbox folder.

    test project

    Same situation, it's telling my that my browser does not support HTML5.

    Running index.html locally works perfectly fine in IE9.

    EDIT: fixed link

  • You can simplify those by using the timer, a built in variable. Other options, you could also use lerp:

    always

    - set opacity to lerp(0, 100, timer/300)

    or use

    always

    - set opacity to cosp(0, 100, timer/300)

    i don't think construct will ever stop suprising me. Thank you so much for this Arima!

  • You can use Sine behavior to do it easly without any event.

    Events hmm:

    + System: Is global variable 'opct' Equal to 0
    -> Sprite: Set opacity to Sprite.Opacity-100*TimeDelta
    + System: Is global variable 'opct' Equal to 1
    -> Sprite: Set opacity to Sprite.Opacity+100*TimeDelta
    + Sprite: Opacity Equal to 0
    -> System: Add 1 to global variable 'opct'
    + Sprite: Opacity Equal to 100
    -> System: Set global variable 'opct' to 0
    

    or

    + System: Always (every tick)
    -> System: Add 1 to global variable 'opct'
    -> Sprite: Set opacity to Sprite.Opacity-sin(global('opct'))
    
  • yes that's true unfortunately - i was reffering to IE specifically - but it's true anyway. Windows is installed in most of modern companies and you have to use it, but at home noone is forcing you. Don't like microsoft get linux, mac, or whatever... get yourself a piece of wood and carve yourself a wooden boat ;)

  • [quote=]European Union forced Microsoft to create a new start up module to choose one of the 5 browsers like Firefox, Opera, Safari, Chrome and IE before to surf the interne

    so? You are buying Microsoft Windows which have Microsoft IE inside. Don't like it, don't use - simple as that.

    If you buy a car, let say Mercedes do you have a pop up message leting you choose witch company engine you want to use?

    [quote=]didn't you notice your IE9 has turned off javascript engine?

    No, I can run up every project i made without any problems.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Why everybody hates IE? cause it's microsoft?! or what?

    I'm using it since was added to windows (and had acces to internet)and never had any problems with it. Opera, chrome, firefox why? they are faster? allows you to open hundreds of pages at same time?

  • Not related to create but more to ie. overlaping at offset.

    If i do something like

    + A: overlaps B : offset (10,10)

    - it checks if object A is overlaping B at lower right corner.

    How to check if there's an offset all around object 10pixels?

    Could easly do:

     + A: A overlaps B
       + System: distance(A.X, A.Y, B.X, B.Y) Lower or Equal to 10
       -> do something

    but is there a way to do this inside "Is overlaping at offset" condition?

  • [quote=].x + normarandom(0,xmaxoffset), .y + normalrandom(0,ymaxoffset)

    I've been looking for weeks for that... :/

    constuct wiki is so not up to date