# Send Actor Message As Text Via Name
Grammar — Send message to the name actor of actor
Flags —Native
|Action
Sends an actor message to an actor that is related to another actor. The Actor parameter is used to specify the primary actor, and the Name parameter is used to specify a reference (such as ::Host) that will derive a secondary actor from the primary actor. The message gets sent to the secondary actor. An actor message will perform an action and/or trigger an event on the actor it is sent to.
# Arguments
actor
— Actorstring
— Nametext
— Message
Returns — void
native void ActorSendToAsText(
actor a,
string refName,
text msg,
);
# Related
Category: Actor / Send Actor Messages
- Send Actor Message —
void
— ActorSend - Send Actor Message As Text —
void
— ActorSendAsText - Send Actor Message To Unit —
void
— libNtve_gf_SendActorMessageToUnit - Send Actor Message To Scope —
void
— ActorScopeSend - Send Actor Message To Actor Region —
void
— libNtve_gf_ActorRegionSendSimple - Send Actor Message To Actor Region With Filters —
void
— ActorRegionSend - Send Actor Message To Game Region —
void
— libNtve_gf_SendActorMessageToGameRegion - Send Actor Message To Game Region With Filters —
void
— libNtve_gf_SendActorMessageToGameRegionWithFilters - Send Actor Message Via Name —
void
— ActorSendTo - Send Actor Message As Text Via Name —
void
— ActorSendToAsText
# Examples
— None found —