farhanx's Forum Posts

  • Actually facebook option is also a part of this game but there are some people who do not use facebook but they will receive invitation on their email accounts. To get those email accounts i need to find the contact lists so the user will be able either to use his facebook contact for game or the contacts from his contact lists... is there a way to do this or any plugin???

  • which third party plugin your saying? I am wondering there must be a way to do this i really need help in this regard...my game required me to use contact list from the phone ...any more ideas please help???

  • My game option require to send an invitation to the person on user's contact lists. If there is any email available then a message will be send via server to the contact's email address.

    All the server side work i have completed but now i need to import the phone list of the gamer's mobile and show it on the screen. So that he would choose to send invitation.

    Now problem is I dont know how to import the contact list of mobile using construct2...Is there any way to make that using construct2? Or any idea how to achieve this goal?

  • hi,

    i am new to construct2 i need to know how can i browse an image file from the mobile picture gallery? Is there any tutorial available for this?

    I need to browse all existing files which were shot by mobile camera?

  • Thanks Kyatric , it make lot of since now ...i am able to use dictionary and array from json because of your help. Thanks again,

  • i am still looking for a solution i cannot find any good help yet. Kindly anyone help me to read json from web page to construct2 array or variable..if is there a tutorial available then please share as well

  • I am sorry i dont understand what you mean by saving array as json and upload it?

    The lastData contain the json string do i need to save that in disk before parse it???

  • i am a newbee in construct2 ...I have made a php page that returns me json string like below

    {"status":"failed","Code":"400000"}

    the problem is i don't know how to extract the status and code from AJAX.LastData values. I have added Array object on my project and then i used following statement in thought that maybe i will get 0 element value but it displays nothing.

    ajax (on completed) ->

        Array = Load from Json String ajax.LastData

        TextOut = Set Text to " "&Array.at(0)

    Kindly tell me what mistake i am making in retriving the data ? if i dont use json then everything works fine but i need json to use.

  • check this project if you remove the png pink bar then test the result which will show you bad shape and result of the test but while having this on the game canvas it shows smooth look

    dl.dropboxusercontent.com/u/104183650/New%20project.caproj

  • how you have resolved ??

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I found a way its a trick maybe help you too..

    just import png small image and put it somewhere outside of the canvas on the game board. Strangely it will make your font looks back in cool ..not sure the internal reason but now if i need to use good quality of fonts i just use any dummy bar or image and put it like this...

    try and let me know what you think.

  • I am using text object which is a required part of my project where i cannot use textsprites due to the the number of different language supports.

    The problem which i am facing is when i use webgl then font looks very bad if i make it off then it shows correct font. Is there any other way by which i can see the correct font without losing its quality in webgl?

    Or if i can invoke WEBGL off or on while inside the application using events???

  • use php to corp or resize your picture

  • correct i also don't know how much secure are the forms , but if they implementing same html forms likewise on any webpage then i guess its fine.

    I like to hear more views about it...

  • Dear all ,

    I am trying to implement a user interface that will display a form for user where user will either signup or signing if he has already account. Same like this there are several other screens for configuration. Later user will able to play the game with Multiply capability through my server where i am using P H P scripts.

    Now my question is should

    1) should i implement the form on the canvas using construct 2? Or Should i create the form web page separately and call it inside construct 2 using browser object.   

    2) If i should call webpage inside browser object for my forms then should i use remote form webpage or a local "form webpage" embedded beside other construct 2 pages? In simple words server side is fine at server end but to display the local web page for speed is it a good idea to use?

    since i am newbie in construct 2 I Like to know what you guys have done while facing this situation,