Forum: Official Open PS2 Loader Forum - Discussion and information on the Official Open PS2 Loader.


The above video goes away if you are a member and logged in, so log in now!




 
Would you like to get all the new info from
PSX-Scene in your email each day?




Want to learn more about the team keeping you up to date with the latest scene news?

Read about them now!

Check out our Developer bios, too!

 


User Tag List

Like Tree72Likes

Thread: Share your Theme and ART - OPLv0.9 beta
  

Page 11 of 46 FirstFirst ... 9 10 11 12 13 21 ... LastLast
Results 101 to 110 of 453
  1. #101 opl v9 
    lewy20041's Avatar
    lewy20041 is offline Member
    Join Date
    Dec 2010
    Posts
    24
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    hello. i have favor to ask. can anybody upload a latest revision of opl for me. i dont want to louse my time now for compiling. i prefer to use this time to createing theme. thanks
    Reply With Quote  

  2. #102  
    SoulSlayer is offline Member
    Join Date
    Jun 2009
    Posts
    103
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Reply With Quote  

  3. #103 opl v9 
    lewy20041's Avatar
    lewy20041 is offline Member
    Join Date
    Dec 2010
    Posts
    24
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    oO. i didint read this befour;p if that so i dont have the other choice... i will compile this myself when i wil have more free time. thx for info
    Reply With Quote  

  4. #104  
    juggalomars's Avatar
    juggalomars is offline 1 of 12 Vita owners
    Join Date
    Jul 2010
    Location
    Lost
    Posts
    348
    Downloads
    2
    Uploads
    0
    Mentioned
    6 Post(s)
    Tagged
    2 Thread(s)
    Likes Given
    45
    Likes Received
    30
    Themes are off center in the latest revisions. I only see the bottom right half of the image.
    Softmodded V12 & V3 (750gb HDD) FMCB1.8
    2x Softmodded xbox Ndure1.1 (40GB HDD)
    PSP 3000 6.20 PRO-C
    4.3 Softmodded Wii w/ DML
    Reply With Quote  

  5. #105  
    Sp1ke's Avatar
    Sp1ke is offline Member
    Join Date
    Jan 2011
    Posts
    37
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Quote Originally Posted by juggalomars View Post
    Themes are off center in the latest revisions. I only see the bottom right half of the image.
    [lang=sv]Yup, specifically in revs 580, 581, 582 and 583[/lang]
    Reply With Quote  

  6. #106  
    hominem.te.esse is offline Babylon User
    Join Date
    Mar 2011
    Posts
    221
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    4
    Likes Received
    24
    You should not use:

    Code:
    width=-1
    height=-1
    Now, there is the explicit keyword "DIM_INF" to meant "max width/height".

    Also, all images are now aligned by default, and scaled by default. That's why you had this off-screen placement.

    You must now tell you want the image to be at pos 0,0 (default), not aligned (so the 0,0 position is the location of the top left corner), and probably not scaled (so it would not be shrinked when widescreen mode is enabled):

    Code:
    main1:
            type=StaticImage
            default=main_frames
            aligned=0
            scaled=0
            width=DIM_INF
            height=DIM_INF
    @MonkeyGlue

    You can now make the theme you wanted, using "scaled=0" for the frame layer, and it will work for both 4:3 and 16:9

    @All

    As the aligned mode for itemslist currently doesn't bring anything special, do you want it to be changed, so it would "center" each game name when active? Like this:

    God of War
    Ico
    Alien Hominid
    A very long game name
    Reply With Quote  

  7. #107  
    SoulSlayer is offline Member
    Join Date
    Jun 2009
    Posts
    103
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Quote Originally Posted by hominem.te.esse View Post
    As the aligned mode for itemslist currently doesn't bring anything special, do you want it to be changed, so it would "center" each game name when active?
    Would it be possible to have an option on justification? It may be useful for different themes if the themer could left/center/right justify the games list to suit his or her theme.
    Reply With Quote  

  8. #108  
    hominem.te.esse is offline Babylon User
    Join Date
    Mar 2011
    Posts
    221
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    4
    Likes Received
    24
    That is somehow what I proposed, but with only 2 choice: left justified, or middle alignment.

    I think I will do it anyway, as using "aligned=1" mode for the itemslist currently doesn't bring anything useful. If it would set the game names to middle alignment at the same time, that would at least better.
    Reply With Quote  

  9. #109  
    MonkeyGlue's Avatar
    MonkeyGlue is offline ..is currently playing God of War
    Join Date
    Dec 2010
    Location
    Denmark
    Posts
    172
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    Quote Originally Posted by hominem.te.esse View Post

    Also, all images are now aligned by default, and scaled by default. That's why you had this off-screen placement.
    Do you mean all images were aligned and scaled by default, thats why there was off screen placement?

    Quote Originally Posted by hominem.te.esse View Post
    You must now tell you want the image to be at pos 0,0 (default), not aligned (so the 0,0 position is the location of the top left corner), and probably not scaled (so it would not be shrinked when widescreen mode is enabled):

    Code:
    main1:
            type=StaticImage
            default=main_frames
            aligned=0
            scaled=0
            width=DIM_INF
            height=DIM_INF
    @MonkeyGlue

    You can now make the theme you wanted, using "scaled=0" for the frame layer, and it will work for both 4:3 and 16:9
    Thanks for the info, I havn´t had time to even start the configuration file yet as I was away. Still not back home either yet so I have no idea whether the configuration in my head would of worked or not or the effect of the changes you have implemented. Would scalling of stretched the background image on a widescreen and messed up the overlay frame? So basically the screen of a widescreen tv will display the theme in 4:3 ratio as opposed to 16:9 to prevent distortion and garbage from unallocated pixels? I presume this is the case as I have not tested it at all yet...

    Also welcome, I presume you are new to the community??
    ...death, would be his escape from madness.
    Reply With Quote  

  10. #110  
    hackoba is offline Member
    Join Date
    Nov 2006
    Posts
    73
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Hi! anyone here can give a sample of Theme and conf_theme.cnf for this last OPL rev584? Thanks in advance.
    SCPH-3900X and many more w/ FMCB 1.8c and UFMCB v1.8c

    ---Loader---
    HDLoader
    OPL w/ fully childproof(no more settings)
    PS2ESDL
    USBAdvance
    Reply With Quote  

Page 11 of 46 FirstFirst ... 9 10 11 12 13 21 ... LastLast
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •