FileForums

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

Th3Raven 29-06-2018 04:05

Quote:

Originally Posted by Jiva newstone (Post 472138)
and all other function is available for pro version new wpi and no one can't have it because razor gave it to some repack team - so stop asking!

I don't think i asked anything and i did those changes for personal use. And the play/stop button can be added on the .engine tho i have no idea how to create it, but is not a bother.

KaktoR 29-06-2018 06:14

If you used BASS library, there is a example next to it.

You must create a new button

example
Code:

[_code]
var
MusicButton: TNewButton;

procedure MusicButtonClick(Sender: TObject);
  begin
    case BASS_ChannelIsActive(SoundStream) of
      BASS_ACTIVE_PLAYING:
      begin
        if BASS_Pause then
          MusicButton.Caption := 'Music ON';
      end;
      BASS_ACTIVE_PAUSED:
      begin
        if BASS_Start then
          MusicButton.Caption := 'Music OFF';
      end;
    end;
  end;

Then you habe to place the button somewhere on installer surface

Th3Raven 30-06-2018 00:42

Quote:

Originally Posted by KaktoR (Post 472141)
If you used BASS library, there is a example next to it.

You must create a new button

example
Code:

[_code]
var
MusicButton: TNewButton;

procedure MusicButtonClick(Sender: TObject);
  begin
    case BASS_ChannelIsActive(SoundStream) of
      BASS_ACTIVE_PLAYING:
      begin
        if BASS_Pause then
          MusicButton.Caption := 'Music ON';
      end;
      BASS_ACTIVE_PAUSED:
      begin
        if BASS_Start then
          MusicButton.Caption := 'Music OFF';
      end;
    end;
  end;

Then you habe to place the button somewhere on installer surface

yes i used BASS Library and when i will have time i will try add the button too. to see how will work. One question. In what section i add the code above? then i create the button as the library with the coordonates too right ?

Jiva newstone 01-07-2018 05:56

Hey, u can add music using bass function, u can't control it,
let's see how the wpi new is working, when dll is loaded then the dll is controling the inno next page and back page, so it just layer the form from dll to inno , like this Inno setup ---> then Form from dll so if u used any button
it will be send to back because the form from dll showing topmost in inno form

ahmedwaill 23-09-2018 11:00

Hello , i'm using Ultra Archive and compressing as precompress,LZMA , and edited arc.ini
when i add data1.bin
in Arc1Source
the uninstaller decompress it perfectly, but sometimes the ultra arch makes data2.bin
so i edit in Arc2Source and make it like the Arc1Source
like this :
Quote:

Arc1Source={src}\data1.bin
Arc1Output={app}
Arc1Progress=80
Arc1Component=


Arc2Source={src}\data2.bin
Arc2Output={app}
Arc2Progress=20
Arc2Component=
so i guess that solves the situation ..
the issue here is some times it freezes while decompressing the arch decompressed using ultra archive with FreeArc "Precomp ver p.zt and LZMA" and the Remaining time keeps increasing ...
idk why that happens.
hope you can check it and explain what happens..

and i hope you can compile in it the task bar icon and mini form
Win6TaskBar.iss
Win7TBP v1.0.iss

Edit : As For the Taskbar i've already Compiled it and it's working properly ...

PsYcHo_RaGE 12-10-2018 23:03

Quote:

Originally Posted by ahmedwaill (Post 475874)
Hello , i'm using Ultra Archive and compressing as precompress,LZMA , and edited arc.ini
when i add data1.bin
in Arc1Source
the uninstaller decompress it perfectly, but sometimes the ultra arch makes data2.bin
so i edit in Arc2Source and make it like the Arc1Source
like this :


so i guess that solves the situation ..
the issue here is some times it freezes while decompressing the arch decompressed using ultra archive with FreeArc "Precomp ver p.zt and LZMA" and the Remaining time keeps increasing ...
idk why that happens.
hope you can check it and explain what happens..

and i hope you can compile in it the task bar icon and mini form
Win6TaskBar.iss
Win7TBP v1.0.iss

Edit : As For the Taskbar i've already Compiled it and it's working properly ...

well, without the full source everytime you'll get some sort of errors....Razor12911 is not working on it like he did with wpi without fmx....anyways i wish he can update it at least

sina001 29-12-2018 02:42

This is the most beautiful installer I've ever seen so far that there is music for God

ahmedwaill 29-12-2018 18:17

Quote:

Originally Posted by PsYcHo_RaGE (Post 476292)
well, without the full source everytime you'll get some sort of errors....Razor12911 is not working on it like he did with wpi without fmx....anyways i wish he can update it at least

well it's ok bro i guess the issue is solved tho, i have to use another compressing method for now i use LZMA only

ahmedwaill 09-02-2019 03:03

hey, man is there a way to remove the Components Page ?!

KaktoR 11-04-2019 15:26

Use the debug function inside Inno (F9) and see where the error occurs in the script.

abiboysnice 12-04-2019 05:27

I can't decompressing protected arc files with this code
Arc1Password=********

am i wrong with the code ?

abiboysnice 12-04-2019 09:12

How i can remove configuration tab and add password for my archive in inno setup ? Thanks

ShadowLurker 13-04-2019 06:23

Quote:

Originally Posted by Th3Raven (Post 468897)
(...) Until now FOR PERSONAL USE ONLY, i added splash, setup icon change and music to the script (...)

How did you manage to change the setup's icon?

BTW, great work Razor12911!!!

Kitsune1982 20-04-2019 20:30

up to date WPI supporting xtool?
 
Hi all, was just wondering if anyone's made a WPI that supports xtool/ztool/xoodle etc, and if so if its possible to add music to the script? dont need a music button was just wondering if anyone has made one yet. i know chayan manna made one but i dont think his/hers supports xtool/ztool/ultrarc newest version. i could be mistaken though. let me know if there is one :)

-Kitsune

bunti_o4u 21-04-2019 05:06

Quote:

Originally Posted by Kitsune1982 (Post 480706)
Hi all, was just wondering if anyone's made a WPI that supports xtool/ztool/xoodle etc, and if so if its possible to add music to the script? dont need a music button was just wondering if anyone has made one yet. i know chayan manna made one but i dont think his/hers supports xtool/ztool/ultrarc newest version. i could be mistaken though. let me know if there is one :)

-Kitsune

https://fileforums.com/showpost.php?...&postcount=752


All times are GMT -7. The time now is 03:36.

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