FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Windows Phone Installer (bug free) (https://fileforums.com/showthread.php?t=102774)

pcblizzard 29-01-2024 02:55

I'm at a loss right now, but the setup doesn't create a desktop shortcut for me (and in the start menu the shortcut is simply named “.lnk”, i.e. without the name of the game before the “.lnk”).

I know I've done something wrong, maybe someone can help me out?

Code:

[Execs]
;Tile Caption|Exec Directory|Exec File|Shortcut Name/Action Name
AppExe1=Stardew Valley|Stardew Valley.exe

And I sometimes (not always) have the problem that I can't activate the AutoRun menu “immediately” (after clicking once), for example, so I have to click 4–5 times with the mouse before it works.


KR pcblizzard

pcblizzard 29-01-2024 03:49

Ouch, thank you!

IRAQIGHOST 29-01-2024 09:26

after creating the setup and check the Setup.exe in Virustotal it's showed 3 of programs detected it as Malware

pcblizzard 29-01-2024 10:12

I have one more question: Is it possible to add arguments under “[Execs]”?
I have tried it, but it has no effect, the “Arguments” are not added to the desktop- / start menu shortcuts.


KR pcblizzard

pcblizzard 29-01-2024 10:30

I have to thank you again!

pcblizzard 09-07-2024 06:43

3 Attachment(s)
I have now found errors/problems:

1. on a (4K) UHD monitor the installer looks very compressed. Is there a scaling option in the script that can be activated? [Second image]
2. if I want to change the installation folder, click on another one and click on the normal folder again, it automatically adds the "AppName" after the "InstallDir" name. [First image]

Example, based on the picture: if I click on the folder "Intel" and then again on "Jak 2 HD", the installation folder reads "C:\Program Files\Jak 2 HD" (which would be correct) instead of "C:\Program Files\Jak 2 HD\Jak II: Renegade HD" (which is wrong, because "InstallDir" + "AppName" is used). Sometimes dots are simply inserted instead of "Program Files" (i.e. "C:\...\Jak 2 HD" instead of "C:\Program Files\Jak 2 HD") If you do not check this and click on "Ok" in the "Select Directory" window, the installer crashes (but I have not yet found out when the installer sets the "..." instead of "Program Files").

EDIT: Ah and when I use the uninstaller and click on e.g. the progress bar (although I don't think it matters where I click), I get an error message (but the program is [apparently still completely] uninstalled) (Third image).

Thank you for your help

fadliabravers 29-04-2025 22:35

https://imgur.com/ROVSbAl
https://i.imgur.com/4MxHFtR.jpeg

how to fix this problem, so that it can adjust to the monitor display resolution. this problem appears when the monitor resolution is 4k

Budakgamers9849 26-05-2025 16:00

can it only be run at 1080p resolution? i use at 4k resolution, setup is cut off and can't be upscaled

nsaer 07-09-2026 12:06

Hey guys. How do I change the color to pink? I've tried so many times and failed.

https://i23.servimg.com/u/f23/20/66/06/51/2026-041.png

mausschieber 08-09-2026 03:56

Quote:

Originally Posted by nsaer (Post 510921)
Hey guys. How do I change the color to pink? I've tried so many times and failed.

https://i23.servimg.com/u/f23/20/66/06/51/2026-041.png

Take a look here otherwise i don't know

Code:

[Theme]
Music=1
Image=1
RoundEdgeBtn=0
;Interface either be in dark or light
Dark=1
;Colors are Originally from OS Windows Phone 8 (01-34)
Color=00
;Set 00 for custom color and give your color code here in BBGGRR
CustColor=$8223FE


nsaer 08-09-2026 04:21

Quote:

Originally Posted by mausschieber (Post 510924)
Take a look here otherwise i don't know

Code:

[Theme]
Music=1
Image=1
RoundEdgeBtn=0
;Interface either be in dark or light
Dark=1
;Colors are Originally from OS Windows Phone 8 (01-34)
Color=00
;Set 00 for custom color and give your color code here in BBGGRR
CustColor=$8223FE


Thank you. I tried that before and it didn't work. But I saved the file and ran it again, and it worked.

nsaer 08-09-2026 04:30

There's a problem. The desktop shortcut is not displaying correctly.

Is there a programming error, or what?

Please help me fix this.

I apologize for my English; I'm not fluent.

https://i16.servimg.com/u/f16/18/15/28/91/1233.png

https://i16.servimg.com/u/f16/18/15/28/91/2209.png

https://i16.servimg.com/u/f16/18/15/28/91/3174.png

KaktoR 08-09-2026 09:08

Looks like you forgot the Exec directory.

Try {app}

nsaer 08-09-2026 09:13

Quote:

Originally Posted by KaktoR (Post 510927)
Looks like you forgot the Exec directory.

Try {app}

No. I didn't forget anything. But it seems there's a programming error. I hope the experts can fix the problem.

Cesar82 08-09-2026 18:58

Quote:

Originally Posted by nsaer (Post 510928)
No. I didn't forget anything. But it seems there's a programming error. I hope the experts can fix the problem.

If you need a different icon for your desktop shortcut, add an icon file named Icon.ico to your game folder ({app}) before compressing it, or remove the code part indicated below from your script (this way, the icon used will always be the one from your game executable).
Code:

IconFileName: "{src}\Icon.ico";


nsaer 09-09-2026 05:36

Quote:

Originally Posted by Cesar82 (Post 510930)
If you need a different icon for your desktop shortcut, add an icon file named Icon.ico to your game folder ({app}) before compressing it, or remove the code part indicated below from your script (this way, the icon used will always be the one from your game executable).
Code:

IconFileName: "{src}\Icon.ico";


Thank you.
I performed the same step you mentioned,
but it didn't work.
https://i16.servimg.com/u/f16/18/15/28/91/2026-158.png

Cesar82 09-09-2026 10:44

Quote:

Originally Posted by nsaer (Post 510933)
Thank you.
I performed the same step you mentioned,
but it didn't work.
https://i16.servimg.com/u/f16/18/15/28/91/2026-158.png

I see the `IconFileName: xxxx` part in the image.
You didn't remove it.

nsaer 10-09-2026 10:43

Quote:

Originally Posted by Cesar82 (Post 510935)
I see the `IconFileName: xxxx` part in the image.
You didn't remove it.

Thank you. Everything is working now.


All times are GMT -7. The time now is 20:57.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com