irina's Forum Posts

  • digitalsoapbox

    Any news on tis?

    by the way... link to test is not working

  • Excellent!

    Looking forward to it.

  • Colludium

    great work so far!

    Is it possible to simulate water surface?

  • Great news, some powerfull stuff you got there!!!

    cheers!

  • FYI, this is C2 part of forum...

  • rexrainbow

    Hello

    I am playing arround with your googlemap plugin and i can't figure out how to make a search call like this:

    "https://www.google.com/maps/embed/v1/search?q="&MyVariable&"&zoom=13&key=xxxxxxxxxxxxmy_api_keyxxxxxxxxxxxxx"

    any tips?

  • hello,

    I need some help with ajax post.

    I want to send a txt string to server and to use that string to get the responce.

    iw set ajax as this:

    tag: "search"

    url: from my variable&"search.php"&"?AskMe="

    data: TextBox.Text

    method: "POST"

    and my php fails on this:

    <?php

    // string to search in a filename.

    $searchString = $_POST['AskMe'];

    .

    (here's more of my php that properly works)

    .

    ?>

    what am i doing wrong? ...how to properly POST string from my textbox.text to my $searchString in php?

    thanx!!!!

  • Can anybody tell me why this works for me only in NW.js and not i any of browsers?

    and i can type image adress in browser manually and it works but not through C2 preview?

    ie even shows this error:

    javascript error

    security error

    http://my.local.ip:50000/glwrap.js, line 2138 (col4)

    help <img src="{SMILIES_PATH}/icon_e_sad.gif" alt=":(" title="Sad">

  • korbaach

    Sorry to bother you again.... i am so miserable in my agony... wich version of C2 are you using? (i am on 244/64bit)

  • ok... atleest i know that problem is on my end.

    thank you for your time!!!

  • what!?

    this was the last thing i was expecting... or better i was not expecting this answer at all...

    ...so where do i need to look for source of my problem???

  • Hello!

    I have a big problem with image load...

    Sprite won't load image from my URL but it will from some other... eg. vimeo...

    http://www.vixus.hr/foto/LoadImage.capx

    I'w changed permisions on server but nothing helps.

    I't works in NW.js but not in any of browsers.

    What am i doing wrong?

    help?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • thanx for the help... but with this i have sort of semi solution where i actually get immages (i get their data, name etc.) but i dont see them.... they are all black!?

    im confused...

  • Hello,

    here goes mine trouble...

    i have on server some images

    i make ajax call on my action.php wich looks like this:

    <?php
      header('Access-Control-Allow-Origin: *');
      $imagesDir = '';
      $images = glob($imagesDir . '*.{jpg,jpeg,png,gif}', GLOB_BRACE);
      echo json_encode($images, JSON_UNESCAPED_UNICODE);
    ?>[/code:20bikun7]
    
    it works but i have local characters problems.
    when i set header to:
    
    [code:20bikun7]<?php
      header('Content-type: text/html; charset=UTF-8');
      $imagesDir = '';
      $images = glob($imagesDir . '*.{jpg,jpeg,png,gif}', GLOB_BRACE);
      echo json_encode($images, JSON_UNESCAPED_UNICODE);
    ?>[/code:20bikun7]
    i manage to get rid of characters problem but it works only in NW.js and i have no ajax responce in any major browser... 
    
    any idea how to fix this?