Jump to content
LaunchBox Community Forums

kdub87

Members
  • Posts

    11
  • Joined

  • Last visited

kdub87's Achievements

8-Bit Processor

8-Bit Processor (3/7)

1

Reputation

  1. Solved. MouseMove, 0, 1080 #NoEnv Sleep, 1000 ;wait 1 seconds feel free to change this number depending on your load times Send #+{Left} ;Send Win+Shift+Left Sleep, 1000 ;wait 1 second feel free to change this number depending on your load times WinActive("A") ;grab the currently active window which should be your game WinMaximize ;maximize the currently active window Return ; This section closes PCSX2 when pressing Escape $Esc:: { Process, Close, {{{StartupEXE}}} }
  2. I have a batch file that will go through current directory and compress all files into 7z format. Works great. But it will not go through Sub Directories. Can anyone help me get it to go through Sub Directories and output the 7z files into their proper sub directories as needed? The Batch: @ECHO OFF FOR %%i IN (*.*) DO ( ECHO "%%i" | FIND /I "zip.bat" 1>NUL) || ( "Y:\7Zip\7-Zip\7z.exe" a -t7z -mx9 "%%~ni.7z" "%%i" ) ) --UPDATE-- A friend of mine figured it out. Use this to quickly zip up your rom library while maintaining existing folder structure. Then simply open your database xml in something like Notepad++, do a Find All for w/e file extension you were using before (example .iso) and Replace All with .7z. Good for quickly compressing thousands of ROMs that you have already downloaded and imported into LaunchBox. for /r %%F in (*) do "Y:\7Zip\7-Zip\7z.exe" a -t7z -mx9 "%%~dpnF" "%%F"
  3. the video is not going to the right. it stays center. The goal is to have 16:9 1080p videos show full screen. see below image. But also have 4:3 images/videos get shoved to the right correctly. which is not working. see below image. I have tried multiple methods of forcing the images/videos to the right, but nothing seems to work.
  4. How do I go about forcing the video's into the top right corner? <!-- ================================================================= --> <!-- MAIN VIDEO, ON THE RIGHT ======================================== --> <!-- ================================================================= --> <transitions:TransitionPresenter x:Name="vidsource" Grid.Column="0" Grid.ColumnSpan="16" Grid.Row="0" Grid.RowSpan="15" TransitionSelector="{Binding ImageVideoTransitionSelector}" Content="{Binding ImageVideoView}" IsContentVideo="True" Visibility="Hidden"/> <Border Grid.Column="7" Grid.ColumnSpan="9" Grid.Row="1" Grid.RowSpan="13"> <Border.Background> <VisualBrush Visual="{Binding ElementName=vidsource, Path=Content}" x:Name="VideoRatio" Stretch="UniformToFill" AlignmentX="Center" AlignmentY="Center"/> </Border.Background> </Border> Here is what I have tried. It didnt work. <!-- ================================================================= --> <!-- MAIN VIDEO, ON THE RIGHT ======================================== --> <!-- ================================================================= --> <transitions:TransitionPresenter x:Name="vidsource" Grid.Column="0" Grid.ColumnSpan="16" Grid.Row="0" Grid.RowSpan="15" TransitionSelector="{Binding ImageVideoTransitionSelector}" Content="{Binding ImageVideoView}" IsContentVideo="True" Visibility="Hidden"/> <Border Grid.Column="0" Grid.ColumnSpan="16" Grid.Row="0" Grid.RowSpan="15"> <Border.Background> <VisualBrush Visual="{Binding ElementName=vidsource, Path=Content}" x:Name="VideoRatio" Stretch="UniformToFill" AlignmentX="Right" AlignmentY="Top" /> </Border.Background> I also tried HorizontalAlignment but that just crashes.
  5. @Retro808 do you know how to make this video shove itself to the top right corner? I have tried a few different methods and it just stays in the center. <VisualBrush Visual="{Binding ElementName=vidsource, Path=Content}" x:Name="VideoRatio" AlignmentX="Right" AlignmentY="Top"/>
  6. I figured it out. I had it right in the beginning but the video was set to start at column 7, which is right after the dark grey box on the left. Now I need to figure out how to properly shift the video to the right so it is always Right aligned. Here is what I have right now. <!-- ================================================================= --> <!-- MAIN VIDEO, ON THE RIGHT ======================================== --> <!-- ================================================================= --> <transitions:TransitionPresenter x:Name="vidsource" Grid.Column="0" Grid.ColumnSpan="16" Grid.Row="0" Grid.RowSpan="15" TransitionSelector="{Binding ImageVideoTransitionSelector}" Content="{Binding ImageVideoView}" IsContentVideo="True" Visibility="Hidden"/> <Border Grid.Column="0" Grid.ColumnSpan="16" Grid.Row="1" Grid.RowSpan="13"> <Border.Background> <VisualBrush Visual="{Binding ElementName=vidsource, Path=Content}" x:Name="VideoRatio" Stretch="UniformToFill" AlignmentX="Center" AlignmentY="Center"/> </Border.Background> </Border> <!-- ================================================================= --> <!-- LEFT MENU DARK BACKGROUND ======================================= --> <!-- ================================================================= --> <Grid Grid.Column="0" Grid.ColumnSpan="7" Grid.Row="0" Grid.RowSpan="15" Background="#313536" Opacity="0.8" />
  7. I tried again, making absolutely sure I had it spelled correctly. Still did not work. <!-- ================================================================= --> <!-- LEFT MENU DARK BACKGROUND ======================================= --> <!-- ================================================================= --> <Grid Grid.Column="0" Grid.ColumnSpan="7" Grid.Row="0" Grid.RowSpan="15" Background="Transparent" /> I also tried using both to see what would happen. Didnt work. <!-- ================================================================= --> <!-- LEFT MENU DARK BACKGROUND ======================================= --> <!-- ================================================================= --> <Grid Grid.Column="0" Grid.ColumnSpan="7" Grid.Row="0" Grid.RowSpan="15" Background="Transparent" Opacity="0.5" />
  8. I assume it is the correct line. Changing the background color to something else changes the color of what I am trying to make transparent. <!-- ================================================================= --> <!-- LEFT MENU DARK BACKGROUND ======================================= --> <!-- ================================================================= --> <Grid Grid.Column="0" Grid.ColumnSpan="7" Grid.Row="0" Grid.RowSpan="15" Background="#313536" /> Change this to this. <!-- ================================================================= --> <!-- LEFT MENU DARK BACKGROUND ======================================= --> <!-- ================================================================= --> <Grid Grid.Column="0" Grid.ColumnSpan="7" Grid.Row="0" Grid.RowSpan="15" Background="#ffffff" />
  9. How do I make this transparent? <Grid Grid.Column="0" Grid.ColumnSpan="7" Grid.Row="0" Grid.RowSpan="15" Background="#313536" /> I have tried these 2 methods and neither worked. <Grid Grid.Column="0" Grid.ColumnSpan="7" Grid.Row="0" Grid.RowSpan="15" Background="Trasnparent" /> <Grid Grid.Column="0" Grid.ColumnSpan="7" Grid.Row="0" Grid.RowSpan="15" Background="#313536" Opacity="0.5" /> More Context: Theme = COLORFUL - Dark File in question = WheelGamesView.xaml Goal = Make the left bar be a little bit transparent so that we can see the whole video. Right now video's are getting cut off due to the grey bar.
×
×
  • Create New...