FileForums

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

rinaldo 09-01-2017 15:41

xvid

use parent AutorunLock.Tile.handle

Code:

mciSendString('open "'+ ExpandConstant('{tmp}\Video.avi') +'" alias AVIFile parent '+ IntToStr(AutorunLock.Tile.handle) +' style child','',0,0)

Siber Pro 11-01-2017 09:39

it's Not Worked
 
very Thanks Friend but I added your info and that was not working. please help me again

rinaldo 12-01-2017 00:45

1 Attachment(s)
get help now, I put in only the code

Siber Pro 15-01-2017 23:32

Very thanks now I testing it

Siber Pro 16-01-2017 22:06

That Was Worked
 
Ver Very Thanks MY Best Friend.
Now I Got A New Idea.
I Want Add Video On Setup1.jpg For Be Nice Form.
Of Cource Now I Creating New Template For ASC.
If You Have Good Idea Show Me For Work On It.
No Have Different By Inno Setup Or ASC.

ImmortalArc 19-01-2017 03:30

Quote:

Originally Posted by rinaldo (Post 455128)
xvid

use parent AutorunLock.Tile.handle

Code:

mciSendString('open "'+ ExpandConstant('{tmp}\Video.avi') +'" alias AVIFile parent '+ IntToStr(AutorunLock.Tile.handle) +' style child','',0,0)

Can you modify WPI and share with progress percentage Time remain estimate elapsed and which current file is extracting I no experience with codes mate please......
And how can I use animated gif in this??

user123456 20-01-2017 11:05

How to change colour

mausschieber 20-01-2017 13:09

Quote:

Originally Posted by user123456 (Post 455337)
How to change colour

Read post 395

rinaldo 20-01-2017 16:20

[Theme]
;Interface either be in dark or light
;Colors are Originally from OS Windows Phone 8 (01-20)
;Color random (21)
Image=1
Dark=1
Color=21


Code:

function MetroColor(Col: Integer): TColor;
begin
  case Col of
    01: Result:=$00C4A4;
    02: Result:=$17A960;
    03: Result:=$008A00;
    04: Result:=$A9AB00;
    05: Result:=$E2B11A;
    06: Result:=$EF5000;
    07: Result:=$FF006A;
    08: Result:=$FF00AA;
    09: Result:=$D072F4;
    10: Result:=$7300D8;
    11: Result:=$2500A2;
    12: Result:=$0014E5;
    13: Result:=$0068FA;
    14: Result:=$0AA3FF;
    15: Result:=$00C8E3;
    16: Result:=$2C5A82;
    17: Result:=$64876D;
    18: Result:=$877664;
    19: Result:=$8A6076;
    20: Result:=$2D52A0;
    21: Result:=random($FFFFFF);
  end;
end;


Siber Pro 22-01-2017 07:38

Rinaldo Or Anyone Please Help Me. I Added Video On Wizard For Play On Setup.jpg But That Have A Error When Testing. How I Can Do It? Please Help Me Now!!!

EzzEldin16 03-02-2017 06:29

Hey @Razor12911 or anyone can help me i want to update this script by adding :
1.percentage progress next to the progress bar
2.create start up menu icon button and address bar and browsing button same as desktop icon
3.extracting current file under the status
4.elapsed and remaining time
5.music button
* i'm making my own personal repacks i'm not sharing anything so please help if you have time

78372 08-02-2017 05:52

Can I use reflate+srep+delta+lzma archives with this installer? If I can use, how?

78372 09-02-2017 01:26

1 Attachment(s)
I've got this error. What's the problem? Any fix?

pakrat2k2 09-02-2017 09:19

never seen written with so many #endif in a row.

usually written

#ifdef AppExe1
Launch1Tile.Tmr: TleTimer(Launch1Tile);
#endif
#ifdef AppExe2
Launch1Tile.Tmr: TleTimer(Launch2Tile);
#endif
#ifdef AppExe3
Launch1Tile.Tmr: TleTimer(Launch3Tile);
#endif
#ifdef AppExe4
Launch1Tile.Tmr: TleTimer(Launch4Tile);
#endif
#ifdef AppExe5
Launch1Tile.Tmr: TleTimer(Launch5Tile);
#endif
#ifdef AppExe6
Launch1Tile.Tmr: TleTimer(Launch6Tile);
#endif
ImgApplyChanges(Autorun.Form.Handle);
#end

TWOELV 09-02-2017 13:43

Quote:

Originally Posted by Chinmaya Mishra (Post 439832)
How Can We Add Music To It

this

78372 10-02-2017 05:54

Not working, However, I only need to use reflate on this script, for now

rinaldo 10-02-2017 06:09

Quote:

Originally Posted by 78372 (Post 455888)
Not working, However, I only need to use reflate on this script, for now

if you are unable to solve such a simple mistake, it is very difficult if not impossible to engage in compressions :)

78372 10-02-2017 08:55

Sorry but I am very much new to inno setup coding.

rinaldo 10-02-2017 09:25

2 Attachment(s)
noted defects by working version at not working version

move WindowsPhone.iss working version to box1 and WindowsPhone.iss not working version box2
and look for a difference

Razor12911 10-02-2017 09:59

Quote:

Originally Posted by pakrat2k2 (Post 455858)
never seen written with so many #endif in a row.

usually written

#ifdef AppExe1
Launch1Tile.Tmr: TleTimer(Launch1Tile);
#endif
#ifdef AppExe2
Launch1Tile.Tmr: TleTimer(Launch2Tile);
#endif
#ifdef AppExe3
Launch1Tile.Tmr: TleTimer(Launch3Tile);
#endif
#ifdef AppExe4
Launch1Tile.Tmr: TleTimer(Launch4Tile);
#endif
#ifdef AppExe5
Launch1Tile.Tmr: TleTimer(Launch5Tile);
#endif
#ifdef AppExe6
Launch1Tile.Tmr: TleTimer(Launch6Tile);
#endif
ImgApplyChanges(Autorun.Form.Handle);
#end

You must have at least 1 application executable else you'll get this error.
AppExe1 must be defined.

Quote:

Originally Posted by pakrat2k2 (Post 455858)
never seen written with so many #endif in a row.

usually written

#ifdef AppExe1
Launch1Tile.Tmr: TleTimer(Launch1Tile);
#endif
#ifdef AppExe2
Launch1Tile.Tmr: TleTimer(Launch2Tile);
#endif
#ifdef AppExe3
Launch1Tile.Tmr: TleTimer(Launch3Tile);
#endif
#ifdef AppExe4
Launch1Tile.Tmr: TleTimer(Launch4Tile);
#endif
#ifdef AppExe5
Launch1Tile.Tmr: TleTimer(Launch5Tile);
#endif
#ifdef AppExe6
Launch1Tile.Tmr: TleTimer(Launch6Tile);
#endif
ImgApplyChanges(Autorun.Form.Handle);
#end

It's actually correct, nothing wrong.

TWOELV 12-02-2017 21:55

how can i unpack data1.bin and data2.bin at the same time ?

i tried playing around with this

Archive1Type=Freearc
Archive1Source={src}\data1.bin
Archive1Output={app}
Archive1Disk=1
Archive1Password=

but i cannot seem to make it work :/

-XCX- 13-02-2017 01:01

Archive2Type=Freearc
Archive2Source={src}\data1.bin
Archive2Output={app}
Archive2Disk=1
Archive2Password=


Archive2Type=Freearc
Archive2Source={src}\data2.bin
Archive2Output={app}
Archive2Disk=2
Archive2Password=

TWOELV 13-02-2017 03:57

Quote:

Originally Posted by -XCX- (Post 455964)
Archive2Type=Freearc
Archive2Source={src}\data1.bin
Archive2Output={app}
Archive2Disk=1
Archive2Password=


Archive2Type=Freearc
Archive2Source={src}\data2.bin
Archive2Output={app}
Archive2Disk=2
Archive2Password=

doesn't work :/ it still extracts only data1.bin
i am using Inno Setup Compiler 5.5.1.ee2 (u) (build 121002)

-XCX- 13-02-2017 04:25

Quote:

Originally Posted by TWOELV (Post 455966)
doesn't work :/ it still extracts only data1.bin
i am using Inno Setup Compiler 5.5.1.ee2 (u) (build 121002)

[Archives]
;Archive Types 7Zip, Freearc and WinRAR
Archive1Type=Freearc
Archive1Source={src}\data1.bin
Archive1Output={app}\
Archive1Disk=1
Archive1Password=
Archive2Source={src}\data2.bin
Archive2Output={app}\
Archive2Disk=2
Archive2Password=

TWOELV 13-02-2017 04:34

Quote:

Originally Posted by -XCX- (Post 455967)
[Archives]
;Archive Types 7Zip, Freearc and WinRAR
Archive1Type=Freearc
Archive1Source={src}\data1.bin
Archive1Output={app}\
Archive1Disk=1
Archive1Password=
Archive2Source={src}\data2.bin
Archive2Output={app}\
Archive2Disk=2
Archive2Password=

i have already tried this but this seems to extract nothing not even data1.bin

TWOELV 13-02-2017 04:43

okay found the issue "Yourpassword" was missing that's why it wasn't working :p
so you posted like this Archive2Password=
but its suppose to be like this Archive2Password=Yourpassword
but thank you so much for helping me :D

-XCX- 13-02-2017 04:43

Quote:

Originally Posted by TWOELV (Post 455968)
i have already tried this but this seems to extract nothing not even data1.bin

give your script to check it whether it works or not

TWOELV 13-02-2017 04:46

Quote:

Originally Posted by -XCX- (Post 455970)
give your script to check it whether it works or not

okay found the issue "Yourpassword" was missing that's why it wasn't working
so you posted like this Archive2Password=
but its suppose to be like this Archive2Password=Yourpassword
but thank you so much for helping me

TWOELV 13-02-2017 09:09

deleted

harshlohaan 14-02-2017 22:34

Need help with archives!
 
Thank you Razor12911 for the script. But I have a question. I've created multiple .bin archives (Setup-1.bin, Setup-2.bin,...). So in the script where there is a single 'data.bin' what changes I need to make for these multiple archives?

rinaldo 15-02-2017 00:25

Quote:

harshlohaan
=> ;)

TWOELV 19-02-2017 03:16

how can i add this "optimal-twoelv.bin"

i tried changing this

ArchiveoptimalType=Freearc
ArchiveoptimalSource={src}\optimal-twoelv.bin
ArchiveoptimalOutput={app}
ArchiveoptimalDisk=2
ArchiveoptimalPassword=YourPassword

also tried like this


Archive2Type=Freearc
Archive2Source={src}\optimal-twoelv.bin
Archive2Output={app}
Archive2Disk=2
Archive2Password=YourPassword

but none of these seems to work :/

Edit: nvm fixed it

Siber Pro 19-02-2017 20:23

Please Help Me.
How I Can Add Video on wizard In WindowsIphone.iss?
Anyone Can Help Me About This?
I Need To Know It.
Please.

pakrat2k2 20-02-2017 08:15

search in topic ... page 24, read

ZakirAhmad 21-02-2017 06:38

Someone please help me!!!
 
Can anyone please add # diskspace available # diskspaceneed to the wpi script...

rinaldo 21-02-2017 08:49

1 Attachment(s)
look at this example o°o

ZakirAhmad 23-02-2017 09:09

@rinaldo
 
Thanks Bro, That example was Very Helpfull... I modified mine...
I am using Shewain's reflate and the cls of this by razor... While xompressing with command precomp+reflate+srep64+lzma, everything completes well but while extracting with WPI I get crc error at 8%... What is problem with it can u please point out... can u please provide me a working reflate with cls and without any limitation link...
Waiting for u sir...
and by the way precomp version is 042...

rinaldo 24-02-2017 06:49

1 Attachment(s)
try normal isdone installation, and do not change unless you know what to do ... just add files for decompression

ZakirAhmad 27-02-2017 06:11

bro also precompmt is not working with wpi... i compress files successfully with precompmt+srep+lzma... but when extracting it with wpi... i am getting error archive data corrupted... unarc.dll has returned with error code 1... i added all necessary files to wpi... when i tried using cmd decompressor everything extracted well... please help...

TWOELV 28-02-2017 16:57

http://i.imgur.com/pdVqBDN.png
some people are getting that error with my repack but most people doesn't get it
so i decided to use different installer based on inno and same story
does it have something to do with masked data compressor not supporting wpi very well ?
i use the optimal compression method


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

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