davides's Forum Posts

  • Thanks!

  • Hi all,

    Is there a way to difference Android or IOS using Construct2?

    Greetens

    David

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Me too Is there some tip or trick to fix this problem?

    Greetens

  • Thank you very much. Vegamon007

  • Hi all,

    I' ve created a facebook app on facebook I get Id and app secret correctly.

    I created a button on touch with conditional "Is ready" and after I configured for "Promt to share link"

    But it did not worked.

    Is there any tutorial or tip to make it work?

    Greetens

  • Hi all,

    I tested using whatsapp:// protocol but it does not work, is there any other way to share a text through whatsapp?

    Greetens

  • Hi all,

    I would know if it' s possible create a shortcut using Cordova plugin or something.

    I would create a shortcut on android devices, I ' ve used this java code to do that usinf native java apps.

    [quote:1av3bbvh]public void createShortCut(){

    Intent shortcutintent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");

    shortcutintent.putExtra("duplicate", false);

    shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.shortcutname));

    Parcelable icon = Intent.ShortcutIconResource.fromContext(getApplicationContext, R.drawable.icon);

    shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);

    shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(getApplicationContext, EnterActivity.class));

    sendBroadcast(shortcutintent);

    }

    Also I ' ve added permissions on manifest.xml

    [quote:1av3bbvh]<uses-permission

    android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />

    <uses-permission

    android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />

    Thanks and greetens

    David

  • Thank you very much I found it.

    David

  • Hi,

    I´m new here, I´m doing my first game using Construct 2 and I have a lot of doubts, I read some tutorial, but I don´t find how to move my Character automatically, I would like the player only tap for jump.

    Thank you very much.

    P.D: is there a complex tutorial for a Platform game as for example Mario Bros?