BTW, most (if not all) quests that use the VehicleMenuBarActionButton#:Click() do not work anymore. This button was changed to OverrideActionBarButton#. I have tested that this is the name of the button in both Default UI and Bartender.
The quest "Graduation Speech" in Hyjal (ID: 25315) and the quest "Keep Them off the Front" in Deepholm do not work.
See Error (and framestack) here:
imgur: the simple image sharer
Note: The 17 progress on the quest was from me doing it manually.
For the deepholm quest, changing:
Code:
<While Condition="((HasQuest(26755)) && (!IsQuestCompleted(26755)))" >
<CustomBehavior File="Misc\RunLua" Lua="VehicleMenuBarActionButton1:Click()" WaitTime="0" />
</While>
to:
Code:
<While Condition="((HasQuest(26755)) && (!IsQuestCompleted(26755)))" >
<CustomBehavior File="Misc\RunLua" Lua="OverrideActionBarButton1:Click()" WaitTime="0" />
</While>
fixed the problem.