I just took the Minecraft Noob test! Check out what I scored. Think you can beat me?!
To take the test, check out http://minecraftnoobtest.com/test.php
I just took the Minecraft Noob test! Check out what I scored. Think you can beat me?!
To take the test, check out http://minecraftnoobtest.com/test.php
First: the image must have invisble pixel to watch throu. Your image is just white where it has to be invisble. You can edit images so with IsoPix (from Google Play Store).
Second: I don't know if that is really the mistake, but you should name it freddy_maskPng instead of freddy_mask.png (it maybe searches for the method png in freddy_mask).
var path=android.os.Environment.getExternalStorageDirectory().getAbsolutePath()+"Android/data/net.zhuoweizhang.mcpelauncher.pro/files/textures/freddy_mask.png";
I just took the Minecraft Noob test! Check out what I scored. Think you can beat me?!
To take the test, check out http://minecraftnoobtest.com/test.php
I just took the Minecraft Noob test! Check out what I scored. Think you can beat me?!
To take the test, check out http://minecraftnoobtest.com/test.php
var path=android.os.Environment.getExternalStorageDirectory().getAbsolutePath()+"/games/com.mojang/";
var img = new android.graphics.BitmapFactory.decodeFile(path + "yourimage.png");
//
var image = new android.graphics.drawable.BitmapDrawable(img);
var ctx = com.mojang.minecraftpe.MainActivity.currentMainActivity.get();
ctx.runOnUiThread(new java.lang.Runnable({ run: function(){
try{
GUI=new android.widget.PopupWindow(ctx);
var layout = new android.widget.LinearLayout(ctx);
Ok I'm sorry for acting stupid but did u fix the problems this have been out for 3days and I just want it done I'm sorry if ur mad at me
This was ment just to be for a mini game but if u really want " we" could post this 😂😞
One last thing ,
It says encountered to many bugs because of "simple gui
sorry im not mad, just afk watching like 3 movies
This google+ is what ill comment on vids on
My Google+
My YouTube Is ‹ HungryBoy02 › My Blog Is The Obsidian Sword
I just took the Minecraft Noob test! Check out what I scored. Think you can beat me?!
To take the test, check out
http://minecraftnoobtest.com/test.php
i dont know how to fix that, i just noticed ur quotes were wrong XD
but im pretty shure u have to put
freddy_mask.png.setBackgroundDrawable("http://img2.wikia.nocookie.net/__cb20141111221703/freddy-fazbears-pizza/images/5/50/LookingThroughTheMask.png");
before you put
freddy_mask.png=new android.widget.image(); //not sure
This google+ is what ill comment on vids on
My Google+
My YouTube Is ‹ HungryBoy02 › My Blog Is The Obsidian Sword
I just took the Minecraft Noob test! Check out what I scored. Think you can beat me?!
To take the test, check out
http://minecraftnoobtest.com/test.php
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumFirst: the image must have invisble pixel to watch throu. Your image is just white where it has to be invisble. You can edit images so with IsoPix (from Google Play Store).
Second: I don't know if that is really the mistake, but you should name it freddy_maskPng instead of freddy_mask.png (it maybe searches for the method png in freddy_mask).
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumPut at the start of the Script, before the GUI:
var path=android.os.Environment.getExternalStorageDirectory().getAbsolutePath()+"Android/data/net.zhuoweizhang.mcpelauncher.pro/files/textures/freddy_mask.png";
ModPE.overrideTexture("freddy_mask", "url");
Put in the GUI instead of
freddy_mask=new android.widget.image();
this:
freddy_mask=new android.graphics.Path();
let the line with Background.setDrawable away.
I hope this works...
Hay if u people want an overview here is
https://dl-web.dropbox.com/get/freddy mask.txt?_subject_uid=386753113&w=AABtHQR_Dvq1LREAnISUd5c5duxCgCNzPmSaRKPV8izatQ
Ore this https://www.dropbox.com/s/pvwrriv0k4848re/freddy mask.txt?dl=0
Use to check if it's right 😀
I already suggested that, and nobody tried it
This google+ is what ill comment on vids on
My Google+
My YouTube Is ‹ HungryBoy02 › My Blog Is The Obsidian Sword
I just took the Minecraft Noob test! Check out what I scored. Think you can beat me?!
To take the test, check out
http://minecraftnoobtest.com/test.php
Oh
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumI'm sorry, I forgot this easy template for a image-view
https://github.com/BeATz-UnKNoWN/ModPE_Scripts/wiki/ModPE-Script-Templates
hows this been going?
This google+ is what ill comment on vids on
My Google+
My YouTube Is ‹ HungryBoy02 › My Blog Is The Obsidian Sword
I just took the Minecraft Noob test! Check out what I scored. Think you can beat me?!
To take the test, check out
http://minecraftnoobtest.com/test.php
-
View User Profile
-
View Posts
-
Send Message
Curse Premiumvar path=android.os.Environment.getExternalStorageDirectory().getAbsolutePath()+"/games/com.mojang/";
var img = new android.graphics.BitmapFactory.decodeFile(path + "yourimage.png");
//
var image = new android.graphics.drawable.BitmapDrawable(img);
var ctx = com.mojang.minecraftpe.MainActivity.currentMainActivity.get();
ctx.runOnUiThread(new java.lang.Runnable({ run: function(){
try{
GUI=new android.widget.PopupWindow(ctx);
var layout = new android.widget.LinearLayout(ctx);
button1 = new android.widget.Button(ctx);
button1.setBackgroundDrawable(image);
button1.setOnClickListener(new android.view.View.OnClickListener({
onClick: function(viewarg){
//
}
}));
layout.addView(button1);
GUI = new android.widget.PopupWindow(layout, android.widget.RelativeLayout.LayoutParams.WRAP_CONTENT, android.widget.RelativeLayout.LayoutParams.WRAP_CONTENT);
GUI.setBackgroundDrawable(new android.graphics.drawable.ColorDrawable(android.graphics.Color.TRANSPARENT));
GUI.setWidth(120);
GUI.setHeight(120);
GUI.showAtLocation(ctx.getWindow().getDecorView(), android.view.Gravity.LEFT | android.view.Gravity.BOTTOM, 0, 0);
}catch(err){
print("An error occured while trying to show GUI: " + err);
}
}}));