Jump to content

How can i :P


Recommended Posts

Hello Scripters!

Can someone give me the code and tell me how can i make a window (case sensetive / transparent) and to set higher and lower sensetivety / tranceperancy (sry not shure how it's called )

can someone make an example

Have Questions About GUI (Graphical User Interface) ? Post Them Here :GUI Help And Support ForumHave Questions About General AutoIt ? Post Them Here : General Help And Support ForumNew To AutoIt ? Be Shure To Check Out The FaQ's (Frequently Asked Questions) Or FaQ ¹ There You May Find Great Help That Will Guide You True The Wonderful Programming Language AutoItOthere Good Place To Get Some Knolage Of AutoIt Is The Example Script ForumNotice A Bug ? Please Go And Report it At Bug Report Section And Help The Devolepers Of AutoIt Update And Fix The Programming LanguageWant To Thank The People For This Great Forum And Programming Language ? Then DonateWhen You Found The Answer Your Looking For Please Add [Resolved] To The Thread's Name That Will Show Otheres That You Have Found What Your Looking For And They Whount Have To Enter The Thread.

Link to comment
Share on other sites

A quick look in the help file and this comes up:

WinSetTrans 
--------------------------------------------------------------------------------

Sets the transparency of a window. (Windows 2000/XP or later)

WinSetTrans ( "title", "text", transparency )

Parameters

title  The title of the window to change. See Title special definition. 
text  The text of the window to change.  
transparency A number in the range 0 - 255. The lower the number, the more transparent the window will become. 255 = Solid, 0 = Invisible. 

Return Value

Success: Returns Non-zero. 
Failure: Returns 0, @error will be set to 1 if the function isn't supported on an OS. 

Remarks
Requires Windows 2000/XP or later. Screen color must be greater or equal to 16-bit.

Related
None.

Help is your friend and can probably help with your "case sensitive" question as well.

Bob

Edited by YellowLab

You can't see a rainbow without first experiencing the rain.

Link to comment
Share on other sites

Here's an example script-tool to set the alpha (transparency) of a window.

#region Includes
#include <GUIConstants.au3>
#include <Constants.au3>
#endregion

#region GUI Layout
;SystemTray Layout and Hide
Opt("TrayMenuMode",1)
$trayrestore = TrayCreateItem("Restore")
TrayCreateItem("")
$trayexit = TrayCreateItem("Exit")
TraySetIcon("Shell32.dll",24)
Opt("TrayIconHide",1)

HotKeySet("{PAUSE}","FadeAll")

;GUI Layout
GUICreate("Transparency Machine", 240, 140)
GuiSetIcon(@SystemDir & "\shell32.dll", 24)
$alpha = GUICtrlCreateSlider(10,110,220,20,-1)
    GUICtrlSetLimit($alpha,255,20)
    GUICtrlSetData($alpha,255)
$windowlist = GUICtrlCreateList("",10,20,220,90)

;Populate List with Window Names
Global $winlist
RefreshWindows()
#endregion

#region GUI Execution Logic
WinSetTrans("Transparency Machine", "", 1)
GUISetState()


Fade("Transparency Machine","",4,0)

$timerstart = TimerInit()

While 1
    if TimerDiff($timerstart) > 10000 then 
        RefreshWindows()
        $timerstart = TimerInit()
    EndIf
    $msg = GUIGetMsg()
    
    If $msg = $GUI_EVENT_MINIMIZE then
        Opt("TrayIconHide",0)
        WinSetState("Transparency Machine","",@SW_HIDE)
        
        While 1
            $traymsg = TrayGetMsg()
            
            if $traymsg = $trayrestore Then
                Opt("TrayIconHide",1)
                WinSetTrans("Transparency Machine","",1)
                WinSetState("Transparency Machine","",@SW_RESTORE)
                WinSetState("Transparency Machine","",@SW_SHOW)
                Fade("Transparency Machine","",4,0)
                ExitLoop
            EndIf
            
            if $traymsg = $trayexit then Exit
        WEnd
    EndIf   
    
    If $msg = $alpha Then WinSetTrans(GUICtrlRead($windowlist), "",GUICtrlRead($alpha))
    If $msg = $GUI_EVENT_CLOSE then 
        CloseApp()
        ExitLoop
    EndIf
WEnd

GUIDelete()
#endregion

#region User Defined Functions
Func FadeAll()
    $data = WinList()
    For $x = 255 to 1 step -8
        For $i = 1 to $data[0][0]
            If $data[$i][0] <> "" AND IsVisible($data[$i][1]) AND $data[$i][0] <> "Program Manager" Then
                WinSetTrans($data[$i][0],"",$x)
            EndIf
        Next
    Next
    
    For $x = 1 to 255 step 8
        For $i = 1 to $data[0][0]
            If $data[$i][0] <> "" AND IsVisible($data[$i][1]) AND $data[$i][0] <> "Program Manager" Then
                WinSetTrans($data[$i][0],"",$x)
            EndIf
        Next
    Next
EndFunc

Func CloseApp()
    Opt("TrayIconHide",1)
    WinSetState("Transparency Machine","",@SW_RESTORE)
    WinSetTrans("Transparency Machine", "", 255)
    Fade("Transparency Machine","",4,-1)
    WinSetState("Transparency Machine","",@SW_HIDE)
    ResetWindows($winList)
    WinClose("Transparency Machine")
    Exit
EndFunc

Func Fade($windowname,$windowtext,$speed,$direction)
    Select
        Case $direction = -1
            For $x = 255 to 1 step $speed * -1
                WinSetTrans($windowname, $windowtext, $x)
                sleep(1)
            Next
        Case $direction = 0
            For $x = 1 to 255 step $speed * 1
                WinSetTrans($windowname, $windowtext, $x)
                sleep(1)
            Next
    EndSelect
EndFunc

Func Windows($data)
    For $i = 1 to $data[0][0]
        If $data[$i][0] <> "" AND IsVisible($data[$i][1]) AND $data[$i][0] <> "Program Manager" Then
            GUICtrlSetData($windowList,$data[$i][0] & "|")
        EndIf
    Next
EndFunc

Func RefreshWindows()
    GUICtrlSetData($windowList,"")
    $winlist = WinList()
    Windows($winlist)
EndFunc

Func ResetWindows($data)
    For $i = 1 to $data[0][0]
        If $data[$i][0] <> "" AND IsVisible($data[$i][1]) AND $data[$i][0] <> "Program Manager" Then
            WinSetTrans($data[$i][0], "", 255)
        EndIf
    Next    
EndFunc

Func IsVisible($handle)
    If BitAnd( WinGetState($handle), 2 ) Then 
        Return 1
    Else
        Return 0
    EndIf
EndFunc
#endregion
Link to comment
Share on other sites

can i make a option and hook it up to change the level of transeperancy ?

Have Questions About GUI (Graphical User Interface) ? Post Them Here :GUI Help And Support ForumHave Questions About General AutoIt ? Post Them Here : General Help And Support ForumNew To AutoIt ? Be Shure To Check Out The FaQ's (Frequently Asked Questions) Or FaQ ¹ There You May Find Great Help That Will Guide You True The Wonderful Programming Language AutoItOthere Good Place To Get Some Knolage Of AutoIt Is The Example Script ForumNotice A Bug ? Please Go And Report it At Bug Report Section And Help The Devolepers Of AutoIt Update And Fix The Programming LanguageWant To Thank The People For This Great Forum And Programming Language ? Then DonateWhen You Found The Answer Your Looking For Please Add [Resolved] To The Thread's Name That Will Show Otheres That You Have Found What Your Looking For And They Whount Have To Enter The Thread.

Link to comment
Share on other sites

arggggg :) i'm lame at explaining :D

well i have made a program and i want to make it transperant and to set the level of transperancy of that program

but i want to set the level from the program not to edit the script :D it has it in spudw2k's code :D

Have Questions About GUI (Graphical User Interface) ? Post Them Here :GUI Help And Support ForumHave Questions About General AutoIt ? Post Them Here : General Help And Support ForumNew To AutoIt ? Be Shure To Check Out The FaQ's (Frequently Asked Questions) Or FaQ ¹ There You May Find Great Help That Will Guide You True The Wonderful Programming Language AutoItOthere Good Place To Get Some Knolage Of AutoIt Is The Example Script ForumNotice A Bug ? Please Go And Report it At Bug Report Section And Help The Devolepers Of AutoIt Update And Fix The Programming LanguageWant To Thank The People For This Great Forum And Programming Language ? Then DonateWhen You Found The Answer Your Looking For Please Add [Resolved] To The Thread's Name That Will Show Otheres That You Have Found What Your Looking For And They Whount Have To Enter The Thread.

Link to comment
Share on other sites

It might be easiest if you just add a Slider ctrl to your GUI.

#region GUI Layout
GUICreate("Transparency Machine", 240, 140)
$alpha = GUICtrlCreateSlider(10,110,220,20,-1)
    GUICtrlSetLimit($alpha,255,20)
    GUICtrlSetData($alpha,255)
#endregion

#region GUI Execution Logic
WinSetTrans("Transparency Machine", "", 1)
GUISetState()

Fade("Transparency Machine","",4,0)

While 1
    $msg = GUIGetMsg()
    
    If GUICtrlRead($alpha) <= 254 Then WinSetTrans("Transparency Machine", "",GUICtrlRead($alpha))
    If $msg = -3 then CloseApp()
WEnd
#endregion

#region User Defined Functions
Func CloseApp()
    WinSetState("Transparency Machine","",@SW_RESTORE)
    WinSetTrans("Transparency Machine", "", 255)
    Fade("Transparency Machine","",4,-1)
    WinSetState("Transparency Machine","",@SW_HIDE)
    WinClose("Transparency Machine")
    Exit
EndFunc

Func Fade($windowname,$windowtext,$speed,$direction)
    Select
        Case $direction = -1
            For $x = 255 to 1 step $speed * -1
                WinSetTrans($windowname, $windowtext, $x)
                sleep(1)
            Next
        Case $direction = 0
            For $x = 1 to 255 step $speed * 1
                WinSetTrans($windowname, $windowtext, $x)
                sleep(1)
            Next
    EndSelect
EndFunc
#endregion
Edited by spudw2k
Link to comment
Share on other sites

yes a slider :D

can u give me the code to do it ?

My Program is called "Easy MoD v3.0"

can you include a slider that sets the level of transeperancy of this program :D

Have Questions About GUI (Graphical User Interface) ? Post Them Here :GUI Help And Support ForumHave Questions About General AutoIt ? Post Them Here : General Help And Support ForumNew To AutoIt ? Be Shure To Check Out The FaQ's (Frequently Asked Questions) Or FaQ ¹ There You May Find Great Help That Will Guide You True The Wonderful Programming Language AutoItOthere Good Place To Get Some Knolage Of AutoIt Is The Example Script ForumNotice A Bug ? Please Go And Report it At Bug Report Section And Help The Devolepers Of AutoIt Update And Fix The Programming LanguageWant To Thank The People For This Great Forum And Programming Language ? Then DonateWhen You Found The Answer Your Looking For Please Add [Resolved] To The Thread's Name That Will Show Otheres That You Have Found What Your Looking For And They Whount Have To Enter The Thread.

Link to comment
Share on other sites

well after opening your last program and trying the slider ... well let's just say it made my computer tranceparent *LOL* :D so i ask to give me the code only for my program :D

Have Questions About GUI (Graphical User Interface) ? Post Them Here :GUI Help And Support ForumHave Questions About General AutoIt ? Post Them Here : General Help And Support ForumNew To AutoIt ? Be Shure To Check Out The FaQ's (Frequently Asked Questions) Or FaQ ¹ There You May Find Great Help That Will Guide You True The Wonderful Programming Language AutoItOthere Good Place To Get Some Knolage Of AutoIt Is The Example Script ForumNotice A Bug ? Please Go And Report it At Bug Report Section And Help The Devolepers Of AutoIt Update And Fix The Programming LanguageWant To Thank The People For This Great Forum And Programming Language ? Then DonateWhen You Found The Answer Your Looking For Please Add [Resolved] To The Thread's Name That Will Show Otheres That You Have Found What Your Looking For And They Whount Have To Enter The Thread.

Link to comment
Share on other sites

well after opening your last program and trying the slider ... well let's just say it made my computer tranceparent *LOL* :D so i ask to give me the code only for my program :D

See my post above for an updated example.

Link to comment
Share on other sites

here is my source code can u add this for me cuz i tryed but .... no result

Have Questions About GUI (Graphical User Interface) ? Post Them Here :GUI Help And Support ForumHave Questions About General AutoIt ? Post Them Here : General Help And Support ForumNew To AutoIt ? Be Shure To Check Out The FaQ's (Frequently Asked Questions) Or FaQ ¹ There You May Find Great Help That Will Guide You True The Wonderful Programming Language AutoItOthere Good Place To Get Some Knolage Of AutoIt Is The Example Script ForumNotice A Bug ? Please Go And Report it At Bug Report Section And Help The Devolepers Of AutoIt Update And Fix The Programming LanguageWant To Thank The People For This Great Forum And Programming Language ? Then DonateWhen You Found The Answer Your Looking For Please Add [Resolved] To The Thread's Name That Will Show Otheres That You Have Found What Your Looking For And They Whount Have To Enter The Thread.

Link to comment
Share on other sites

pls someone add it :S

Have Questions About GUI (Graphical User Interface) ? Post Them Here :GUI Help And Support ForumHave Questions About General AutoIt ? Post Them Here : General Help And Support ForumNew To AutoIt ? Be Shure To Check Out The FaQ's (Frequently Asked Questions) Or FaQ ¹ There You May Find Great Help That Will Guide You True The Wonderful Programming Language AutoItOthere Good Place To Get Some Knolage Of AutoIt Is The Example Script ForumNotice A Bug ? Please Go And Report it At Bug Report Section And Help The Devolepers Of AutoIt Update And Fix The Programming LanguageWant To Thank The People For This Great Forum And Programming Language ? Then DonateWhen You Found The Answer Your Looking For Please Add [Resolved] To The Thread's Name That Will Show Otheres That You Have Found What Your Looking For And They Whount Have To Enter The Thread.

Link to comment
Share on other sites

I added lines 51-56 and 73-83

#include <GUIConstants.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <StaticConstants.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>

Dim $csvFile = @ScriptDir & "\Data\Path.ini"

Opt("TrayMenuMode",1)
TrayTip("Easy MoD v3.0", "Thank You For Using Easy MoD I Hope You Will Enjoy It", 2000)
Local $Window = WinGetHandle("[CLASS:CLIENT]")


SoundPlay("Welcome.mp3")
$destination = "Logos\Good.gif"
SplashImageOn("Easy Mod v2.5", $destination,326,207)
Sleep(3000)
SplashOff()
$Main = GuiCreate("Easy MoD v3.0", 370, 260, 236, 179)
GuiCtrlCreateTab(0, 0, 417, 417)
$MainTab = GuiCtrlCreateTabItem("Main")
$TheTime = GUICtrlCreateLabel("Your Local Time Is:", 10, 240)
$TheLabel = GUICtrlCreateLabel("Local Time", 110, 240)
AdLibEnable("UpdateTime", "1000")
GUICtrlSetColor($TheLabel,0xff0000)
GUIStartGroup()
GuiCtrlCreateGroup("", 5, 25, 280, 35)
$min = GuiCtrlCreateButton("Minimize", 10, 33, 80)
$max = GuiCtrlCreateButton("Maximize", 106, 33, 80)
$hide = GuiCtrlCreateButton("Hide", 201, 33, 80)
GUIStartGroup()
GuiCtrlCreateGroup("", 5, 52, 280, 35)
$show = GuiCtrlCreateButton("Show", 10, 61, 80)
$RunSro = GUICtrlCreateButton("RunSro", 106,61, 80) 
$RunLoader = GuiCtrlCreateButton("RunLoader", 201, 61, 80)
GUIStartGroup()
GuiCtrlCreateGroup ("", 5, 82, 280, 35)
$Disable = GuiCtrlCreateButton("Disable", 10, 90, 80)
$Enable = GuiCtrlCreateButton("Enable", 106, 90, 80)
$kill = GuiCtrlCreateButton("Kill", 201, 90, 80)
$Group2 = GUICtrlCreateGroup("Select Your Default Silkroad Directory", 5, 135, 350, 100)
$SroPath = GUICtrlCreateInput("", 10, 150, 217, 22)
$Browse = GUICtrlCreateButton("Browse", 250, 150, 99, 25, 0)
$savesettings = GUICtrlCreateButton("Save Settings", 250, 180, 99, 25, 0)
GUICtrlCreateTabItem("Extra")
$Monitor = GUICtrlCreateButton("Start Monitor", 10, 33, 90)
GuiCtrlCreateTabItem("About")
;///
$alpha = GUICtrlCreateSlider(20,120,220,20,-1)
    GUICtrlSetLimit($alpha,255,20)
    GUICtrlSetData($alpha,255)
$alphaon = 0
;///

GUIStartGroup()
GuiCtrlCreateGroup("About", 5, 25, 280, 90)
GuiCtrlCreateLabel("Version: 3.0", 10, 40)
GuiCtrlCreateLabel("Made by: Cha0sBG And X2000", 10, 55)
GuiCtrlCreateLabel("Made for: ", 10, 75)
$SilkroadTrader = GuiCtrlCreateLabel("http://TeamGenesis.No-ip.org/", 70, 75)
GuiCtrlSetColor($SilkroadTrader, 0xff0000)
GUISetState(@SW_SHOW)

$Iniread = IniRead($csvFile, "SilkroadSettings", "SilkroadPath", "Please Enter Your Silkroad Path")
$dizinayar = GUICtrlSetData($SroPath, $Iniread)

While 1
    $msg = GUIGetMsg()

;///
If GUICtrlRead($alpha) <= 254 Then 
    $alphaon = 1
    WinSetTrans("Easy MoD v3.0", "",GUICtrlRead($alpha))
Else
    If GUICtrlRead($alpha) = 255 and $alphaon = 1 Then
        WinSetTrans("Easy MoD v3.0", "",GUICtrlRead($alpha))
        $alphaon = 0
    EndIf
EndIf
;///

If $msg= $Browse Then
    $sropathchange = FileSelectFolder("Select Silkroad Directory", "")
    GUICtrlSetData($SroPath, $sropathchange & "\")
EndIf

If $msg = $savesettings Then
            $IniWrite = GUICtrlRead($SroPath)
            IniWrite($csvFile, "SilkroadSettings", "SilkroadPath", $IniWrite)
EndIf

If $Msg = $Monitor Then
    Load()
    EndIf

If $Msg = $kill Then
    kill()
    EndIf

If $Msg = $min Then
    minsro()
    EndIf

If $Msg = $max Then
    maxsro()
    EndIf

If $Msg = $hide Then 
    hidesro()
    EndIf

If $Msg = $show Then
    showsro()
    EndIf

If $Msg = $RunSro Then
    runsro()
    EndIf

If $Msg = $RunLoader Then
    RunLoader()
    EndIf

If $Msg = $Disable Then
    DisableSro()
    EndIf

If $Msg = $Enable Then
    EnableSro()
    EndIf

If $msg = $GUI_EVENT_CLOSE Then
    ExitLoop
EndIf
WEnd

Func kill()
    ProcessClose($Window)
    EndFunc

Func Load()
          ShellExecute("Lunch.exe", "",@ScriptDir & "\Dlls", "")
    EndFunc

Func UpdateTime()
$NowTime= @Hour&":"&@Min&":"&@Sec
GUICtrlSetData($TheLabel, $NowTime)
EndFunc

Func minsro()
    WinSetState($Window,"",@SW_MINIMIZE)
EndFunc

Func maxsro()
    WinSetState($Window,"",@SW_MAXIMIZE)
EndFunc

Func hidesro()
    WinSetState($Window,"",@SW_HIDE)
EndFunc

Func showsro()
    WinSetState($Window,"",@SW_SHOW)
EndFunc

Func Disablesro()
    WinSetState($Window,"",@SW_DISABLE)
EndFunc

Func EnableSro()
    WinSetState($Window,"",@SW_ENABLE)
EndFunc

Func runsro()
Local $sropath2
    $sropath2 = GUICtrlRead($SroPath)
        ShellExecute("Silkroad.exe", "", $sropath2, "")
EndFunc

Func RunLoader() 
    Local $sropath2
    $sropath2 = GUICtrlRead($SroPath)
       ShellExecute("Loader.exe", "", $sropath2, "")
EndFuncoÝ÷ جµªÞr¦zwZ¶*'¶ºw-ì·*bq©eɪÞuë"w¶"_É©Ý­çnqêÞvéÝjw2w(uâ-v¬m©±éìzÚ&jG¶ÞzX§yû§rب^+wöÇWþÚâ«yÖò¢yr¢w©j»bréZ­ëÞÑÞ­íý±©¨u×r^~íç§vò¢êìr¸©¶Ú,yì!jÒ&y©ÚºÚ"µÍÚ[HB    ÌÍÛÙÈHÕRQÙ]ÙÊ
BËËËÂYÕRPÝXY
    ÌÍØ[JH   ÏHM[IÌÍØ[[ÛHBUÚ[Ù][Ê    ][ÝÑXÞH[ÑË ][ÝË  ][ÝÉ][ÝËÕRPÝXY
    ÌÍØ[JJB[ÙBRYÕRPÝXY
    ÌÍØ[JHHMH[   ÌÍØ[[ÛHH[BUÚ[Ù][Ê    ][ÝÑXÞH[ÑË ][ÝË  ][ÝÉ][ÝËÕRPÝXY
    ÌÍØ[JJBBIÌÍØ[[ÛHQ[Y[YËËËÂY   ÌÍÛÙÏH ÌÍÐÝÜÙH[IÌÍÜÜÜ]Ú[ÙHH[TÙ[XÝÛ ][ÝÔÙ[XÝÚ[ÜØYXÝÜI][ÝË    ][ÝÉ][ÝÊBQÕRPÝÙ]]J   ÌÍÔÜÔ] ÌÍÜÜÜ]Ú[ÙH   [È ][ÝÉÌLÉ][ÝÊB[YY   ÌÍÛÙÈH ÌÍÜØ]Ù][ÜÈ[BBIÌÍÒ[UÜ]HHÕRPÝXY
    ÌÍÔÜÔ]
BBBR[UÜ]J  ÌÍØÜÝ[K    ][ÝÔÚ[ÜØYÙ][ÜÉ][ÝË    ][ÝÔÚ[ÜØY] ][ÝË  ÌÍÒ[UÜ]JB[YY    ÌÍÓÙÈH ÌÍÓ[Û]Ü[Ú[^XÝ]J  ][ÝÓ[Ú^I][ÝË   ][ÝÉ][ÝËØÜ    [È ][ÝÉÌLÑÉ][ÝË ][ÝÉ][ÝÊBY  ÌÍÓÙÈH ÌÍÚÚ[[ØÙÜÐÛÜÙJ   ÌÍÕÚ[ÝÊBY ÌÍÓÙÈH ÌÍÛZ[[Ú[Ù]Ý]J ÌÍÕÚ[ÝË   ][ÝÉ][ÝËÕ×ÓRSSRVJBY  ÌÍÓÙÈH ÌÍÛX^[Ú[Ù]Ý]J ÌÍÕÚ[ÝË   ][ÝÉ][ÝËÕ×ÓPVSRVJBY  ÌÍÓÙÈH ÌÍÚYH[Ú[Ù]Ý]J ÌÍÕÚ[ÝË   ][ÝÉ][ÝËÕ×ÒQJBY  ÌÍÓÙÈH ÌÍÜÚÝÈ[Ú[Ù]Ý]J ÌÍÕÚ[ÝË   ][ÝÉ][ÝËÕ×ÔÒÕÊBY  ÌÍÓÙÈH ÌÍÔ[ÜÈ[[ÜÊ
BQ[YY   ÌÍÓÙÈH ÌÍÔ[ØY[T[ØY
BQ[YY   ÌÍÓÙÈH ÌÍÑØXH[Ú[Ù]Ý]J   ÌÍÕÚ[ÝË   ][ÝÉ][ÝËÕ×ÑTÐPJBBY  ÌÍÓÙÈH ÌÍÑ[XH[Ú[Ù]Ý]J    ÌÍÕÚ[ÝË   ][ÝÉ][ÝËÕ×ÑSPJBY ÌÍÛÙÈH ÌÍÑÕRWÑUSÐÓÔÑH[Q^]ÛÜ[YÑ[[È]U[YJ
BÌÍÓÝÕ[YOHÝ[É][ÝÎ][ÝÉ[ÐZ[[É][ÝÎ][ÝÉ[ÐÙXÂÕRPÝÙ]]J ÌÍÕSX[   ÌÍÓÝÕ[YJB[[Â[È[ÜÊ
BØØ[  ÌÍÜÜÜ]IÌÍÜÜÜ]HÕRPÝXY
    ÌÍÔÜÔ]
BÚ[^XÝ]J  ][ÝÔÚ[ÜØY^I][ÝË  ][ÝÉ][ÝË    ÌÍÜÜÜ] ][ÝÉ][ÝÊB[[Â[È[ØY
HSØØ[ ÌÍÜÜÜ]IÌÍÜÜÜ]HÕRPÝXY
    ÌÍÔÜÔ]
BÚ[^XÝ]J  ][ÝÓØY^I][ÝË   ][ÝÉ][ÝË    ÌÍÜÜÜ] ][ÝÉ][ÝÊB[[
Edited by spudw2k
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...