Search found 23 matches

by Fabimawn
Sat Dec 21, 2024 3:30 pm
Forum: Support and Development
Topic: Feature request copy file, and paste path
Replies: 4
Views: 507

Re: Feature request copy file, and paste path

Yea the shell command solved the issue. I am not sure if opening the application like that with admin would also work since it seems it happens on all elevated Windows processes. Even saw some guys on Reddit using photoshop elevated, also no drag 'n drop. It's UAC blocking it, but apparently copying...
by Fabimawn
Sat Dec 21, 2024 2:05 pm
Forum: Support and Development
Topic: Feature request copy file, and paste path
Replies: 4
Views: 507

Re: Feature request copy file, and paste path

I just got the idea to try using a powershell command to get the data which luckilly works for now AND in Admin mode since UAC isn't acting like an idiot for copy paste operations. function sys.GetClipboardFilePath() -- Function to get the path to a file that's currently in the clipboard -- Run Powe...
by Fabimawn
Sat Dec 21, 2024 2:03 pm
Forum: Support and Development
Topic: Feature request copy file, and paste path
Replies: 4
Views: 507

Re: Feature request copy file, and paste path

I just got the idea to try using a powershell command to get the data which luckilly works for now AND in Admin mode since UAC isn't acting like an idiot. function sys.GetClipboardFilePath() -- Function to get the path to a file that's currently in the clipboard -- Run PowerShell command to get clip...
by Fabimawn
Sat Dec 21, 2024 1:48 pm
Forum: Support and Development
Topic: Feature request copy file, and paste path
Replies: 4
Views: 507

Feature request copy file, and paste path

Hello Love2D forum. With Windows I've ran in a lot of problems when trying to compile my application for distribution, but most of them were fixable. This problem might not be. I've got a drag and drop system in my application where customers can drop a .bin file to be uploaded to a microcontroller ...
by Fabimawn
Sat Dec 21, 2024 12:15 pm
Forum: Support and Development
Topic: How to bake in Administrator request into compiled .exe
Replies: 4
Views: 646

Re: How to bake in Administrator request into compiled .exe

Well this was a waste of time... Windows won't allow you to drag and drop in my case update binaries onto the Love2D application since it's now elevated and explorer.exe isn't. This means I am forced to use admin request per driver. Edit solved it in a different thread if anybody is also magigally h...
by Fabimawn
Sat Dec 21, 2024 10:54 am
Forum: Support and Development
Topic: How to bake in Administrator request into compiled .exe
Replies: 4
Views: 646

Re: How to bake in Administrator request into compiled .exe

Thanks a lot for all the answers! interesting tool rcedit, however I tested "$ rcedit "path-to-exe-or-dll" --set-requested-execution-level "requireAdministrator"", and what it seems to do is set an incorrect manifest for the application which creates a manifest mismatch...
by Fabimawn
Fri Dec 20, 2024 3:29 pm
Forum: Support and Development
Topic: How to bake in Administrator request into compiled .exe
Replies: 4
Views: 646

How to bake in Administrator request into compiled .exe

Hello everyone at Love2D! Today I finished up creating a tool that I want to distribute to my companies customers so they can easilly update their embedded systems via serial (targetted at Windows 7 or higher). This works amazingly on multiple COM ports at the same time with different threads, howev...
by Fabimawn
Fri Dec 06, 2024 11:13 am
Forum: Support and Development
Topic: Will a thread or/and channel get dereferenced automatically?
Replies: 2
Views: 954

Will a thread or/and channel get dereferenced automatically?

Hello, I'm working on a desktop application which works with multiple thread instances to execute some commands in a CLI, but I now wonder if I manually have to dereference the thread instances when they're finished with the :release method, since it seems I can still pull data from the channels aft...
by Fabimawn
Tue Oct 08, 2024 7:03 am
Forum: Support and Development
Topic: Moonshine drawing shaders inside canvas = black screen
Replies: 6
Views: 11411

Re: Moonshine drawing shaders inside canvas = black screen

This all makes sense now! Thanks for the in depth info! I've indeed used scissors before, and I'm not sure I tried before in this project ; P Too many options I guess. Thanks for pointing it out though, now I know a lot more about these functions, so I can fit them better in certain scenario's!