liaeb's Forum Posts

  • On start of layout > square > disable collisions > square

  • I've had the same issue since iOS 7

    It gets even more bizarre if I add a few to a folder...

  • Oh really I wasn't aware of that either, thanks for the heads up jayderyu

  • Hey Folks,

    I went to update this today to use the IE11 standards control however it appears I've deleted the project.. :(

    If anyone feels it worth while I'll rewrite it (possibly even make it better) else you can achieve the same thing by changing the registry if you want (see - msdn.microsoft.com/en-us/library/ee330730(v=vs.85).aspx)

    Cheers

  • Hey all if anyone is interested I managed to figure this out in the end by putting together 2 different examples made by R0J0hound (thanks dude)

    example - dl.dropboxusercontent.com/u/5480026/word.capx

    demo - dl.dropboxusercontent.com/u/5480026/word/index.html

  • Hi Ize

    My problem was project related! I'm not surprised though as I've had a number of issues with it so far :( Maybe now's the time to port all my hard work to another fresh start... *sigh*

    I retested on a fresh project tho and it worked as expected! Wooohoo :P

    Mods surely this post should get a sticky?!

  • Ah yes! I see what your saying now, sorry I tend to read between the lines and come to my own conclusions LOL :)

    Ignore me I'll go back to work...

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I work in a corporate environment that uses a proxy configuration script (.pac), unfortunately this causes issues in chrome with loopback;

    "Server Error

    The following error occurred:

     Cannot connect due to potential loopback problems"
    
    I wanted to specify the -proxy-server= (no proxy) argument to chrome to overcome this but found that the custom browser string wouldn't accept any arguments?! therefore I created and used the above script as my custom browser option :)
    
    Like I said it's not likely this will effect many (if any but me) but it's a workaround should anyone need it :)
    
    Cheers,
    Daniel
  • Great Idea!!

    I guess you just iterate through the project files, applying the scaling on object/layout sizes?!

    Doesn't seem to work for me tho :(

    It just sits on "Writing re-scaled project..." with no activity ?!

    I traced it in procmon to confirm and it's definitely doing nothing! At least before hitting "Re-Scale" it referenced in the Rich Text control DLL a billion times :)

    After opening the project it seems to have set the project screen size but nothing else?!

    I'm using Win8.1 64-bit btw

    Cheers,

    Daniel

  • Ugh can't you hold shift and resize via bounding box buttons?!

  • Got annoyed and created a work around, not sure anyone else will make use of this but here's the VBS I call as the custom browser.

    Option Explicit

    On Error Resume Next

    Dim oShell

    Set oShell = WScript.CreateObject("Wscript.Shell")

    Dim strBrowser, strBrowserArg, strARG

    strARG = WScript.Arguments.Item(0) ' This captures the preview URL passed by Contruct2

    strBrowser = Chr(34) & "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" & Chr(34) 'This is the Browser

    strBrowserArg = " -proxy-server= " 'This is the Browser Arguments

    If strARG = empty Then

         MsgBox "Unable to identify URL passed from Contruct2!"

    Else

         oShell.Run strBrowser & strBrowserArg & strARG,1,True

    End If

  • word!

  • Wow thanks for sharing Kenny, Could you clarify the licence on these?

  • Hi folks,

    I'm hoping someone can assist me in creating a ship wheel type control.

    Basically I want to be able to a spin a bidirectional wheel (with inertia) which sets the angle of another object (at a slower rate) - I guess a bit like a fixed geared bicycle.

    Some suggestions on how to implement the logic efficiently would be greatly appreciated.

    Thanks,

    Daniel

  • Very informative all the same! Thanks