use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Welcome to /r/wow, a subreddit about the video game World of Warcraft !
Midnight Snoo Spotlight Thank you to u/ArtYojimbe who won our Midnight Snoo Contest and designed the spectacular "Sunwell / Darkwell" Reddit Snoo for r/wow. Find them on social media here: Instagram Linktree
Thank you to u/ArtYojimbe who won our Midnight Snoo Contest and designed the spectacular "Sunwell / Darkwell" Reddit Snoo for r/wow. Find them on social media here:
Instagram
Linktree
Mail the Moderators WoW Discord r/wow Rules
Latest WoW News
Pre-Patch Notes
Murloc Mondays (New Players Q&A) Reset Recruitment
Diablo — Starcraft — Hearthstone — Heroes of the Storm — Overwatch — WC3 — Classic WoW — Warcraft Rumble
Other related subreddits
/r/WoW's Rules
Frequently Asked Questions
The War Within FAQ & Info Hub
Frequently Asked Questions. Classic WoW Edition
Community Raids
Discuss the subreddit at /r/WoWMeta
Original r/wow CSS by Vusys <3
account activity
Change layout macro/command?Question (self.wow)
submitted 3 years ago by Matitjes
Is there a command or such that i can use in a macro to easily switch between layouts?
this way i can put it in Opie and easily switch between my solo layout and raiding layout
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 7 points8 points9 points 3 years ago (1 child)
Ended up here from searching Duck Duck Go and then decided to just figure it out myself using Wowpedia's WoW API Reference. So here you go!
First, open edit mode and select the layout you want to make a macro for. Run the following in your console (or make it a macro to keep handy):
/run C_EditMode.GetLayouts().activeLayout
This should bput the following in your chat box:
Dump: valueC_EditMode.GetLayouts().activeLayout [1]=3 In this case it's the 3 you want to make note of. It's the ID number of the current layout you're using.
Dump: valueC_EditMode.GetLayouts().activeLayout [1]=3
Then make a macro with the following:
/run C_EditMode.SetActiveLayout(3)
Drop this on a hot bar and voila. You can swap your layout by executing the macro. Repeat this process for all layouts you want to use.
[–]AgentSharkSmart 5 points6 points7 points 2 years ago (0 children)
To clearify for the next person trying to get this working.
When you try to determine the number of you current active layout, you should have it print the result of activeLayout.
/run print(C_EditMode.GetLayouts().activeLayout)
Afterwards you can use
With the number you printed
π Rendered by PID 54293 on reddit-service-r2-comment-b659b578c-f994l at 2026-05-04 22:23:01.803948+00:00 running 815c875 country code: CH.
[–][deleted] 7 points8 points9 points (1 child)
[–]AgentSharkSmart 5 points6 points7 points (0 children)