crpl:docs:setpopuptext

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
crpl:docs:setpopuptext [2013/10/17 17:06] Captain Fordcrpl:docs:setpopuptext [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-~~DISCUSSION~~ + 
-<- [[crpl:crplreference|CRPL reference]] <- [[crpl:crplreference#utility_commands|Utility Commands]]+<- [[crpl:crplreference|CRPL reference]] <- [[crpl:crplreference#text_commands|Text Commands]]
 =====  SetPopupText  ===== =====  SetPopupText  =====
  
Line 9: Line 9:
 === Description === === Description ===
 SetPopupText creates a mouse-over text for the unit the script is attached to. SetPopupText creates a mouse-over text for the unit the script is attached to.
 +
 +If you want the mouse-over text to combine variables and strings, see the [[crpl:docs:concat|concat]] function.
 === Examples === === Examples ===
 +Set a mouse-over text of "Hello" 
 <code> <code>
-Sets a mouse-over text of "Hello" +#Standard Notation
 "Hello" SetPopupText "Hello" SetPopupText
 +
 +#Warp Notation
 +SetPopupText ("Hello")
 </code>  </code> 
 +
 +Create a unit text tooltip, based on values from variables within said unit, by concatenating values and strings together.
 +
 +The reason there is an endline here: "**endl**Interval: " is to add a new line to the string.
 <code> <code>
-# Sets a mouse-over text of "Hellousing Warp notation +once 
-SetPopupText ("Hello" +   @awake 
-</code> +endonce 
 + 
 +:awake 
 +64 ->power 
 +30 ->interval 
 +42 ->cookies 
 + 
 +"" ->tooltipText 
 +<-tooltipText "Power: concat <-power concat ->tooltipText 
 +<-tooltipText " 
 +Interval: " concat <-interval concat ->tooltipText 
 +<-tooltipText " 
 +Cookies: " concat <-cookies concat ->tooltipText 
 + 
 +<-tooltipText SetPopupText 
 +</code>
crpl/docs/setpopuptext.1382029587.txt.gz · Last modified: 2025/02/14 14:56 (external edit)