Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

2 questions.


emplay
 Share

Recommended Posts

  • 2 weeks later...
@emplay:

> 1\. how do i make the text box appear over the game screen.
>
> 2\. Can i make the screen the mas displayed in bigger? if so how.

1\. I dont understand what your asking.

2\. [http://www.touchofdeathforums.com/smf/index.php/topic,41446.0.html](http://www.touchofdeathforums.com/smf/index.php/topic,41446.0.html)
Link to comment
Share on other sites

ohh i think i can do that, i might try it out later: i did it heres how you do it:

Open up the Client

Go to FrmMirage

Drag the 2 text Boxes TxtChat and TxtMyChat Somewhere ontop of the Picscreen.

Then add this to Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer):

Find:
```
If KeyCode = vbKeyF1 Then
        If Player(MyIndex).Access > 0 Then
            frmAdmin.Visible = False
            frmAdmin.Visible = True
        End If
    End If
```
Underneath Add:
```
    If KeyCode = vbKeyReturn Then
        If txtMyTextBox.Visible = True Then
            txtMyTextBox.Visible = False
            txtChat.Visible = False
        Else
            txtMyTextBox.Visible = True
            txtChat.Visible = True
        End If
    End If
```   

All this Will make it so what is shown in teh Attached Happens.
Link to comment
Share on other sites

  • 2 weeks later...

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

×
×
  • Create New...