If have login problems remove cookies and clear browser cache.
Thread Rating:
- 0 Vote(s) - 0 Average
- 1
- 2
- 3
- 4
- 5
Java PixelyVulpine Sprite Creator
|
09-03-2021, 09:11 PM
|
|
star cash
Member
|
Posts: 1,223
Joined: Apr 2021
|
|
RE: PixelyVulpine Sprite Creator
Ok thanks
Can you write an example of script for me?
|
|
09-03-2021, 09:19 PM
|
|
RE: PixelyVulpine Sprite Creator
Sure. ¿But why would you want it tho? It's not released yet
Quote:package pixelyvulpine.test.scenes;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Font;
import javax.microedition.midlet.MIDlet;
import pixelyvulpine.api.lcdui.Layout;
import pixelyvulpine.api.lcdui.Color;
import pixelyvulpine.api.lcdui.DimensionAttributes;
import pixelyvulpine.api.lcdui.DimensionAttributes.Scaled;
import pixelyvulpine.contents.Button;
import pixelyvulpine.contents.Canvas;
public class Vibrator extends Layout implements CommandListener{
private Command vib = new Command("Vibrate", Command.ITEM, 1);
private Button vibrate;
public Vibrator(MIDlet app) {
super(app);
animation = Layout.ANIMATION_SLIDE_LEFT;
setBackgroundColor(new Color(150,10, 37));
vibrate = new Button(this, new Button.ButtonPadding(0,10,0,0), "¡Vibrate lewd! x3", Font.getFont(Font.FACE_SYSTEM, Font.STYLE_BOLD, Font.SIZE_LARGE));
vibrate.setClickCommand(vib);
Canvas center = new Canvas(this, new DimensionAttributes(new Scaled(0,0,100,100)));
center.setBackgroundColor(null);
center.setForegroundColor(null);
center.setContentAlignment(Canvas.ALIGNMENT_CENTER);
center.addContent(vibrate);
addContent(center);
this.setCommandListener(this);
}
public void Setup() {
this.setFullScreenMode(true);
}
public void commandAction(Command arg0, Displayable arg1) {
if(arg0 == vib) {
Display.getDisplay(getMIDlet()).vibrate(5000);
vibrate.setEnabled(false);
vibrate.setText("OwO");
try {
Thread.sleep(5000);
} catch (InterruptedException e) {}
vibrate.setText("¡Vibrate lewd! x3");
vibrate.setEnabled(true);
}
}
}
This makes a Context (currently named "Layout") with a button on the center, that vibrates the phone for 5 seconds when pressed
[size=xx-small]Signature[/size]
[URL=https://www.exophase.com/user/JoseskVolpe/][IMG]https://card.exophase.com/2/0/45687.png?1612237163[/IMG][/URL]
[align=justify][size=x-small][b]OwO ¿¿¿What is this??? *wags tail*
Take my beret plz 7w7 ~[/b][/size][/align]
|
|
09-04-2021, 12:22 AM
|
|
star cash
Member
|
Posts: 1,223
Joined: Apr 2021
|
|
RE: PixelyVulpine Sprite Creator
Wow scripting is hard
thanks bro
|
|
09-12-2021, 02:26 AM
|
|
RE: PixelyVulpine Sprite Creator
good luck bro
|
|
User(s) browsing this thread: 1 Guest(s)