Jump to content



Photo

Pinball FX2 With Backglass 2nd Monitor

pinballfx2

  • Please log in to reply
53 replies to this topic

#41 Newer

Newer

    Pinball Fan

  • Silver Supporter
  • 1,113 posts

  • Flag: ---------

  • Favorite Pinball: Eight Ball Deluxe

Posted 03 October 2014 - 07:39 PM

I created new backglass images for my 2screen cab setup, because I need them in 1280x1024 resolution.
If anyone is interested in this images, you can see them here in my gallery: http://www.vpforums....llery&album=142
Or simply grab them in one zip file here: http://bit.ly/1j2bDP1 (about 90MB, 39 table backglass images)
Used the existing widescreen images and added table logos and a speaker grill.
 
Greetings,
Duglim




HALLO
Is there maybe an update with all the 46 Tables Backglases or is there a new Place where i can found all
Backlass Images without a Grill for a 3 Screen Cabinet??

#42 Carny_Priest

Carny_Priest

    Pinball Fan

  • Members
  • PipPipPipPip
  • 1,257 posts
  • Location:Austin, TX

  • Flag: United States of America

  • Favorite Pinball: EATPM

Posted 03 October 2014 - 10:21 PM

 

I created new backglass images for my 2screen cab setup, because I need them in 1280x1024 resolution.
If anyone is interested in this images, you can see them here in my gallery: http://www.vpforums....llery&album=142
Or simply grab them in one zip file here: http://bit.ly/1j2bDP1 (about 90MB, 39 table backglass images)
Used the existing widescreen images and added table logos and a speaker grill.
 
Greetings,
Duglim




HALLO
Is there maybe an update with all the 46 Tables Backglases or is there a new Place where i can found all
Backlass Images without a Grill for a 3 Screen Cabinet??

 

 

pinballx FTP or pinsimdb.org

 

http://www.pinsimdb....-60-pinball_fx2


Edited by Carny_Priest, 03 October 2014 - 10:26 PM.


#43 gStAv

gStAv

    Pinball Lover

  • Members
  • PipPipPipPip
  • 1,331 posts

  • Flag: Sweden

  • Favorite Pinball: TOM, IJ, AFM, WC94

Posted 04 October 2014 - 11:10 AM

If anyone would like them, I did PinballX sound clips for a whole bunch of Pinball FX2 tables.

Check them out here  :otvclap: 

 

Btw,,, I haven't read up, but is there any way to hook up DOF/Ledwiz action to PFX2 yet in any way?

Cheers!  :tapping:


3rs054-6.png


#44 noiseprisoner

noiseprisoner

    Enthusiast

  • Silver Supporter
  • 78 posts

  • Flag: United States of America

  • Favorite Pinball: Centaur, Ali, Lord of the Rings

Posted 23 November 2014 - 11:35 AM

Finally decided to setup PFX2 through PinballX on my system and wow, thank you to BigBoss for his DMD program...I would have been lost without it!



#45 lodger

lodger

    Board Certified Funk Master

  • Members
  • PipPipPipPip
  • 993 posts
  • Location:Altoona Pennsylvania

  • Flag: United States of America

  • Favorite Pinball: Whirlwind, TAF

Contributor

Posted 28 November 2014 - 11:06 PM

for those not in the know, there is actually a humble bundle offering pinball fx tables now. :)


berzerk2_0logo.png

http://www.vpforums....&showfile=11819

Version 2.0- Released 2/27/16


#46 Llyrrum

Llyrrum

    Neophyte

  • Members
  • Pip
  • 1 posts
  • Location:British Columbia, Canada

  • Flag: Canada

  • Favorite Pinball: Tales of the Arabian Nights

Posted 10 December 2014 - 06:32 PM

Hello everyone!

 

First off, what a fantastic job people have done with all of the aspects of digital pinball!!  I do not have a cabinet, but hope to build one someday...probably a mini since my house is small and lacks free real eastate for a full size cabinet.  For now, I play PBFX2 through steam on windows 7 with a two screen set-up using my boring old keyboard for controls.  I played around with the various tools from this thread to prep myself for a real cabinet, but also to make my gaming a little more enjoyable even without a cabinet.

 

I am not a scripter, so the scripts below are just a combination of BigBoss's script from the begining of this thread with snippets of code I have gleaned from the net.  I am simply using an icon created by AHK to launch PBFX2 through steam and have used the backglass images supplied by Duglim for my two screen set-up.  I saw several mentions of using "Actual Windows Manager" to strip away the borders of the DMD when using it on a second or thrid screen.  I did not want to pay for that program, so I found code for AHK that does the same.  I added lines into the first script to start and stop the second script that deals with the borders of the DMD.  I found the DMD locating tool ends up being a little off once the borders are stripped, but works great for finding the starting location.  I only had to adjust the numbers slightly to get the DMD to line up with the bezel in the backglass images.  The only thing I notice that is strange, is the GUI image loads right away, but while the PBFX2 splash screens are loading, the backglass switches to V12 (or sometimes cycles through a couple) and then once the game is loaded, switches to the first table in my list and changes properly as I scroll through the tables.  Anyway, I thought I'd post the code for you smart people to have a look at and possibly refine.  As I said, I am not a scripter, so I do not really know what any of it does, I just frankensteined it together to make it work.

 

Script #1

SetWorkingDir, C:\Users\nnn\Desktop\BackGlass
Run, "C:\Users\nnn\Desktop\BackGlass\ShowBackglass.exe" /left=2000 /top=-4 /width=1280 /height=1024 /picture=gui2.pxp.bmp,,UseErrorLevel
Run, "C:\Users\nnn\Desktop\PBFX2_temp.exe"
Run, "c:\Program Files (x86)\Steam\Steam.exe" -applaunch 226980,,UseErrorLevel
Sleep, 5000 ;let steam launch pinball fx2 before poll for it to close
Process, WaitClose, Pinball FX2.exe
Run, taskkill /IM ShowBackglass.exe,,UseErrorLevel
fullScriptPath = C:\Users\nnn\Desktop\PBFX2_temp.exe

DetectHiddenWindows, On 
WinClose, %fullScriptPath% ahk_class AutoHotkey

Script #2

#Persistent
SetBatchLines, -1
Process, Priority,, High
 
Gui +LastFound
hWnd := WinExist()
 
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
 
ShellMessage( wParam,lParam )
{
  If ( wParam = 1)
  {
    IfWinExist Pinball FX2 DotMatrix
    {
      WinSet, Style, -0xC00000 ; hide title bar
      WinSet, Style, -0x800000 ; hide thin-line border
      WinSet, Style, -0x400000 ; hide dialog frame
      WinSet, Style, -0x40000 ; hide thickframe/sizebox
      ;WinMove, , , 0, 0, 1920, 1080
    } 
  }
}
Return

Cheers!

Llyrrum


Edited by Llyrrum, 30 January 2015 - 03:59 AM.


#47 Carny_Priest

Carny_Priest

    Pinball Fan

  • Members
  • PipPipPipPip
  • 1,257 posts
  • Location:Austin, TX

  • Flag: United States of America

  • Favorite Pinball: EATPM

Posted 10 December 2014 - 08:07 PM

Www.nukelauncher.com

#48 Les73gTx

Les73gTx

    Preschooler

  • Members
  • PipPipPipPip
  • 523 posts
  • Location:Maine

  • Flag: United States of America

  • Favorite Pinball: Power Play, BoP, JackBot, MM, AFM, CV, MB,Champions Pub, CftBL, ToM, and Many More

  • PS3 Gamer Tag: LCT0819, Les73gtx
  • 360 Gamer Tag: PissPoorShot

Posted 11 December 2014 - 02:14 PM

Www.nukelauncher.com

Love this program and the instructions are very clear and easy to follow. Very good support for it also.

les73gtx___atomicpin-pc.png
                                                                      


#49 STAT

STAT

    Pinball and Arcade Freak

  • VIP
  • 4,980 posts
  • Location:Wels - Austria

  • Flag: Austria

  • Favorite Pinball: Twilight Zone

Posted 22 January 2015 - 08:58 AM

Have anyone a Step by Step with PinballX - Nukelauncher - Pinball FX2 ?

Nukelauncher would be nice but at the Site, there are the Instructions mixed with PBFX2 and PBA i think ...

Not so easy, and my favorite Language is German ...

 

Overall: Pinball FX 2 and DMD on Screen #2 already have done.

I Need only a Backglass - Image on the Screen #2

 

Maybe there are other Ways for this ...


Edited by STAT, 22 January 2015 - 09:00 AM.


#50 MMartins

MMartins

    Neophyte

  • Members
  • Pip
  • 1 posts

  • Flag: Switzerland

  • Favorite Pinball: Cogar

Posted 05 February 2015 - 07:31 AM

Hi all,

 

I've done all steps, but I'm not able to change the FPLaunch.ahk to the desired configuration for PinballFX2 and Pinball Arcade Backglass.

 

I've download the Autohotkey but I stock here and there, now it's about pwb.bgcolor.

 

maybe can someone help me or just Change the FPLaunch.ahk 1.295wip10 for me, I just Need to replace both lines for the backglass Position the one for Pinball FX2 and the other for Pinball Arcade.

 

Line 2243 and 2296 with this enty:

/left=1080 /top=0 /width=1282 /height=1025

 

thanks for your help



#51 STAT

STAT

    Pinball and Arcade Freak

  • VIP
  • 4,980 posts
  • Location:Wels - Austria

  • Flag: Austria

  • Favorite Pinball: Twilight Zone

Posted 05 February 2015 - 09:01 AM

I have check some workaraounds with Nukelauncher and Scripting, it is not this, what i will see on a "nice Front End Solution" ...

 

i can wait for official Support from ZEN, they want to do more in this Direction with the Backglass and DMD soon ...



#52 MAYAman

MAYAman

    Enthusiast

  • Members
  • PipPipPip
  • 73 posts

  • Flag: United States of America

  • Favorite Pinball: Cyclone

Posted 31 January 2017 - 02:04 AM

Has Zen added official support yet?  I have been struggling with this for weeks.  



#53 gtxjoe

gtxjoe

    VPF Veteran

  • VIP
  • 5,151 posts

  • Flag: United States of America

  • Favorite Pinball: Medieval Madness, AbraCadabra



Contributor

Posted 31 January 2017 - 08:29 AM

Yes they added cabinet support back in Sept 2015

#54 MAYAman

MAYAman

    Enthusiast

  • Members
  • PipPipPip
  • 73 posts

  • Flag: United States of America

  • Favorite Pinball: Cyclone

Posted 03 February 2017 - 07:50 AM

I meant for the a real DMD like dmd3







Also tagged with one or more of these keywords: pinballfx2