Difference between revisions of "User:Toy Wylie/Phoenix/Missing Notifications"

From Second Life Wiki
Jump to navigation Jump to search
(added file path)
(added NoSetRootPrimWithNoShape)
Line 61: Line 61:
   type="notifytip">
   type="notifytip">
  There is no suitable surface to sit on, try another spot.
  There is no suitable surface to sit on, try another spot.
  </notification>
  <notification
  icon="notifytip.tga"
  name="NoSetRootPrimWithNoShape"
  type="notifytip">
Cannot set root prim to have no shape.
   </notification>
   </notification>
   <!-- New message notifications - Toy Wylie -->
   <!-- New message notifications - Toy Wylie -->

Revision as of 13:53, 18 November 2012

Did you encounter strange messages in Phoenix lately? Messages that go like this:

Your version of the Phoenix Viewer does not know how to display the alert message it just received.

Error details: The alert called 'CantSitNoSuitableSurface' was not found in notifications.xml.

This means, Phoenix can't display the new messages sent by Linden Lab's servers. This is one sign of Phoenix getting more and more outdated every day.

However, there is a way to at least temporarily fix this particular issue, provided you are familiar and comfortable with editing XML files. Copy and paste the definitions below to the end of your notifications.xml (right before the final </notifications> tag), and you will at least not see the most common errors anymore. I will update the code snippet with more messages as I encounter them. And please, if you see new ones like this, send me the alert identifier, so I can try and add it to this list.

The path to the file is:

  • skins/default/xui/en-us/notifications.xml
 <notification
  icon="notifytip.tga"
  name="AutopilotCanceled"
  type="notifytip">
Autopilot canceled.
 </notification>

 <notification
  icon="notifytip.tga"
  name="JoinGroupSuccess"
  type="notifytip">
You have been added to the group.
 </notification>

 <notification
  icon="notifytip.tga"
  name="GroupDepart"
  type="notifytip">
You have left the group.
 </notification>

 <notification
  icon="notifytip.tga"
  name="toxicInvRezAttemptFailed"
  type="notifytip">
Attempt to rez an objet failed.
 </notification>

 <notification
  icon="notifytip.tga"
  name="HomePositionSet"
  type="notifytip">
Home position set.
 </notification>

 <notification
  icon="notifytip.tga"
  name="CantSitNoRoom"
  type="notifytip">
No room to sit here, try another spot.
 </notification>

 <notification
  icon="notifytip.tga"
  name="CantSitNoSuitableSurface"
  type="notifytip">
There is no suitable surface to sit on, try another spot.
 </notification>

 <notification
  icon="notifytip.tga"
  name="NoSetRootPrimWithNoShape"
  type="notifytip">
Cannot set root prim to have no shape.
 </notification>