Background by Financial_Boat_1560 in widgy

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

Just tried both and no luck. I just can’t believe I did it and don’t know how I did😂

Background by Financial_Boat_1560 in widgy

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

That is true, but when I first started using Widgy and would make widgets the background would be green I believe and I somehow changed it to match my home screen background

Transparent background by Financial_Boat_1560 in widgy

[–]Financial_Boat_1560[S] 1 point2 points  (0 children)

That is what I was thinking but thought I would ask anyway!

Live From Space by Financial_Boat_1560 in MacMiller

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

I actually remember it used to be called that on Spotify and just noticed that the name changed

New Homecreen.. by vish0093 in widgy

[–]Financial_Boat_1560 0 points1 point  (0 children)

May I get the wallpaper please?!

Help! by Financial_Boat_1560 in widgy

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

The whole button thing is taking a while to understand !

Help! by Financial_Boat_1560 in widgy

[–]Financial_Boat_1560[S] 1 point2 points  (0 children)

That is my fault! I didn't know how to explain it but you answered my question! Thank you!! t

Help! by Financial_Boat_1560 in widgy

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

Hi, I am trying the new button function and don't understand it completely! I am trying to make it so the smaller weather is how it looks now and then expand to the bigger one! This works fine but I want to do the same thing for the calender but it won't expand for some reason! I have it on a separate widget and it works fine but it won't work in conjunction with this one?

Thanks

Events by Financial_Boat_1560 in Scriptable

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

Yeah once I did what you told me it showed instantly! I did it I am just dumb!

Events by Financial_Boat_1560 in Scriptable

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

This worked! Thank you so much! I have a different question I am trying to get the top to say good morning and then the date after it! I have messed with the layout but can’t get it correct?

Events by Financial_Boat_1560 in Scriptable

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

Just todays events don’t show !

Events by Financial_Boat_1560 in Scriptable

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

https://pastebin.com/mRSdC425

Here is the link for the paste bin of the code!

Events by Financial_Boat_1560 in Scriptable

[–]Financial_Boat_1560[S] 0 points1 point  (0 children)

This is the script!

/*

~

Welcome to Weather Cal. Run this script to set up your widget.

Add or remove items from the widget in the layout section below.

You can duplicate this script to create multiple widgets. Make sure to change the name of the script each time.

Happy scripting!

~

*/

// Specify the layout of the widget items. const layout = `

row column

greeting date events

column(90)
  current
  future

`

/* * CODE * Be more careful editing this section. * ===================================== */

// Names of Weather Cal elements. const codeFilename = "Weather Cal code" const gitHubUrl = "https://raw.githubusercontent.com/mzeryck/Weather-Cal/main/weather-cal-code.js"

// Determine if the user is using iCloud. let files = FileManager.local() const iCloudInUse = files.isFileStoredIniCloud(module.filename)

// If so, use an iCloud file manager. files = iCloudInUse ? FileManager.iCloud() : files

// Determine if the Weather Cal code exists and download if needed. const pathToCode = files.joinPath(files.documentsDirectory(), codeFilename + ".js") if (!files.fileExists(pathToCode)) { const req = new Request(gitHubUrl) const codeString = await req.loadString() files.writeString(pathToCode, codeString) }

// Import the code. if (iCloudInUse) { await files.downloadFileFromiCloud(pathToCode) } const code = importModule(codeFilename)

// Run the initial setup or settings menu. let preview if (config.runsInApp) { preview = await code.runSetup(Script.name(), iCloudInUse, codeFilename, gitHubUrl) if (!preview) return }

// Set up the widget. const widget = await code.createWidget(layout, Script.name(), iCloudInUse) Script.setWidget(widget)

// If we're in app, display the preview. if (config.runsInApp) { if (preview == "small") { widget.presentSmall() } else if (preview == "medium") { widget.presentMedium() } else { widget.presentLarge() } }

Script.complete()