#1
|
||||
|
||||
Progress: CIU Designer
Previous here https://fileforums.com/showpost.php?...&postcount=167
This is might take longer to finish. I lost the project before cause my laptop was stolen. Don't worry it would post updates here as well as I can. Coming soon.
__________________
EDM Producer. |
The Following 9 Users Say Thank You to Carldric Clement For This Useful Post: | ||
Cesar82 (17-05-2022), fabrieunko (17-05-2022), Gehrman (17-05-2022), Grumpy (19-05-2022), JustFun (22-05-2022), lolaya (19-05-2022), mausschieber (17-05-2022), Prettyboy099 (18-05-2022), Razor12911 (18-05-2022) |
Sponsored Links |
#2
|
||||
|
||||
![]()
@Carldric Clement, very good!
This will be very helpful! If you need any information about Setup.ini keys or images in CIU send me PM. Soon I'll share a new source code with some new features like 3 slider for volume control for songs/videos, so if you need the source code in advance to be able to work on it, just ask me. Thank you! |
The Following 4 Users Say Thank You to Cesar82 For This Useful Post: | ||
#3
|
||||
|
||||
Day 2: Moving Image with following Left & Top
Moving Image with following Left & Top
__________________
EDM Producer. |
The Following 6 Users Say Thank You to Carldric Clement For This Useful Post: | ||
Cesar82 (18-05-2022), Grumpy (19-05-2022), houcine80 (21-05-2022), KaktoR (19-05-2022), mausschieber (18-05-2022), Razor12911 (18-05-2022) |
#4
|
|||
|
|||
nice work
|
The Following User Says Thank You to lolaya For This Useful Post: | ||
Carldric Clement (20-05-2022) |
#5
|
|||
|
|||
nice
__________________
XD |
The Following User Says Thank You to Gupta For This Useful Post: | ||
Carldric Clement (24-05-2022) |
#6
|
||||
|
||||
1st Issue: Music Button was not the same as the Autorun installer. I will try to figure it out later.
__________________
EDM Producer. |
The Following 4 Users Say Thank You to Carldric Clement For This Useful Post: | ||
#7
|
||||
|
||||
@Carldric Clement, in CIU the "MusicIcon" button when positioned over the "MusicButton" button (RectInRect) is set to disabled, so the actions of the "MusicButton" button change the state of "MusicIcon", but it behaves only visually (no Click or OnMouse actions ).
The same goes for MusicIconAR (together with MusicARButton) and also for MusicIconSI (together with SmallMusicButton). - "MusicIconAR", "MusicIcon" and "MusicIconSI" is a normal Botva2 pot with 4 images (idle, selected, clicked, disabled) arranged vertically in an image (in the CIU theme example, only the disabled icon was created because it does not use the other images). - "MusicButtonAR", "MusicButton" and "SmallMusicButton" is a CstmButtom by Yener90 with 4 images separately. P.S: You can see the code at the end of the ButtonsTextures procedure in the CIU script. Code:
BtnGetPosition(hMusicAR, Rt.Left, Rt.Top, Rt.Bottom, Rt.Right); Rt.Bottom := Rt.Top + Rt.Bottom; Rt.Right:= Rt.Left + Rt.Right; if BtnY(MusicARBtn, CstmBtnInt) then BtnSetEnabled(hMusicAR, not RectInRect(Rt, BoundsToRect(CstmBtn[CstmBtnInt].AreaX, CstmBtn[CstmBtnInt].AreaY, CstmBtn[CstmBtnInt].AreaW, CstmBtn[CstmBtnInt].AreaH))); BtnGetPosition(hMusic, Rt.Left, Rt.Top, Rt.Bottom, Rt.Right); Rt.Bottom := Rt.Top + Rt.Bottom; Rt.Right:= Rt.Left + Rt.Right; if BtnY(MusicBtn, CstmBtnInt) then BtnSetEnabled(hMusic, not RectInRect(Rt, BoundsToRect(CstmBtn[CstmBtnInt].AreaX, CstmBtn[CstmBtnInt].AreaY, CstmBtn[CstmBtnInt].AreaW, CstmBtn[CstmBtnInt].AreaH))); BtnGetPosition(hMusicSI, Rt.Left, Rt.Top, Rt.Bottom, Rt.Right); Rt.Bottom := Rt.Top + Rt.Bottom; Rt.Right:= Rt.Left + Rt.Right; if BtnY(MusicSmallBtn, CstmBtnInt) then BtnSetEnabled(hMusicSI, not RectInRect(Rt, BoundsToRect(CstmBtn[CstmBtnInt].AreaX, CstmBtn[CstmBtnInt].AreaY, CstmBtn[CstmBtnInt].AreaW, CstmBtn[CstmBtnInt].AreaH))); BtnGetPosition(hPauseSI, Rt.Left, Rt.Top, Rt.Bottom, Rt.Right); Rt.Bottom := Rt.Top + Rt.Bottom; Rt.Right:= Rt.Left + Rt.Right; if BtnY(PauseSmallBtn, CstmBtnInt) then BtnSetEnabled(hPauseSI, not RectInRect(Rt, BoundsToRect(CstmBtn[CstmBtnInt].AreaX, CstmBtn[CstmBtnInt].AreaY, CstmBtn[CstmBtnInt].AreaW, CstmBtn[CstmBtnInt].AreaH))); end; Last edited by Cesar82; 27-05-2022 at 13:22. |
The Following User Says Thank You to Cesar82 For This Useful Post: | ||
Carldric Clement (28-05-2022) |
#8
|
||||
|
||||
Quote:
(Bottom = Top + Bottom) and (Right = Left + Right). I'm gonna try to do with these code on Designer.
__________________
EDM Producer. |
#9
|
||||
|
||||
I think I put it inverted (Rt.Bottom and Rt.Right) in BtnGetPosition. lol
I just realized this now, I'll fix it here. BtnGetPosition(hMusicAR, Rt.Left, Rt.Top, Rt.Right, Rt.Bottom); BtnGetPosition(hMusicSI, Rt.Left, Rt.Top, Rt.Right, Rt.Bottom); BtnGetPosition(hPauseSI, Rt.Left, Rt.Top, Rt.Right, Rt.Bottom); As the CIU CloseButton had the same Width and Height dimensions it worked, but it was wrong. Last edited by Cesar82; 28-05-2022 at 09:35. |
The Following 2 Users Say Thank You to Cesar82 For This Useful Post: | ||
Carldric Clement (29-05-2022), houcine80 (30-05-2022) |
#10
|
||||
|
||||
CIU Designer - PREVIEW (Dev)
In case you guys need this app, well you got more bugs. Feel free to use it until it's finished this project.
Progress: 11%.
__________________
EDM Producer. Last edited by Carldric Clement; 29-05-2022 at 10:27. |
The Following 6 Users Say Thank You to Carldric Clement For This Useful Post: | ||
ADMIRAL (30-05-2022), andreiutzu21 (05-06-2022), Cesar82 (29-05-2022), Gehrman (29-05-2022), houcine80 (30-05-2022), mausschieber (29-05-2022) |
#11
|
||||
|
||||
Quote:
__________________
EDM Producer. |
![]() |
Tags |
ciu designer, ciu v3 |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Game Installer Designer by altef_4 | altef_4 | Conversion Tutorials | 236 | 28-05-2021 02:54 |
Repetitive vs Stretching Progress Bar | Cuttlas | Conversion Tutorials | 0 | 10-11-2020 07:14 |
Unpack files with progress in batch | gozarck | Conversion Tutorials | 3 | 29-06-2016 12:38 |
Progress bar for Tasks | danswano | PC Games - CD/DVD Conversions | 22 | 09-03-2013 12:09 |