Word Connect extension to create fun and engaging word puzzle game and also use as Screen Lock for app inventor
This component is developed by th using Fast.
Word Connection is a fun and engaging word puzzle game
where players link related words to form meaningful connections.
Challenge your vocabulary, improve your thinking skills,
and enjoy different game modes!
Word Connection is an addictive and educational word puzzle game that tests your vocabulary and logical thinking.
Players are given a set of words and must find meaningful connections between them.
Word Connection provides a fun way to expand your language skills and boost your brainpower.
Telegram | GitHub
Blogger | YouTube
Terms & Conditions
📦 Package: io.th.wordconnect.wordconnect
💾 Size: 56.01 KB
⚙️ Version: 1.0
📱 Minimum API Level: 7
📅 Updated On: [date=2025-03-03 timezone="Asia/Calcutta"]
🔗 Help URL: Learn more
⚖️ License: Terms & Conditions
💻 Built & documented using: FAST-CLI v2.4.2
Paid Price - 4💲 USD.
INR UPI - 350rs. PayPal
Find more Extension here
WordConnect has total 11 events.
Pattern was entered by the user. Example: '12345'
| Parameter | Type |
|---|---|
| pattern | text |
Pattern input was abandoned
Animation to show pattern view has started
Animation to show pattern view has completed
Animation to hide pattern view has started
Animation to hide pattern view has completed
Pattern size changed. Example: PatternSizeChanged(5) is triggered when the pattern size changes to 5.
| Parameter | Type |
|---|---|
| newSize | number |
Error occurred during pattern operation
| Parameter | Type |
|---|---|
| errorMessage | text |
Pattern was successfully saved. This event is triggered after a pattern has been successfully saved. Example: If a user sets a new pattern, this event will be triggered to indicate that the pattern has been saved successfully.
| Parameter | Type |
|---|---|
| key | text |
Pattern verification result. This event is triggered after attempting to verify a pattern. It returns a boolean indicating whether the pattern was successfully verified or not. Example: If the pattern entered by the user matches the saved pattern, this event will be triggered with 'matches' set to true.
| Parameter | Type |
|---|---|
| key | text |
| matches | boolean |
Maximum attempts reached. Example: If the maximum attempts is set to 5 and the user has reached 5 attempts, this event will be triggered.
| Parameter | Type |
|---|---|
| timeoutSeconds | number |
WordConnect has total 32 methods.
Initialize the ConnectPatternView within a given HorizontalArrangement or VerticalArrangement.
| Parameter | Type |
|---|---|
| arrangement | component |
Set background color using RGB values
| Parameter | Type |
|---|---|
| red | number |
| green | number |
| blue | number |
Set background color using ARGB values (with alpha transparency)
| Parameter | Type |
|---|---|
| alpha | number |
| red | number |
| green | number |
| blue | number |
Set transparent background
Set gradient background. Example: SetGradientBackground(Color.RED, Color.BLUE, true)
| Parameter | Type |
|---|---|
| startColor | number |
| endColor | number |
| isVertical | boolean |
Animate the pattern view in
Animate the pattern view out
Set to 12 circle pattern (3x4 grid)
Set to 16 circle pattern (4x4 grid)
Set the pattern view enabled or disabled
| Parameter | Type |
|---|---|
| enabled | boolean |
Animate in with delay (in milliseconds)
| Parameter | Type |
|---|---|
| delay | number |
Animate out with delay (in milliseconds)
| Parameter | Type |
|---|---|
| delay | number |
Get current pattern as string. Example: CurrentPattern() returns '12345' for a pattern connecting points 1, 2, 3, 4, and 5.
Reset to default settings
Check if the current pattern is valid. Example: ValidPattern() returns true if the pattern has the minimum required points.
Check if the current pattern matches a specific pattern. Example: CheckPattern('123') checks if the current pattern matches '123'.
| Parameter | Type |
|---|---|
| pattern | text |
Get the current pattern length. Example: PatternLength() returns the number of points in the current pattern.
Check if pattern meets minimum length requirement. Example: ValidPatternLength(5) checks if the current pattern length is at least 5.
| Parameter | Type |
|---|---|
| minLength | number |
Load and verify a saved pattern. Example: VerifyPattern('patternKey') verifies the pattern saved under 'patternKey' and returns true if it matches the current pattern.
| Parameter | Type |
|---|---|
| patternKey | text |
Sets the maximum number of attempts and timeout duration for pattern verification. Example: SetAttemptLimit(5, 60) sets the maximum attempts to 5 and timeout to 60 seconds.
| Parameter | Type |
|---|---|
| maxAttempts | number |
| timeoutSeconds | number |
Get the number of remaining attempts before the timeout period expires. Example: If the maximum attempts is set to 5 and the user has made 3 attempts, this function will return 2, indicating 2 remaining attempts before the timeout period expires.
Reset pattern attempt counter. This function resets the counter for the number of attempts made to verify a pattern. Example: If the user has made 3 attempts to verify a pattern and wants to start fresh, this function can be called to reset the attempt count to 0.
Save an encrypted pattern. Example: SavePattern('patternKey', 'patternString')
| Parameter | Type |
|---|---|
| patternKey | text |
| pattern | text |
Set letters for all dots. Use | to separate letters (e.g. 'A|B|C')
| Parameter | Type |
|---|---|
| letters | text |
Set letter at a specific position (0-8)
| Parameter | Type |
|---|---|
| position | number |
| letter | text |
Trigger success particle effect
Set the shape of dots (circle, square, triangle, oval, pentagon, hexagon, star)
| Parameter | Type |
|---|---|
| shapeName | any |
Set circle shape for dots
Set square shape for dots
Set triangle shape for dots
Set pentagon shape for dots
Set star shape for dots
Set oval shape for dots
Set hexagon shape for dots
Set star shape for dots
WordConnect has total 15 setter properties.
Set the color of the circles
- Input type:
number
Set background color of the pattern view
- Input type:
number
Set background alpha (transparency) value (0-255)
- Input type:
number
Get current number of connectors
- Input type:
number
Set the color of pattern lines
- Input type:
number
Set animation type (0 = None, 1 = Middle, 2 = Bottom)
- Input type:
number
Set circle radius in dp
- Input type:
number
Set pattern visibility
- Input type:
boolean
Set minimum required pattern length. Example: MinimumPatternLength(5) sets the minimum pattern length to 5.
- Input type:
number
Enable/disable pattern visibility during drawing
- Input type:
boolean
Set the width of pattern lines
- Input type:
number
Set the color of letters
- Input type:
number
Set the size of letters in dp
- Input type:
number
Set the color of success particles
- Input type:
number
Set the shape of dots (circle, square, triangle, oval, pentagon, hexagon, star)
- Input type:
any - Helper class:
Shape - Helper enums:
Circle,Square,Triangle,Ovel,Pentagon,Hexagon,Star
WordConnect has total 11 getter properties.
Set the color of the circles
- Return type:
number
Returns the color White
- Return type:
number
Returns the color Black
- Return type:
number
Returns the color Red
- Return type:
number
Returns the color Green
- Return type:
number
Returns the color Blue
- Return type:
number
Returns a transparent color
- Return type:
number
Get current number of connectors
- Return type:
number
Set the color of pattern lines
- Return type:
number
Set animation type (0 = None, 1 = Middle, 2 = Bottom)
- Return type:
number
Set the width of pattern lines
- Return type:
number
Get the current letters as a string (separated by '|')
- Return type:
text
Set the shape of dots
-
Return type:
text
WordConnect has total 7 Helpers properties.
Option for CIRCLE
- Returns: CIRCLE
Deprecated:false
Option for SQUARE
- Returns: SQUARE
Deprecated:false
Option for TRIANGLE
- Returns: TRIANGLE
Deprecated:false
Option for OVAL
- Returns: OVAL
Deprecated:false
Option for PENTAGON
- Returns: PENTAGON
Deprecated:false
Option for HEXAGON
- Returns: HEXAGON
Deprecated:false
Option for STAR
- Returns: STAR
Deprecated:false
TechHamara






















































































