MSFN Forum: Flash Fxp - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Flash Fxp Autoit script Rate Topic: -----

#1 User is offline   bobthenob 

  • Member
  • PipPip
  • Group: Members
  • Posts: 120
  • Joined: 25-November 05

Posted 21 December 2005 - 01:38 AM

Hi heres my script for flashfxp 3.3

For other versions you would have to change the reference to your version

just put your serial in the lines that say serial
hope this may help somebody
big thanks to Nologic

; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template AutoIt script.
;
; ----------------------------------------------------------------------------

; Script Start - Add your code below here

run("FlashFXP_32_Setup.exe")
Winwaitactive("Full Setup - FlashFXP v3.2.0 Final")
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","License Agreement")
Send('{TAB}')
Send('{UP}')
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","information before continuing")
Send('{ENTER}')


Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","FlashFXP be installed")
Send('{ENTER}')

Winwaitactive("Folder Does Not Exist")
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","personalize your installtion")
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","components should be installed")
Send('{ENTER}')


Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","Select Additional Tasks")
Send('{TAB}{6}')
Send('{ENTER}')


Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","begin installing FlashFXP")
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","information before continuing")
Send('{ENTER}')


Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","has finished installing")
Send('{ENTER}')

Winwaitactive("FlashFXP v3.3.5 (build 1110) BETA Evaluation - 29 DAYS LEFT")
Send('{tab}')
Send('{tab}')
Send('{tab}')
Send('{ENTER}')

Winwaitactive("Register FlashFXP v3.3.5 (build 1110) BETA")
Send("Serial number",1)
Send('{ENTER}')
SEND("Serial number",1)
Send('{ENTER}')
Send("Serial number",1)
Send('{ENTER}')
SEND("Serial number",1)
Send('{ENTER}')
SEND("Serial number",1)
Send('{ENTER}')
SEND("Serial number")
Send('{tab}')
Send('{tab}')
Send('{tab}')
Send('{ENTER}')

Winwaitactive("FlashFXP","FlashFXP is now licensed")
Send('{ENTER}')

Winwaitactive("FlashFXP")
Send('{ALT}')
Send('{UP}')
Send('{UP}')
Send('{ENTER}')


Winwaitactive("FlashFXP")
Send('{ALT}')
Send('{UP}')
Send('{UP}')
Send('{ENTER}')
Exit

This post has been edited by bobthenob: 21 December 2005 - 04:59 AM



#2 User is offline   redfive19 

  • Junior
  • Pip
  • Group: Members
  • Posts: 96
  • Joined: 17-August 04

Posted 29 June 2006 - 09:46 AM

Opt('TrayIconHide', 1) 
RunWait('FlashFXP_34_Setup.exe /S')
FileCopy(@ScriptDir & '\Sites.dat', @ProgramFilesDir & '\FlashFXP\Sites.dat', 1)
Run(@ProgramFilesDir & '\FlashFXP\FlashFXP.exe')
WinWait('FlashFXP v3.4.0 (build 1140) Evaluation')
ControlClick('FlashFXP v3.4.0 (build 1140) Evaluation', 'Enter code..', 'TButton1')
WinWait('Register FlashFXP v3.4.0 (build 1140)')
$serial = (');<-- Separate the lines by		 & @CRLF & 
ControlFocus('Register FlashFXP v3.4.0 (build 1140)', 'OK', 'TMemo1')
ControlSetText('Register FlashFXP v3.4.0 (build 1140)', 'OK', 'TMemo1', $serial)
ControlClick('Register FlashFXP v3.4.0 (build 1140)', 'OK', 'TButton2')
WinWait('FlashFXP', 'This copy of FlashFXP is now licensed')
ControlClick('FlashFXP', 'This copy of FlashFXP is now licensed', 'Button1')
Sleep(1000)
WinWait('FlashFXP', '')
WinClose('FlashFXP', '')


I wrote this script today for v3.4.0 build 1140. It copies over my favorites (sites.dat) and if you don't need this, then you can cut that out.

#3 User is offline   --=ddSHADOW=-- 

  • --=ddSHADOW=--
  • PipPip
  • Group: Members
  • Posts: 209
  • Joined: 08-August 04

Posted 29 June 2006 - 10:57 AM

@redfive19

check the autoit section

#4 User is offline   redfive19 

  • Junior
  • Pip
  • Group: Members
  • Posts: 96
  • Joined: 17-August 04

Posted 29 June 2006 - 11:59 AM

with all due respect, you should have silenced the install in your script but that's just my preference! I do however like the processwait() and processclose() in your script and am bummed that I didn't think of that.

#5 User is offline   matthewk 

  • Member
  • PipPip
  • Group: Members
  • Posts: 288
  • Joined: 07-June 05

Posted 01 July 2006 - 01:12 PM

Is there a way to do this with registry to register the application instead of using autoit?

#6 User is offline   --=ddSHADOW=-- 

  • --=ddSHADOW=--
  • PipPip
  • Group: Members
  • Posts: 209
  • Joined: 08-August 04

Posted 01 July 2006 - 06:26 PM

u need to place "flashfxp.key" in FlashFxp program dir

#7 User is offline   matthewk 

  • Member
  • PipPip
  • Group: Members
  • Posts: 288
  • Joined: 07-June 05

Posted 01 July 2006 - 10:42 PM

View Post--=ddSHADOW=--, on Jul 1 2006, 07:26 PM, said:

u need to place "flashfxp.key" in FlashFxp program dir

Thank you, but that doesn't work when the pc changes hardware.. or for multiple pc's. I read it here

#8 User is offline   --=ddSHADOW=-- 

  • --=ddSHADOW=--
  • PipPip
  • Group: Members
  • Posts: 209
  • Joined: 08-August 04

Posted 02 July 2006 - 01:29 AM

thats way i wrote the autoit script

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy