View Single Post
  #4  
Old 08-17-2007, 11:30 PM
Relinquish Relinquish is offline
Banned
Join Date: Aug 2007
Posts: 7
Relinquish is on a distinguished road
Echoes nothing (guiref is treated as a string)
PHP Code:
DrawText(("TextTip"));

function 
DrawText(guiref) {
  echo(
guiref.position);

Echoes nothing (guiref is treated as a string)
PHP Code:
DrawText("TextTip");

function 
DrawText(guiref) {
  echo((@
guiref).position);

Echoes nothing (I'm not sure what it's getting, I'm assuming nothing)
PHP Code:
DrawText("TextTip");

function 
DrawText(guiref) {
  
with (guiref) echo(this.position);

TextTip is the name of a GuiDrawingPanel.
Reply With Quote