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
  #361  
Old 16-08-2016, 03:04
Gupta Gupta is offline
Banned
 
Join Date: Aug 2016
Location: https://t.me/pump_upp
Posts: 399
Thanks: 139
Thanked 715 Times in 231 Posts
Gupta is on a distinguished road
Send a message via ICQ to Gupta Send a message via AIM to Gupta Send a message via Yahoo to Gupta
Razor can u do me a favour?
i can't manage to create something like this post #53 i mean by the scrolling of form when mouse hovers on the tiles.
can u share a example or jst the trick.
I want to use it in my modified version of ur WPI.

Thanks in advance

Last edited by Gupta; 16-08-2016 at 03:25.
Reply With Quote
The Following User Says Thank You to Gupta For This Useful Post:
Prince4 (16-08-2016)
Sponsored Links
  #362  
Old 25-08-2016, 03:11
mahbod's Avatar
mahbod mahbod is offline
Registered User
 
Join Date: Feb 2016
Location: iran
Posts: 5
Thanks: 1
Thanked 0 Times in 0 Posts
mahbod is on a distinguished road
Please All INeed This Script Please I Like Use This in my setup

Reply With Quote
  #363  
Old 25-08-2016, 03:42
-PUNISHER- -PUNISHER- is offline
Registered User
 
Join Date: Aug 2016
Location: UK
Posts: 4
Thanks: 4
Thanked 2 Times in 1 Post
-PUNISHER- is on a distinguished road
Quote:
Originally Posted by PrinceGupta2000 View Post
i mean by the scrolling of form when mouse hovers on the tiles.
Create a function WPIFormMouseMove with condition that if MouseIsMoving then set the Tiles position = Tiles Position - X ///Cursor's X coordinate

Pretty easy stuff if you are able to use these lines of WPI:

Code:
  {$EXTERNALSYM MOUSEEVENTF_MOVE}
  MOUSEEVENTF_MOVE            = $0001; { mouse move }
  {$EXTERNALSYM MOUSEEVENTF_ABSOLUTE}
  MOUSEEVENTF_ABSOLUTE        = $8000; { absolute move }
Reply With Quote
  #364  
Old 25-08-2016, 03:59
Gupta Gupta is offline
Banned
 
Join Date: Aug 2016
Location: https://t.me/pump_upp
Posts: 399
Thanks: 139
Thanked 715 Times in 231 Posts
Gupta is on a distinguished road
Send a message via ICQ to Gupta Send a message via AIM to Gupta Send a message via Yahoo to Gupta
Quote:
Originally Posted by -PUNISHER- View Post
Create a function WPIFormMouseMove with condition that if MouseIsMoving then set the Tiles position = Tiles Position - X ///Cursor's X coordinate

Pretty easy stuff if you are able to use these lines of WPI:

Code:
  {$EXTERNALSYM MOUSEEVENTF_MOVE}
  MOUSEEVENTF_MOVE            = $0001; { mouse move }
  {$EXTERNALSYM MOUSEEVENTF_ABSOLUTE}
  MOUSEEVENTF_ABSOLUTE        = $8000; { absolute move }
Thanks bt already done

Last edited by Gupta; 25-08-2016 at 06:16.
Reply With Quote
  #365  
Old 25-08-2016, 04:52
mahbod's Avatar
mahbod mahbod is offline
Registered User
 
Join Date: Feb 2016
Location: iran
Posts: 5
Thanks: 1
Thanked 0 Times in 0 Posts
mahbod is on a distinguished road
Please Guy I NEED This Script
Reply With Quote
  #366  
Old 28-08-2016, 02:33
edward99 edward99 is offline
Banned
 
Join Date: Aug 2015
Location: India
Posts: 58
Thanks: 4
Thanked 12 Times in 6 Posts
edward99 is on a distinguished road
Edward

I Modified WPI
Attached Files
File Type: rar Setup.rar (10.15 MB, 458 views)
Reply With Quote
  #367  
Old 29-08-2016, 16:57
L0v3craft's Avatar
L0v3craft L0v3craft is offline
Registered User
 
Join Date: Dec 2015
Location: Rome
Posts: 96
Thanks: 421
Thanked 24 Times in 15 Posts
L0v3craft is on a distinguished road
Quote:
Originally Posted by edward99 View Post
I Modified WPI
Your setup contains spam. When I close it, my browser opens a website... corep.....

Last edited by L0v3craft; 29-08-2016 at 16:59.
Reply With Quote
  #368  
Old 29-08-2016, 17: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
Quote:
Originally Posted by edward99 View Post
I Modified WPI
What are we supposed to do with this?
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
coveiro (29-08-2016)
  #369  
Old 29-08-2016, 17:51
L0v3craft's Avatar
L0v3craft L0v3craft is offline
Registered User
 
Join Date: Dec 2015
Location: Rome
Posts: 96
Thanks: 421
Thanked 24 Times in 15 Posts
L0v3craft is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
What are we supposed to do with this?
Thanks Razor12911 for this installer ! But I want replace the up arrow to unlock the first screen, with a simple clic of the mouse. Can you say to me what I must edit ?
Reply With Quote
  #370  
Old 29-08-2016, 18:00
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
Find this in script

procedure LockKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
make it

procedure LockKeyDown(Sender: TObject);

then find:
OnKeyDown:=@LockKeyDown;

Make this
OnClick:=@LockKeyDown;

Note: This is not tested, I wrote code with Notepad.
Reply With Quote
  #371  
Old 29-08-2016, 18:17
L0v3craft's Avatar
L0v3craft L0v3craft is offline
Registered User
 
Join Date: Dec 2015
Location: Rome
Posts: 96
Thanks: 421
Thanked 24 Times in 15 Posts
L0v3craft is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
Find this in script

procedure LockKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
make it

procedure LockKeyDown(Sender: TObject);

then find:
OnKeyDown:=@LockKeyDown;

Make this
OnClick:=@LockKeyDown;

Note: This is not tested, I wrote code with Notepad.
I got this

Reply With Quote
  #372  
Old 29-08-2016, 18:20
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
remove that line
Reply With Quote
  #373  
Old 29-08-2016, 18:29
L0v3craft's Avatar
L0v3craft L0v3craft is offline
Registered User
 
Join Date: Dec 2015
Location: Rome
Posts: 96
Thanks: 421
Thanked 24 Times in 15 Posts
L0v3craft is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
remove that line
Perfect
Reply With Quote
  #374  
Old 18-09-2016, 10:34
dregatar dregatar is offline
Registered User
 
Join Date: Jun 2016
Location: dregatar
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
dregatar is on a distinguished road
Hi I'm new here.
Has anyone managed to get the installing percentage working in this script??
Reply With Quote
  #375  
Old 22-09-2016, 21:41
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 696 Times in 191 Posts
rinaldo is on a distinguished road
Quote:
Originally Posted by dregatar View Post
Hi I'm new here.
Has anyone managed to get the installing percentage working in this script??
there are a million in Threed
__________________
if you understand read more
Reply With Quote
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
Conversion Designer/Installer Creator Razor12911 Conversion Tutorials 1613 03-10-2024 01:24
Windows XP - Tricks gargujjwal Software 3 25-05-2008 02:54
Error Windows Installer: Command And Conquer 3 Kane Edition glfsd PC Games 14 24-01-2008 06:00
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 01:30.


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