October, 2015
now browsing by month
This might look outrageous/inappropriate/invalid suggestion.
But will it be possible to add support for dashclock and it’s extensions in LL?
I can’t think of some good use cases right now. But a few are as follows:
1) Show cell network stats on LL
2) Populate dynamic text with real time stock market updates
Pierre Hébert
]]>Just outta curiosity who wrote this script and why was it removed? Im sure it was on the wiki as an example.
//Flags Name: CV_music
LL.bindClass(“android.media.AudioManager”);
LL.bindClass(“android.widget.SeekBar”);
LL.bindClass(“android.widget.FrameLayout”);
LL.bindClass(“android.view.Gravity”);
var context = LL.getContext();
var mgr = context.getSystemService(Context.AUDIO_SERVICE);
var stream = AudioManager.STREAM_MUSIC;
// see http://developer.android.com/reference/android/media/AudioManager.html for other streams
var seekBar = new SeekBar(context);
seekBar.setMax(mgr.getStreamMaxVolume(stream));
seekBar.setProgress(mgr.getStreamVolume(stream));
seekBar.setOnSeekBarChangeListener(
{ onProgressChanged: function(seekBar, progress, fromUser)
{ if(fromUser)
{ mgr.setStreamVolume(stream, progress, AudioManager.FLAG_PLAY_SOUND);
} } });
// let the bar extend horizontally but not vertically, center it in the view
var lp = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.WRAP_CONTENT);
lp.gravity = Gravity.CENTER;
seekBar.setLayoutParams(lp);
// prevent the desktop to scroll when the thumb position is moved
item.setHorizontalGrab(true);
return seekBar;
]]>Can someone tell me how to extend the length of the side bar in the image here?
Can someone tell me how to extend the length of the side bar in the image here? I want it to extend the length of the desktop ie from top to bottom
]]>Im sure I saw a custom view script showing how to change volume with a Seekbar was it removed I cant seem to find it…
Possible newbie question but I cant get swipe down notification tray to work at all.
Hi all, Today I imported v1.3 of Lukas Morawietz minimal calendar.
But it gives me an error of : At line 52: missing ; after for-loop condition.
At the moment i still have v1.1 that is still working, but if it is possible I would like this new version also to be working.
Somebody who can help me with that? Are there more who use this version?
]]>Pierre Hébert and this is the video that shows how the intent works
Pierre Hébert and this is the video that shows how the intent works
]]>




D5 Creation