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
  #1  
Old 06-01-2023, 22:46
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
@hitman797

EndAngle value is not correct.
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (07-01-2023), hitman797 (07-01-2023)
Sponsored Links
  #2  
Old 07-01-2023, 02:50
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 486
Thanked 202 Times in 122 Posts
hitman797 is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
@hitman797

EndAngle value is not correct.
RAM.RamLoad = 49
C_ANGLE = 40
RoundArc = 320
StartAngle = 130
EndAngle = 14320
Reply With Quote
The Following User Says Thank You to hitman797 For This Useful Post:
audiofeel (07-01-2023)
  #3  
Old 19-01-2023, 09:33
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 486
Thanked 202 Times in 122 Posts
hitman797 is on a distinguished road
FloatAnimation
Code:
var
    Layout1: TLayout;
    Rectangle1: TRectangle;
    FloatAnimation1: TFloatAnimation;
    FloatAnimation2: TFloatAnimation;
Code:
procedure TForm2.Rectangle1MouseEnter(Sender: TObject);
begin
 FloatAnimation2.Enabled:=False;
 FloatAnimation1.Enabled:=True;
end;

procedure TForm2.Rectangle1MouseLeave(Sender: TObject);
begin
 FloatAnimation1.Enabled:=False;
 FloatAnimation2.Enabled:=True;
end;
Code:
object Form2: TForm2
  Left = 0
  Top = 0
  Caption = 'Form2'
  ClientHeight = 480
  ClientWidth = 640
  FormFactor.Width = 320
  FormFactor.Height = 480
  FormFactor.Devices = [Desktop]
  DesignerMasterStyle = 0
  object Layout1: TLayout
    Align = VertCenter
    Size.Width = 640.000000000000000000
    Size.Height = 480.000000000000000000
    Size.PlatformDefault = False
    TabOrder = 0
    object Rectangle1: TRectangle
      Align = Left
      Fill.Color = claBlack
      Opacity = 0.800000011920929000
      Size.Width = 49.000000000000000000
      Size.Height = 480.000000000000000000
      Size.PlatformDefault = False
      Stroke.Thickness = 0.000000000000000000
      OnMouseEnter = Rectangle1MouseEnter
      OnMouseLeave = Rectangle1MouseLeave
      object FloatAnimation1: TFloatAnimation
        AnimationType = InOut
        Delay = 0.200000002980232200
        Duration = 0.500000000000000000
        Interpolation = Back
        PropertyName = 'Width'
        StartValue = 56.000000000000000000
        StartFromCurrent = True
        StopValue = 256.000000000000000000
      end
      object FloatAnimation2: TFloatAnimation
        AnimationType = InOut
        Delay = 0.200000002980232200
        Duration = 0.500000000000000000
        Interpolation = Back
        PropertyName = 'Width'
        StartValue = 256.000000000000000000
        StartFromCurrent = True
        StopValue = 56.000000000000000000
      end
    end
  end
end
FloatAnimation
Reply With Quote
  #4  
Old 19-01-2023, 15:04
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 486
Thanked 202 Times in 122 Posts
hitman797 is on a distinguished road
Metro Installer

Metro Installer
Attached Images
File Type: png 123456.png (742.4 KB, 193 views)
Reply With Quote
The Following User Says Thank You to hitman797 For This Useful Post:
ScOOt3r (19-01-2023)
  #5  
Old 21-01-2023, 11:12
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 486
Thanked 202 Times in 122 Posts
hitman797 is on a distinguished road
Metro Installer

Metro Installer
Attached Images
File Type: png MI2.png (696.2 KB, 410 views)
Reply With Quote
The Following 3 Users Say Thank You to hitman797 For This Useful Post:
audiofeel (21-01-2023), Behnam2018 (27-01-2023), Gehrman (22-01-2023)
  #6  
Old 13-09-2023, 17:03
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 486
Thanked 202 Times in 122 Posts
hitman797 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
do you remember when we did the metro install? now the necessary objects have been added, but I don't understand everything. can you show an example
MultiView, SpeedBtn etc.
Metro Installer
Attached Files
File Type: 7z Metro Installer.7z (13.14 MB, 52 views)
Reply With Quote
The Following 3 Users Say Thank You to hitman797 For This Useful Post:
ADMIRAL (15-09-2023), audiofeel (14-09-2023), Jahan1373 (14-09-2023)
  #7  
Old 14-09-2023, 20:12
Jahan1373 Jahan1373 is offline
Registered User
 
Join Date: Jan 2022
Location: Yes
Posts: 46
Thanks: 104
Thanked 9 Times in 9 Posts
Jahan1373 is on a distinguished road
Quote:
Originally Posted by hitman797 View Post
Metro Installer
Hello brother, please give the complete script, where should I download it, thanks
Reply With Quote
  #8  
Old 22-01-2023, 16:22
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 486
Thanked 202 Times in 122 Posts
hitman797 is on a distinguished road
SlideShow

Code:
    TabControl1: TTabControl;
    TabItem1: TTabItem;
    Rectangle1: TRectangle;
    ActionList1: TActionList;
    ChangeTabAction1: TChangeTabAction;
    NextTabAction1: TNextTabAction;
    PreviousTabAction1: TPreviousTabAction;
    Timer1: TTimer;
SlideShow
Attached Images
File Type: png SlideShow.png (867.1 KB, 404 views)

Last edited by hitman797; 22-01-2023 at 16:25.
Reply With Quote
The Following 2 Users Say Thank You to hitman797 For This Useful Post:
audiofeel (22-01-2023), Behnam2018 (27-01-2023)
  #9  
Old 27-01-2023, 19:30
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 57
Thanks: 973
Thanked 24 Times in 20 Posts
Behnam2018 is on a distinguished road
Unhappy Error

cannot import dll utf8 kernel32.dll
Attached Images
File Type: jpg cannot import dll utf8 kernel32.dll.JPG (190.4 KB, 357 views)
Reply With Quote
  #10  
Old 27-01-2023, 21:44
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 57
Thanks: 973
Thanked 24 Times in 20 Posts
Behnam2018 is on a distinguished road
thanks audiofeel
Reply With Quote
The Following User Says Thank You to Behnam2018 For This Useful Post:
audiofeel (27-01-2023)
  #11  
Old 11-02-2023, 20:26
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 57
Thanks: 973
Thanked 24 Times in 20 Posts
Behnam2018 is on a distinguished road
Wink Again this script with FMXInno

Again this script Glass Black Box with FMXInno
Attached Images
File Type: jpg 1.JPG (80.6 KB, 231 views)
Attached Files
File Type: 7z Glass Black Box v1.4.1_C.7z (12.92 MB, 43 views)
Reply With Quote
The Following User Says Thank You to Behnam2018 For This Useful Post:
audiofeel (12-02-2023)
  #12  
Old 19-02-2023, 19:50
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 57
Thanks: 973
Thanked 24 Times in 20 Posts
Behnam2018 is on a distinguished road
Unhappy Help

Hello audiofeel

I used to use this script but it gives me an error
Runtime Error (at-1:0)
Cannot Import
dll:<utf8>C:/Users\Behnam\AppData\Local\Temp\is-EOHI8.tmp\ISArcEx.dll.
Attached Images
File Type: jpg Capture.JPG (179.1 KB, 169 views)
Attached Files
File Type: rar ISArcEx_TB_Prev_Example.rar (2.71 MB, 12 views)
Reply With Quote
  #13  
Old 21-02-2023, 07:28
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
I'm not sure I understand your question, but effectively both the normal function and the extended function are the same, the extended function just gives the option to only make a font available to the caller process or that the font should not be enumerated by any process, other than that. They are virtually the same, if you're referring to the functions seemingly not working on FMX platform then all you need to do is call the function before the application is created/initialized.
Reply With Quote
The Following 2 Users Say Thank You to Razor12911 For This Useful Post:
audiofeel (21-02-2023), hitman797 (21-02-2023)
  #14  
Old 21-02-2023, 14:05
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
Ah I remember now. I once had this problem in ASC (Advanced Setup Creator), this isn't a AddFontResource problem but rather a FMX problem on other platforms and the way I fixed it was temporarily placing the font in "C:\Windows\Fonts" you can use FileCopy after extracting temporary files, then adding the font name in Windows Registry in "Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wi ndows NT\CurrentVersion\Fonts", with Font Name (TrueType) as value name and the font filename as value data. It's wise to check if the font exists in registry before doing this because you need to delete the registry and delete the file in deinitializesetup.
Attached Images
File Type: png fonts.PNG (99.4 KB, 279 views)
Reply With Quote
The Following 3 Users Say Thank You to Razor12911 For This Useful Post:
audiofeel (21-02-2023), hitman797 (24-02-2023), Tihiy_Don (28-01-2024)
  #15  
Old 22-02-2023, 11:17
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
It works fine on Windows 7 (although it was via VM), however there seems to be other problems. I'm not sure if those bezels (the edges left, right and bottom) are by design but they just seemed to be out of place and they are even more prominent if you disable the aero theme.
Attached Images
File Type: png testwin7_1.PNG (889.8 KB, 262 views)
File Type: png testwin7_2.PNG (644.2 KB, 265 views)
File Type: png testwin7_3.PNG (428.0 KB, 260 views)
Reply With Quote
The Following 2 Users Say Thank You to Razor12911 For This Useful Post:
audiofeel (22-02-2023), hitman797 (24-02-2023)
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 Fluent Effects Standalone API - InnoSetup / VCL / FXM BLACKFIRE69 Conversion Tutorials 0 15-11-2023 17:35
Windows Phone Installer similar to razor12911's original design? Kitsune1982 Conversion Tutorials 0 02-07-2020 13:04
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
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 15:35.


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