Difference between revisions of "LlAllowInventoryDrop/zh-Hant"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with "{{Issues/SVC-4685}}{{LSL_Function/zh-Hant|func_id=176|func_sleep=0.0|func_energy=10.0 |func=llAllowInventoryDrop|sort=AllowInventoryDrop |p1_type=integer|p1_name=add|p1_desc=bool…")
 
 
Line 8: Line 8:


An application might be a public "suggestion box" that you want to let people drop notecards into.  
An application might be a public "suggestion box" that you want to let people drop notecards into.  
|func_desc=Allows for all users without modify permissions to add inventory items to a prim.
|func_desc=可讓所有玩家丟物品至此prim。無論玩家有無modify的權限
|return_text
|return_text
|spec
|spec

Latest revision as of 20:25, 7 May 2011

概要

函式: llAllowInventoryDrop( integer add );
176 函式ID
0.0 延遲
10.0 能量

可讓所有玩家丟物品至此prim。無論玩家有無modify的權限

• integer add boolean值,若為TRUE,則可讓任何玩家丟物品至此prim中,無論玩家有無modify的權限。若為FALSE則只有擁有modify權限的玩家可丟物品至此prim中。

To actually do the dropping, you need to drag an item from your inventory and drop it onto the prim WHILE holding down your Ctrl key. If you've got everything right, then just before you release it, you will see the prim framed in red.

Ownership of the dropped inventory item changes to the owner of the prim. Next owner permissions kick in on the item that was dropped in. Non-transfer items cannot be dropped into a prim owned by someone else.

An application might be a public "suggestion box" that you want to let people drop notecards into.

注意事項

  • Scripts are an exception to what is allowed to be dropped in. If a user without modify permissions to a prim attempts to drop a script into it, the inventory addition is rejected and the prim shouts (sic -- shouts, not says) "Not permitted to edit this!" This is for obvious security reasons. If you own the prim and have mod rights to it, you can drop a script in. Friends who have mod rights to your stuff can also drop scripts in.
  • Will not work if, under the Object tab on the prim, "Locked" is ticked.
  • Bear in mind when dropping a texture into a prim to be sure (a) that you see a red box framing the target prim, and (b) not to release the Ctrl button until you are sure that the texture is actually inside the box. If you see a white frame instead, or release Ctrl too soon, the texture will instead be applied to the prim face that you were on.
  • There is no way to tell who dropped the item in. If you really need to know, consider making the user touch the prim first to turn the llAllowInventoryDrop on, and then grab the user's information from the touch event, and then set it back to FALSE through a timer.
  • Nor is there any way based on just llAllowInventoryDrop to tell *what* the user dropped in. See WhoAddedWhat script to handle that.
  • Ordinary end-users may face challenges when confronted with actually performing the drag and drop. See the section below.
  • People with modify rights to your (modifiable) stuff can do this anyway, as can you, even without the presence of llAllowInventoryDrop.
  • Even if you own the prim, but don't have modify rights to it, you cannot drop anything at all into it, ever, unless the creator put in it an llAllowInventoryDrop(TRUE) first before passing it to you.
  • If you have a prim that you don't have mod rights to, but that the creator did set an llAllowInventoryDrop(TRUE) in, that even though you can drop stuff in, you will never be able to delete it! You can however move it to your inventory.

llAllowInventoryDrop and Everyday Users

  • If you want someone to drag and drop notecards into a suggestion box, say, or whatever, you have to both invite them to do so, and explain how to do it (the holding down of the Ctrl key being essential to communicate.)
  • A fair bit of fine motor skill is required to do this. Someone who doesn't have this, either because of failing or unsteady hands, or using a trackpad on a laptop in an awkward seated position, may not be able to perform this operation accurately.
  • If you sell a user something such as, say, a gift box, which you instruct them to fill via inventory drag and drop, bear in mind that there is often many a slip betwixt inventory and prim, and the user may by mistake (in this example) drag the gifts in question into a piece of the bow instead, and then panic when s/he doesn't see them in the main part of the giftbox. (Remember: if they have mod rights to the prim, they can drag and drop stuff into any part of the prim, regardless of whether there is an llAllowInventoryDrop in it or not.) You may wish to suggest instead that the user right-click the prim, choose open, and drag and drop stuff onto the "Open" Object Contents window -- a much larger, safer target.

Important Issues

~ All Issues ~ Search JIRA for related Bugs
   Not possible to drop inventory into objects which are using an full alpha texture (when highlight transparent is disabled)

範例

When llAllowInventoryDrop is set to TRUE, the event that occurs is:

<lsl>

changed(integer change) {
       if (change & CHANGED_ALLOWED_DROP) { 

llSay(0, "Your contribution is appreciated, o ye non-permitted modifier!");

       }
   }

</lsl>

When llAllowInventoryDrop is set to FALSE, the event that occurs is:

<lsl>

changed(integer change) {
       if (change & CHANGED_INVENTORY) { 

llSay(0, "Your contribution is appreciated, o ye permitted modifier!");

       }
   }

</lsl>

Tip! To test for either changed event, the proper syntax is:

<lsl> changed(integer change) {

if ((change & (CHANGED_ALLOWED_DROP

參照

事件

•  changed CHANGED_ALLOWED_DROP

Deep Notes

All Issues

~ Search JIRA for related Issues
   Not possible to drop inventory into objects which are using an full alpha texture (when highlight transparent is disabled)