Page 3 of 4 FirstFirst
1
2
3
4
LastLast
  1. #41
    These links were great, wish they weren't broken!

  2. #42
    Deleted
    Point out which ones are broken, then I can fix them.

  3. #43
    Are they broken?

  4. #44
    Scarab Lord
    15+ Year Old Account
    Join Date
    Aug 2008
    Location
    Texas
    Posts
    4,040
    I tried them all earlier this month - all of the ones in the OP are working. The ones in later replies usually don't - but they've been copied and then fixed into the OP.

  5. #45
    Deleted
    Thanks Was very useful.

  6. #46

    Talking New Guides

    I've started doing WoW guides starting with some basics as found on my youtube channel (NavarrJenkins). Recent ones include a basic guide for LUI setup and Warlord Zon'ozz strategy guide. It'd be great if some of you could check them out and offer some constructive criticism, if you find them good thumbs up and comment on them, etc. I'm new at making such videos and want to learn and improve my guide and video making. I'd link but I'm also new to the forum here so I'll have to wait until it unlocks.

    Thanks and have fun gaming!

  7. #47
    Deleted

  8. #48
    Deleted
    I'm currently in the process of writing a tutorial on creating an ingame addon panel using Blizzard UIPanel- and OptionTemplates.

    Tutorial-Thread:
    http://www.wowinterface.com/forums/s...ad.php?t=40444

    When finished there will be a sceleton addon which includes panels, frames, buttons, dialogs and a database connection.

    Test addon spawning buttons, sliders, editboxes and scrollframes using Blizzard templates:
    http://code.google.com/p/rothui/sour...k/wow5.0/rTest

    Test addon spawning a frame panel with tabs using Blizzard frame templates:
    http://code.google.com/p/rothui/sour...5.0/rTestPanel

    If you got any question just let me know.
    Last edited by mmoc48efa32b91; 2013-02-07 at 10:18 AM.

  9. #49
    Deleted
    Tell me when you're done and I'll add you to the OP.

  10. #50
    Deleted
    Is there any tutorial out there for STUF raid?
    I just don't get it, when i try to change the texture, width, hight, well anything in the raids healthbars nothing happens.
    I can't customize anything but the raid frames position-.-
    Is it broken or?

  11. #51
    Grunt
    10+ Year Old Account
    Join Date
    Mar 2013
    Location
    Thessaloniki, Greece
    Posts
    21
    Does anyone know a way to add more fonts in your UI without having to add more addons? If my question does not make sense let me give you an example... Deleting SuF from my addon list deleted a certain font type i was using so my question is: Is there a way to have more font options or do they come with certain addons?

  12. #52
    You're going to need an addon - but that doesn't mean it has to be particularly "big" in order to do it. You could even write it yourself because it's only about 10 lines long. The basic idea is:
    1. Make a folder in interface/addons - for example, call it "FontAdder".
    2. Make a file inside of interface/addons/FontAdder called "FontAdder.toc" that contains
    Code:
    ## Iterface: 50200
    ## Name: FontAdder
    ## Notes: Adds some fonts to shared media
    FontAdder.lua
    3. Put the fonts you want to add into FontAdder folder
    4. Make a file inside of interface/addons/FontAdder called FontAdder.lua that contains:
    Code:
    local LSM3 = LibStub("LibSharedMedia-3.0", true)
    if not LSM3 then return end
    LSM3:Register("font", "FONTNAMEGOESHERE", [[Interface\Addons\FontAdder\FONTFILENAMEGOESHERE.ttf]])
    You can repeat the last line for each font you want to add to your interface.

    If you have any addons installed at all then it's almost certain they're going to come with libstub and libsharedmedia3 so that's all you really need to make it work.

    If you don't like doing all of this work by hand then you can use the addon "SharedMedia" to create "SharedMedia_MyMedia". Keep in mind that shared media is bundled with several fonts and textures so you'll get that stuff for free. Still, it makes it fairly easy to add fonts and other elements to your interface (unless you're on a mac: then you're on your own).

    I just finished a video about doing this - it's in the queue to come out some time this week but I could bump it up if you really wanted to see it.

  13. #53
    Deleted
    I wrote myself a string icon archive.



    You can use textures in any string using http://www.wowwiki.com/UI_escape_sequences#Textures.

    For more read this: http://www.wowinterface.com/forums/s...083#post276083

    Example:
    Code:
    local stringIcon = "|TInterface\\GroupFrame\\UI-Group-MasterLooter:14:14:0:0|t"
    print(stringIcon)
    myFontString:SetText(stringIcon)
    Last edited by mmoc48efa32b91; 2013-04-10 at 09:03 AM.

  14. #54
    Deleted
    Created a guide for setting up PlateBuffs & TidyPlates to show spell icons above TidyPlates nameplates.

    Wonder if it would interest anyone here.. http://youtu.be/YAjXJT0lKwY

  15. #55
    Quote Originally Posted by Zenvon View Post
    Created a guide for setting up PlateBuffs & TidyPlates to show spell icons above TidyPlates nameplates.

    Wonder if it would interest anyone here.. http://youtu.be/YAjXJT0lKwY
    PlateBuffs MoP is no longer being maintained, so that guide might not remain relevant for long unless picked up by someone else.
    Quote Originally Posted by DeadmanWalking View Post
    Your forgot to include the part where we blame casuals for everything because blizzard is catering to casuals when casuals got jack squat for new content the entire expansion, like new dungeons and scenarios.
    Quote Originally Posted by Reinaerd View Post
    T'is good to see there are still people valiantly putting the "Ass" in assumption.

  16. #56

  17. #57
    Grunt Halkkirgamed's Avatar
    7+ Year Old Account
    Join Date
    Jul 2015
    Location
    Capital Federal, Buenos Aires, Argentina
    Posts
    18
    THank you so much for this!Its much easier to have it condensed in one place than to look around everywhere

  18. #58
    Deleted
    Thanks for these links !

  19. #59
    Wow, this list is really useful. Thank you.

  20. #60
    I love it!Really!

    - - - Updated - - -

    I agree with you

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •