Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #61  
Old 29-06-2018, 04:05
Th3Raven's Avatar
Th3Raven Th3Raven is offline
Registered User
 
Join Date: Mar 2012
Location: Romania
Posts: 90
Thanks: 57
Thanked 54 Times in 33 Posts
Th3Raven is on a distinguished road
Send a message via Yahoo to Th3Raven
Quote:
Originally Posted by Jiva newstone View Post
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.
Reply With Quote
Sponsored Links
  #62  
Old 29-06-2018, 06:14
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
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
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
pakrat2k2 (29-06-2018)
  #63  
Old 30-06-2018, 00:42
Th3Raven's Avatar
Th3Raven Th3Raven is offline
Registered User
 
Join Date: Mar 2012
Location: Romania
Posts: 90
Thanks: 57
Thanked 54 Times in 33 Posts
Th3Raven is on a distinguished road
Send a message via Yahoo to Th3Raven
Quote:
Originally Posted by KaktoR View Post
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 ?
Reply With Quote
  #64  
Old 01-07-2018, 05:56
Jiva newstone's Avatar
Jiva newstone Jiva newstone is offline
Registered User
 
Join Date: Nov 2016
Location: India
Posts: 190
Thanks: 227
Thanked 412 Times in 96 Posts
Jiva newstone is on a distinguished road
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
Reply With Quote
  #65  
Old 23-09-2018, 11:00
ahmedwaill ahmedwaill is offline
Registered User
 
Join Date: Sep 2018
Location: Egypt
Posts: 25
Thanks: 4
Thanked 7 Times in 6 Posts
ahmedwaill is on a distinguished road
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 ...

Last edited by ahmedwaill; 23-09-2018 at 17:40.
Reply With Quote
  #66  
Old 12-10-2018, 23:03
PsYcHo_RaGE's Avatar
PsYcHo_RaGE PsYcHo_RaGE is offline
Registered User
 
Join Date: Mar 2018
Location: DarckSide
Posts: 238
Thanks: 193
Thanked 160 Times in 78 Posts
PsYcHo_RaGE is on a distinguished road
Quote:
Originally Posted by ahmedwaill View Post
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
__________________
“WE ALL GO A LITTLE MAD SOMETIMES”
Reply With Quote
  #67  
Old 29-12-2018, 02:42
sina001 sina001 is offline
Registered User
 
Join Date: Mar 2018
Location: croatia
Posts: 4
Thanks: 0
Thanked 12 Times in 3 Posts
sina001 is on a distinguished road
This is the most beautiful installer I've ever seen so far that there is music for God
Reply With Quote
  #68  
Old 29-12-2018, 18:17
ahmedwaill ahmedwaill is offline
Registered User
 
Join Date: Sep 2018
Location: Egypt
Posts: 25
Thanks: 4
Thanked 7 Times in 6 Posts
ahmedwaill is on a distinguished road
Quote:
Originally Posted by PsYcHo_RaGE View Post
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
Reply With Quote
  #69  
Old 09-02-2019, 03:03
ahmedwaill ahmedwaill is offline
Registered User
 
Join Date: Sep 2018
Location: Egypt
Posts: 25
Thanks: 4
Thanked 7 Times in 6 Posts
ahmedwaill is on a distinguished road
hey, man is there a way to remove the Components Page ?!
Reply With Quote
  #70  
Old 11-04-2019, 15:26
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
Use the debug function inside Inno (F9) and see where the error occurs in the script.
__________________
Haters gonna hate
Reply With Quote
  #71  
Old 12-04-2019, 05:27
abiboysnice abiboysnice is offline
Registered User
 
Join Date: Oct 2016
Location: Indonesia
Posts: 2
Thanks: 2
Thanked 0 Times in 0 Posts
abiboysnice is on a distinguished road
I can't decompressing protected arc files with this code
Arc1Password=********

am i wrong with the code ?
Reply With Quote
  #72  
Old 12-04-2019, 09:12
abiboysnice abiboysnice is offline
Registered User
 
Join Date: Oct 2016
Location: Indonesia
Posts: 2
Thanks: 2
Thanked 0 Times in 0 Posts
abiboysnice is on a distinguished road
How i can remove configuration tab and add password for my archive in inno setup ? Thanks
Reply With Quote
  #73  
Old 13-04-2019, 06:23
ShadowLurker's Avatar
ShadowLurker ShadowLurker is offline
Registered User
 
Join Date: Apr 2019
Location: Deadside
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
ShadowLurker is on a distinguished road
Quote:
Originally Posted by Th3Raven View Post
(...) 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!!!
Reply With Quote
  #74  
Old 20-04-2019, 20:30
Kitsune1982's Avatar
Kitsune1982 Kitsune1982 is offline
Registered User
 
Join Date: Jun 2011
Location: USA
Posts: 110
Thanks: 5
Thanked 86 Times in 47 Posts
Kitsune1982 is on a distinguished road
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
Reply With Quote
  #75  
Old 21-04-2019, 05:06
bunti_o4u's Avatar
bunti_o4u bunti_o4u is offline
Registered User
 
Join Date: Aug 2017
Location: India
Posts: 162
Thanks: 29
Thanked 172 Times in 61 Posts
bunti_o4u is on a distinguished road
Quote:
Originally Posted by Kitsune1982 View Post
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
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Phone Installer (WPI) Razor12911 Conversion Tutorials 857 14-06-2025 22:20
Windows Phone Installer Enhanced Mod (HMI 7.2 Final) Chayan Manna Conversion Tutorials 93 02-10-2019 12:42
Windows Phone Installer UltraARC mod Gupta Conversion Tutorials 20 20-03-2018 21:10
How can i unpack .pcf in windows phone installer yash497 Conversion Tutorials 3 16-10-2016 09:07
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 09:48



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


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