#[T-10] if you scroll down a crafting bench, or the claims window when you hover over an item the too

4 messages · Page 1 of 1 (latest)

cedar mesaBOT
#

On my crafting bench, the tooltip for items, don't appear next to items as I expect it to.

Bug report by Etaew

On my crafting bench, the tooltip for items, don't appear next to items as I expect it to.

#

Etaew: On my crafting bench, the tooltip for items, don't appear next to items as I expect it to.

#

EyadHany: hope it fixed

#

abbie: This bug was caused by the following change in the Crack the Court update:
"Collection tooltips will no longer fly off the top of the screen at odd window sizes."

Here's the fix for this in all relevant UIs.
(all var names are just based on the type of the variable since the decompiled functions don't have variable names)

crafting.swf :: RecipePane.as -> rollOverSlot():

  • Change the call at the end of the function to be the following:
    ExternalInterface.call("RECIPES.POINTER_ENTER", slotBasic.data, point.x, point.y);

collectionsnew.swf :: CollectableRow.as -> onSlotRollOver():

  • Change the call at the end of the function to be the following:
    ExternalInterface.call("OnSlotEnter", slot.data, point1.x + point2.x, point1.y);

[untested] claims.swf :: _kiwi.Controls.Slot.as -> handleRollOver():

  • Change the first ExternalInterface call to be the following:
    ExternalInterface.call("SLOT.POINTER_ENTER", this.data, point1.x + point2.x, point1.y);