While programming in python, for an Ubuntu/Linux Mint target, you may want to include a system tray icon for batter interaction with users. In Ubuntu, these are called "application indicators". A basic appindicator icon is quite simple to do in python via PyGTK. There's a very good example here: http://developer.ubuntu.com/resources/technologies/application-indicators/ Scroll down to the PyGTK … Continue reading Lessons Learned : Linux System Tray Icons in python
Lessons learned : Appcelerator
A couple of points learnt while writing an Android application using the excellent titanium appcelerator. Determining intent type: var intentType=Ti.Android.currentActivity.getIntent().getType(); intentType will then hold strings such as: 'android.intent.action.MAIN': an application has been opened directly, not via a share or view intent 'android.intent.action.SEND': also known as the share intent, since this is the action that gets broadcast when a … Continue reading Lessons learned : Appcelerator
You must be logged in to post a comment.