|
#211
|
||||
|
||||
|
Quote:
Last edited by BLACKFIRE69; 03-04-2023 at 12:32. |
| Sponsored Links |
|
#212
|
||||
|
||||
|
What's new:
Code:
* Introduced smooth scrolling option to ScrollBoxes. * Minor improvements. * Compiled in the latest version of RadStudio. |
|
#213
|
||||
|
||||
|
Quote:
Added three additional options. Code:
procedure SmoothHideScrollbars(FEnable: Boolean); procedure SmoothRate(FRate: Double); procedure SmoothInterval(FInterval: Word); Code:
Example: ScrollBox.SmoothScroll(True); ScrollBox.SmoothHideScrollbars(True); ScrollBox.SmoothRate(0.2); ScrollBox.SmoothInterval(2); |
|
#214
|
||||
|
||||
|
Quote:
regarding the response time of scrolling with the mouse wheel, there might be a delay and it may not be instantly responsive. however, the behavior comes from Delphi itself. so i've nothing to do with it.
Last edited by BLACKFIRE69; 04-04-2023 at 18:29. |
|
#215
|
||||
|
||||
|
Quote:
would it be possible for you to provide an example for testing purposes? . Last edited by BLACKFIRE69; 14-07-2024 at 01:56. |
|
#216
|
||||
|
||||
|
Quote:
i can offer you two solutions, but it's important to keep in mind that due to the limitations in Delphi, they may not be 100% perfect. Option 01: Code:
Page4CheckboxTree.Selectable(True); ![]() > imperfection: when you click on an item, it'll be selected/highlighted. ( you'll observe that the same occurrence takes place in Razor12911's wpi1801 installer ) ![]() Option 02: this can be seen as a trick i used to find a solution. (checkout the iss file) ![]() > imperfection: on checkboxes and radiobuttons, scrolling may not function perfectly. . Last edited by BLACKFIRE69; 02-09-2023 at 09:19. |
|
#217
|
||||
|
||||
|
Quote:
upon applying this fix, the highlighting will no longer be permanent. . Last edited by BLACKFIRE69; 14-07-2024 at 01:56. |
|
#218
|
||||
|
||||
|
FMXInno + FMXInnoSkia - Final Release : 2023-Apr-06
Code:
The latest update can be found in the first post! * New properties have been added to certain components. * Implemented several improvements. |
|
#219
|
||||
|
||||
|
Quote:
perhaps this will work for you.. . Last edited by BLACKFIRE69; 14-07-2024 at 01:56. |
| The Following 8 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (08-04-2023), audiofeel (07-04-2023), crachlow (07-04-2023), ffmla (14-04-2023), Gehrman (12-04-2023), hitman797 (07-04-2023), Razor12911 (16-04-2023), wangfeilong0317 (08-04-2023) | ||
|
#220
|
||||
|
||||
|
Thanks Blackfire69. This solved some problems.
|
| The Following 2 Users Say Thank You to crachlow For This Useful Post: | ||
BLACKFIRE69 (07-04-2023), hitman797 (07-04-2023) | ||
|
#221
|
|||
|
|||
|
How can I draw and transfer the installation progress to the progressbar if the built-in compression Inno Setup is used?
Last edited by Tihiy_Don; 14-04-2023 at 00:34. |
| The Following User Says Thank You to Tihiy_Don For This Useful Post: | ||
Cesar82 (14-04-2023) | ||
|
#222
|
||||
|
||||
|
FMXInno - Cumulative Updates [2023-Apr-17]
Highlights: Code:
* Several enhancements have been made. * Voice recognition and speech capabilities have been added to FMXInno. * Included additional Copy and Move functions for files. The first post has been updated. Code:
* The given example has the ability to understand certain commands. Recognizable commands for the given example: 1. "go" 2. "comeback to". 3. "stop". 4. "browse". 5. "pause". 6. "resume". 7. "music". 8. "about". 9. "verify". * and also recognize phrases such as "I need you to come back to" as per the given Grammar.xml. Tested Voice: English (US). Code:
Grammar XML: Elements.
1. <O>AText</O> = Optional phrase that may be recognized.
2. <L>...</L> = List of phrases which can be recognized.
3. <P VAL="#">AText</P> = Phrase that must be recognized for the containing rule to be recognized.
4. LANGID : The language identifier of the grammar. || "409" - English-US, "809" - English-GB
5. RULE : Rule that contains phrases or text to be recognized.
6. PROPNAME : The semantic property's string identifier.
7. RULEREF : Import, or reference, another rules contents.
NOTE:
1. It is *imperative* that the "_ref" phrase be added at the end of the
"PROPNAME" of "RULEREF".
Code:
Grammar XML: Example.
<GRAMMAR LANGID="409">
<RULE NAME="R_My_Main" TOPLEVEL="ACTIVE">
<O>i need you to </O> <!-- Optional Phrase -->
<L PROPNAME="buttonPress" >
<P VAL="1">go</P> <!-- Click Next Button -->
<P VAL="2">comeback to</P> <!-- Click Back Button -->
<P VAL="3">stop</P> <!-- Click Cancel Button -->
<RULEREF NAME="R_My_Sub_A" PROPNAME="additionalButtonPress_ref"/> <!-- Reference 1 -->
<RULEREF NAME="R_My_Sub_B" PROPNAME="moreButtonPress_ref"/> <!-- Reference 2 -->
</L>
</RULE>
<RULE NAME="R_My_Sub_A">
<L PROPNAME="additionalButtonPress">
<P VAL="4">browse</P> <!-- Click Browse Button -->
<P VAL="5">pause</P> <!-- Click Pause Button -->
<P VAL="6">resume</P> <!-- Click Resume Button -->
</L>
</RULE>
<RULE NAME="R_My_Sub_B">
<L PROPNAME="moreButtonPress">
<P VAL="7">music</P> <!-- Click Music Button -->
<P VAL="8">about</P> <!-- Click About Button -->
<P VAL="9">verify</P> <!-- Click Verify Button -->
</L>
</RULE>
</GRAMMAR>
. Last edited by BLACKFIRE69; 14-07-2024 at 01:57. |
| The Following 7 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (17-04-2023), audiofeel (17-04-2023), crachlow (17-04-2023), ffmla (18-04-2023), hitman797 (17-04-2023), Masquerade (18-04-2023), Razor12911 (18-04-2023) | ||
|
#223
|
||||
|
||||
|
BLACKFIRE 69. There was a question about the expediency of calling copy/move operations from the library itself. No, perhaps in some cases this is enough, but to create, for example, a backup and then restore from it, during the uninstall you will have to copy FMXInno to the installation directory. I wouldn't want to do that. Maybe you should consider a system call option? But I would like to leave the Overwrite. Thank you in advance.
Last edited by crachlow; 18-04-2023 at 11:52. |
|
#224
|
||||
|
||||
|
BLACKFIRE69, do not think that this is not a necessary function in the library itself, I just would like to have an addition for such operations as restoring from a backup without carrying the entire library with it.
|
| The Following User Says Thank You to crachlow For This Useful Post: | ||
BLACKFIRE69 (18-04-2023) | ||
|
#225
|
||||
|
||||
|
One more thing
Code:
* Users now have the ability to choose their preferred form corner type, (Win11 +) This feature is particularly beneficial for those who have a strong dislike for rounded corners. ![]() . Last edited by BLACKFIRE69; 14-07-2024 at 01:57. |
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (19-04-2023) | ||
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
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 |