fongka2's Forum Posts

  • Is there possibility we can change that "index.html" ?

  • Never actually bothered with that one, however:

    thanks!

    seems its useless!

  • if your function is "sum", with parameter 0 and 1 being numbers (5 and 6 in my exemple).

    just enter Function.Call("sum", 5, 6)

    I knew it

    but what is[action>function>Call expression]

    same to function.call ???

    forgive my english if i made you feel confusion

    i'm just asking [action>function>Call expression]

  • fongka2

    Look at the Text2.text=>Function.Call("MultiplyByTwo", 6)

    thanks

    but .. just don't know about action>function>Call expression

    may you please make a demo about action>function>Call expression please..

  • Two ways to call a function.

    thanks but i'm not asking this

    i asking action>function>Call expression

  • Hi,may i asking for some demo about Call expression?

    I still can't understand

    thanks so much!!

  • fongka2

    I got it. Thank you ! Be sure I'll improve it when I'll get more time.

    Thankyou so much!!

  • fongka2

    Not mine, mine is on this page : http://goo.gl/eLswJ

    2CX543386V552660N

    plz have a check

    thanks for your great contribution again

  • oh shit

    http://cubiq.org/iscroll-4

    I Donated A Wrong Website

  • fongka2

    I don't have time to work on plugins now sorry. But be sure I keep in mind the idea to make a new version.

    Btw, I've never received any donations... Which link did you use?

    Transaction Details
    
    		
    Donation Sent (Unique Transaction ID 8R588724F3686503N)
    
    Original Transaction
     Date	 Type	 Status	 Details	 Amount
     17 Jan 2015	Donation to Matteo Spinelli	 Completed	 ...	-€20.00 EUR 
    
    Related Transaction
     Date	 Type	 Status	 Details	 Amount
     17 Jan 2015	Charge from Credit Card	 CompletedThe funds transfer from your credit card to your PayPal account is completed.The funds transfer from your credit card to your PayPal account is completed.	 Details	€20.00 EUR 
    
    Name:	
    Matteo Spinelli (The recipient of this payment is Non-US – Verified)
    Email:	
    matt3oind@gmail.com
    
    Total amount:	
    -€20.00 EUR
    Fee amount:	
    €0.00 EUR
    Net amount:	
    -€20.00 EUR
    
    Donation Amount:	
    -€20.00 EUR
    
    Purpose:	
    Cubiq.org
    Date:	
    17 Jan 2015
    Time:	
    06:55:37 GMT+08:00
    Status:	
    Completed  
    
    Postal Address:	
    No address provided
    
    Funding type:	
    Credit Card
    Funding source:	
    €20.00 EUR - American Express Credit Card XXXX-XXXXXX-X5473
    
    This credit card transaction will appear on your invoice as "PAYPAL *CUBIQ".
    
    Description:	
    Matteo Spinelli[/code:15fjozo6]
    
    Is this your paypla account?i saw this on plugin download website
  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • To author:

    i had analyzed your code and i found the problems

    Exps.prototype.Year = function (ret, timestamp)
    	{
    	    var today = (timestamp != null)? new Date(timestamp): new Date();
    		ret.set_int(today.getFullYear());
    	};
    
    .....
    
    Exps.prototype.UnixTimestamp = function (ret)
    	{
    	    var today = new Date();
            ret.set_float(today.getTime());
    	};
    [/code:3dp5k345]
    
    reference:http://www.w3schools.com/js/js_dates.asp
    JavaScript dates are [b]calculated in milliseconds[/b] from 01 January, 1970 00:00:00 Universal Time (UTC).
    One day contains 86,400,000 millisecond.
    
    seems in javascript
    a Date object include milliseconds (1 second = 1000 milliseconds) and the standard unix timestamp is 1421664587 (2015/1/19 18:49:47 GMT+8) is NOT include milliseconds part
    so the unix timestamp should multiply by 1000 to 1421664587000
    [quote:3dp5k345][unix timestamp] * 1000 = [java Date]
    1421664587 * 1000 = 1421664587000
    
    
    to get a unix timestamp from Date object just need to Date.getTime() divide by 1000
    [quote:3dp5k345][java Date] / 1000 = [unix timestamp]
    1421664587000 / 1000 = 1421664587
    
    
    [code:3dp5k345]
    Exps.prototype.Year = function (ret, timestamp)
    	{
    	    var today = (timestamp != null)? new Date(timestamp*1000): new Date();
    		ret.set_int(today.getFullYear());
    	};
    
    ...
    Exps.prototype.UnixTimestamp = function (ret)
    	{
    	    var today = new Date();
            ret.set_float(today.getTime()/1000);
    	};
    [/code:3dp5k345]
    
    and i modified the plugin to above code
    i got a correct result to convert from unix timestamp to Year
    This is what i suggest in your next update
    i wish this may help you to solve this problems
  • fongka2

    Screenshot?

    just show you i love your great done

    here is my wish list, my idol

    1:Set value on every line(eg:text=username,line=lineID,value1=userID,value2=M/F,value3=usermessage)

    2:Add more about touch like tap/double tocuh/hold

    3:moving/not moving(i do this manually now)

    4:auto refresh(i use it about a years,still don't know when should i refresh it )

    5:transparent image(i mean line's icons or bkground img)

    6:not a fixed screen size design

    7:or maybe a ISCROLL5 for C2?

    (ps: ive sent a small donation to you for thankyou)

    paypay tid:8R588724F3686503N

  • Please add more function on it

    i really love this plugin and use it always

  • fongka2 The plugin does support iOS

    My Current Plugin is Based on Your plugin

    When i done i'll tell you

    thanks for your share

  • > Phonegap=100%SUCK

    > Is this support Corsswalk?

    > If not

    > may you please add Crosswalk(IntelXDK build) support?

    > Thankyou!!!

    >

    I haven't ever done Crosswalk (don't even have it installed) but maybe in the future.

    In other good news, I just validated that it works to get the device token of iOS devices! Hooray! I'm going to push this to the completed add-ons board

    plz support ios