|
#61
|
|||
|
|||
|
Can I upload your script? Thank you
|
| Sponsored Links |
|
#62
|
||||
|
||||
|
@audiofeel
Quote:
Quote:
https://www.fileforums.com/showthread.php?t=99073 |
| The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (24-09-2022) | ||
|
#63
|
||||
|
||||
|
Quote:
non-english texts are indicated by texts surrounded by "[r]" for convenience. (because i'm too lazy to translate every text. )Code:
[InstallerLangs] Lang1=Russian Lang2=English ;Lang3= ;Lang4= ;Lang5= ;Lang6= Code:
Example: // LanguageBox English_LangOkBtn=Ok English_LanguageTitle=Select Setup Language English_LanguageMsg=Select the language to use during the installation: Russian_LangOkBtn=[r]Ok[r] Russian_LanguageTitle=[r]Select Setup Language[r] Russian_LanguageMsg=[r]Select the language to use during the installation:[r] ... download from here : FMXInno_Test.rar , Last edited by BLACKFIRE69; 14-07-2024 at 01:38. |
| The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
|
#64
|
||||
|
||||
|
Quote:
but in this case every image is of the same dimension (800x450) so everything works fine. Last edited by BLACKFIRE69; 14-07-2024 at 01:38. |
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (26-09-2022) | ||
|
#65
|
||||
|
||||
|
this isn't an issue with FMXInno. it comes from Delphi itself. so i had to comeup with a fix for this.
this will work... Code:
with WizardForm do
begin
Height := ScaleY(450);
Width := ScaleX(800);
end;
Last edited by BLACKFIRE69; 14-07-2024 at 01:39. |
|
#66
|
||||
|
||||
|
FMXInno v1.0.0.2 - Updates
Code:
- Fixed MinimizeFileName function crashing. - Fixed minor known bugs/issues so far. - Some improvements. - Added transparent GIFs support. , Last edited by BLACKFIRE69; 14-07-2024 at 01:39. |
|
#67
|
||||
|
||||
|
FMXInnoSk v1.0.0.0 - Final Release
What's new: Code:
TSkLabel: - Single line with multiple styles, colors and sizes. - Additional font weights. - Control maximum lines. - Make words clickable in text. - Custom fonts without installing. TSkPaintBox: - Draw shapes (Rects, RoundRects, Circles, Arcs). - Draw Texts (Textblob, SimpleText). - Draw Paths (Normal, Discrete, Composed, Sum, Shaders, Fill, Rounding sharp corners). - Draw Paragraphs (Multi-Styled Texts). - Draw Images. - Draw 9-Patch (Draw an image preserving corners from strech). TSkAnimatedPaintBox: - Make any shader using SKSL. - Runtime effects. - Shaders with mouse position. - Load Particles (With mouse iterations). TSkAnimatedImage: - Load animations (Lottie, Telegram stickers and Gifs). TSkImage: - Image Encoding (BMP, GIF, ICO, JPEG, PNG, WBMP, WEBP, PKM, KTX, ASTC, DNG, HEIF, AVIF). - Make NonTextureImage, RasterImage, MakeShader and RawShader. TSkSVG: - Load .svg files. Code:
Downloads: Shaders : Shadertoy AnimatedImages : Lottiefiles Stickers : Lottiefiles Preview: Preview Shader files (.sksl) : Shaders.skia Preview Particle files (.json) : Particles.skia Preview AnimatedImages (.json) : Skottie.skia Other: Create a own shader file (.sksl) : Youtube Google Skia : skia.org Skia4Delphi : skia4delphi.org ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]()
Last edited by BLACKFIRE69; 14-07-2024 at 01:40. |
| The Following 8 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (20-10-2022), audiofeel (19-10-2022), ffmla (20-10-2022), Harsh ojha (24-10-2022), hitman797 (20-10-2022), houcine80 (23-10-2022), ScOOt3r (19-10-2022), yasserdivar (15-10-2023) | ||
|
#68
|
||||
|
||||
|
Quote:
the part that adjusts the dimensions of the image can be done. i was preparing the last release of version v1.0.0.2. so i'll include the fix with it. i hope this works. if anything needs to change, be sure to tell me. and thanks for reporting this. Code:
FMXInno v1.0.0.2 - Last Release - More Stable. - More Optimized. - Fixed Memory Leaks. - Added File Patching. -- procedure wCreateFilePatch(Const fOldFile, fNewFile, fDiffFile: WideString; fMatchLength: Cardinal; fPatchCallback: TFDiffCallback); -- procedure wApplyFilePatch(Const fOldFile, fNewFile, fDiffFile: WideString); Last edited by BLACKFIRE69; 26-10-2022 at 13:14. |
|
#69
|
|||||
|
|||||
|
Quote:
Code:
LB1.FCreate(FMXForm.Handle, 'MyShortText');
LB1.AutoSize(True);
LB1.top(NSY(100));
LB1.left(NSX(100));
LB1.TextSetting(False, txLeading, txCenter);
LB1.Text('FMXInno: This is a very long text for Testing FLabel AutoSize.');
Quote:
Code:
LB1.FCreate(FMXForm.Handle, 'MyShortText');
LB1.AutoSize(True);
LB1.top(NSY(100));
LB1.left(NSX(100));
LB1.TextSetting(False, txLeading, txCenter);
LB1.HitTest(True);
LB1.OnClick(@LBOnClick);
LB1.OnMouseEnter(@LBMouseEnter);
LB1.OnMouseLeave(@LBMouseLeave);
//LB1.OnMouseDown(@FormMouseDown); (*Set HitTest = False*)
LB1.Text('FMXInno: This is a very long text for Testing FLabel AutoSize.');
Quote:
Quote:
Quote:
but there's another way. Code:
procedure ConfirmExitMsg(Sender: TObject); begin LockScreen.AutoActivateEnabled(False); MsgForm.Show; end; // ... procedure ExitNoBtnOnClick(Sender: TObject); begin MsgForm.Close; LockScreen.AutoActivateEnabled(True); end; Last edited by BLACKFIRE69; 14-07-2024 at 01:40. |
|
#70
|
||||
|
||||
|
Quote:
found out what was going on. Code:
FText must be of type WideString. FText: String; ==> FText: WideString; Code:
Toggle CheckBox updated. now the user has more options. - Rounded corners (optional) (FRounded: Boolean). - Custom colors. - Custom positions for text. etc. replace the old lib and handle.iss files with these. , Last edited by BLACKFIRE69; 14-07-2024 at 01:40. |
| The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
|
#71
|
||||
|
||||
|
Quote:
- Fixed EmptyWizardForm. latest version has been added to the first post... |
|
#72
|
||||
|
||||
|
WPI_CorePack - Script Updated!
Code:
- Browse for disks. - Before/After install: Run executables or bats, Writing ini and Patching files. - XBass_f.dll/ XHashNext.dll/ MFT.exe: Updated, Reduced the file size. (AV no longer pops false positive malware detection on these files.) - Added wFilePatchLib.dll. Last edited by BLACKFIRE69; 14-07-2024 at 01:41. |
| The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (07-11-2022), Gehrman (06-11-2022), Harsh ojha (08-11-2022), houcine80 (06-11-2022), Razor12911 (06-11-2022), ScOOt3r (07-11-2022) | ||
|
#73
|
||||
|
||||
|
got error
i compressed the game by blackfire69 compressor what was 96compressor.
and this is the error. what i should do???
__________________
Search and Find |
|
#74
|
||||
|
||||
|
FMXInno v1.0.0.2 - Updates
Code:
* Added Dynamic Tiles. - Highly customizable. - Tile shapes can be regular/rounded corner rectangles or even circles. - Allowed users to make their own style tiles. - DeltaX, DeltaY and TimeDuration configure the motion of tiles. * Updated Classes. Last edited by BLACKFIRE69; 14-07-2024 at 01:41. |
| The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
|
#75
|
||||
|
||||
|
Quote:
Code:
* Merged XBass_f and XHashNext into FMXInno lib as suggested. ), Last edited by BLACKFIRE69; 17-11-2022 at 22:30. |
![]() |
|
|
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 |