0% found this document useful (0 votes)
726 views2 pages

Scriptable Widget with Image & Links

Xịt metadata

Uploaded by

hanganhnga303
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
726 views2 pages

Scriptable Widget with Image & Links

Xịt metadata

Uploaded by

hanganhnga303
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

// Variables used by Scriptable.

// These must be at the very top of the file. Do not edit.


// icon-color: blue; icon-glyph: file;
async function argsPrompt(message, isSecure) {
let prompt = new Alert();
prompt.message = message;
prompt.addTextField(isSecure ? "" : " CREADOR PLUSEED", "");
prompt.addAction("OK");
await prompt.presentAlert();
return prompt.textFieldValue(0);
}3
widget = new ListWidget();
let backgroundImage = await loadImage("https://i.ibb.co/1shQsVr/IMG-9643.jpg");
widget.backgroundImage = backgroundImage;
widget.setPadding(0, 0, 0, 0);

title = widget.addText(" 𝗚
𝗡
𝗜
𝗞
𝗖
𝗥
𝗧
𝗗
𝗔
𝗘
𝗛
");
title.font = Font.boldSystemFont(17);
title.textColor = Color.white();

widget.addSpacer();

let stack1 = widget.addStack();


stack1.layoutHorizontally();
stack1.addSpacer();
let mofscrButton = stack1.addText(" ");
mofscrButton.textColor = Color.white();
mofscrButton.url =
"scriptable:///run/filePicker?path=/var/mobile/Library/Plus/YjAzNmYxYTZkYjdlYTY0OTF
jNjMyZTgxNTQyNWE2MjJlNDE3MTg2OA%3D%3D.txt";

let frigameButton = stack1.addText(" ");


frigameButton.textColor = Color.white();
frigameButton.url =
"scriptable:///run/filePicker?path=/var/mobile/Library/Plus/YjAzNmYxYTZkYjdlYTY0OTF
jNjMyZTgxNTQyNWE2MjJlNDE3MTg2OA%3D%3D.txt";

stack1.addSpacer();

widget.addSpacer();

let stack2 = widget.addStack();


stack2.layoutHorizontally();
stack2.addSpacer();

let powerxButton = stack2.addText(" ");


powerxButton.textColor = Color.white();
powerxButton.url =
"scriptable:///run/filePicker?path=/var/mobile/Library/Plus/NTI2MzljMTg2NmViZTA1OGM
2ODEyOTgwYzI2NjEwNTI1YWIxMmVkNjQwOGZhMzI3ZjgwNTg4OTZm%0D%0AN2Q0ODczYQ%3D%3D";

let fixlagButton = stack2.addText(" ");


fixlagButton.textColor = Color.white();
fixlagButton.url =
"scriptable:///run/filePicker?path=/var/mobile/Library/Plus/YmVhZTE0ZDQ0MDBjNzM3MTA
zYjgxZjU4YWU4YjFlNDc%3D.txt";
stack2.addSpacer();

widget.addSpacer();

let exitButton = widget.addText(". 🛒");


exitButton.textColor = Color.white();
exitButton.url = "https://www.instagram.com/pluusx?
igsh=bGZkeWxobWI0dWZw&utm_source=qr";

exitButton.lineLimit = 1;

widget.presentMedium();

Script.complete();

async function loadImage(url) {


const request = new Request(url);
return await request.loadImage();
}

You might also like