• Warhammer Online Addons
  • Warhammer Online
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

Rolodex

 

Project Updated:
Files Updated: Sun, Oct 12 2008
Supports Game Version: Beta 3.0
Category: Mail
Tags:

[Edit Tags]

Project Manager: wobin
Additional Authors: curious_jp
Current Version: v1.4.4-Release
License: All Rights Reserved
Development Site: CurseForge
Avg Daily DL (last 30 days): 1
Downloads Total: 2,413
Favorites: 53
Comments: 26
  • Contests
  • About Rolodex
  •  

Offers a list of names from your guild/friendslist/alternate characters to insert into the "To" window

In the To field, hit 'Tab' to get a full listing of available names, or type in the first letter or so then 'Tab' to get a filtered list. Click on the name to make it the recipient of the mail.

Addon developers. If you want to use this list to propagate your email mods, use the following:

Rolodex.RegisterEditBox( WindowName, EditBoxObject, EditBoxName)

Rolodex.UnregisterEditBox( WindowName )

WindowName - is the name of the Window frame your editbox is in
EditBoxObject - is the object reference to your edit box
EditBoxName - Name of the object (basically the object in quotation marks)

to register your editbox to adjust Rolodex. Note, as we -don't- yet have Optional Dependancies, you can either make Rolodex a dependancy, or time the registration at a point where you will guess that Rolodex will have been loaded. Maybe on opening of the mailwindow, or a few seconds after load or something.

  • Downloads (7)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  Rolodex v1.36-Release Release Beta 3.0 98 10/6/2008
  Rolodex v1.35-Release Release Beta 3.0 72 10/6/2008
  • Screenshots (2)
  •  
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • Ludicrous said

    hey i have a question about the mod, its been working fine till yesterday or the day before. now when i close my mail the mod stays open instead of closing also like it use to. any ideas?

    Reply Report Permalink
  • Grobb said

    This has now stopped working in Bulk Item Mailer. I see that neither of you has updated in the last day, so I assume this is related to a mythic UI update and I have no idea which addon is 'at fault', just thoguht id let you know.

    Reply Report Permalink
  • Bhazir said

    Well I know zMailMod did an update yesterday. At first I also thought this addon had stopped working, but then checked the settings of zMailMod. There is a setting to auto-complete and a selection if it has to do that from zMailMod (build-in) or Rolodex or both. If you select one of those close your mailbox and then reopen it, the Rolodex window you should be back.

    Reply Report Permalink
  • valkyriee said

    Hello, I have not tried this addon yet but was wondering if it sends mass mail to guild, without selecting each guild member separately? I have been searching for one since guild mailing list addon was discontinued..
    Ty in advance!

    Reply Report Permalink
  • wobin said

    No.

    Reply Report Permalink
  • z00g said

    I think you could use the GuildWindow.IsPlayerInAGuild() function to determine if player is in a guild. Right now there's a constant info saying 'Waiting on server data...' for guildless chars.

    Another thing is using Rolodex.UnregisterEditBox generates an error:
    Bad Event: OnTextChanged does not exists. Maybe you could comment out this line until it's fixed?

    Reply Report Permalink
  • wobin said

    The error doesn't actually break anything =) I'd prefer to leave it in, so when they do fix it, it'll work instantly.

    I'll add the guild check.

    Reply Report Permalink
  • z00g said

    I'm a bit confused. According to the instruction we should use:

    Rolodex.RegisterEditBox(WindowName, EditBoxObject, EditBoxName)
    where:
    WindowName - is the name of the Window frame your editbox is in

    But in code you're registering these two events:

    WindowRegisterCoreEventHandler(WindowName, "OnKeyTab", "Rolodex.CheckInput")
    WindowRegisterCoreEventHandler(WindowName, "OnTextChanged", "Rolodex.CheckInput")

    That would suggest that WindowName should rather be the name of the EditBox itself. As a confirmation, there is a line you're using to register Rolodex for the Send Tab:

    Rolodex.RegisterEditBox("MailWindowTabSendToEditBox", MailWindowTabSendToEditBox, "MailWindowTabSendToEditBox")

    1st and 3rd args are the same. Can you clarify how to register an EditBox for Rolodex please?

    Another thing is that EditBoxes always stay visible, if you check:

    /script d(WindowGetShowing("MailWindowTabSendToEditBox"))

    while having opened any other tab than Send, you will still get 'true'. Because of that you are always processing every registered edit box and maybe that is the reason why problems occur with Rolodex.
    I noticed , that when I register zMailMod with Rolodex, the edit box on Tab Send stops working.

    Interesting thing is why "OnTextChanged" event is not working for you. I'll do some more test later.

    Reply Report Permalink
  • wobin said

    Try 1.4.3

    I can't use OnTextChanged on the original Send Tab without replacing the To field editbox with my own, and that's a little too fiddly for my liking, so I just use the tabkey trigger, while your custom windows can put the OnTextChanged in the XML and run it that way.

    Reply Report Permalink
  • wobin said

    I recall now.

    I added in those arguments because the Editbox was returning true for visible, whether or not the editbox was visible or not, so we had to switch to the actual window it was in, in order to determine if the editbox was shown or not.

    As for the OnTextChanged, it, at the moment, -cannot- be applied programatically, only through XML, but that code is there in case Mythic ever fix that bug, and allow the programmatic event logging of that event.

    I'll fix that function up.

    Reply Report Permalink
  • Hi there, for me the rolodex windows is just empty. If updated and deleted the variables as well, no change. :(

    Reply Report Permalink
  • wobin said

    Could I get a screenshot?

    Reply Report Permalink
  • z00g said

    wobin --> Can you provide a method to dynamic unregister Rolodex please? It's easy to register, but harder to get rid of ;) I've implemented autocompletion of names in zMailMod, but I want to give the users an option to either use built-in autocompletion or Rolodex (or both).

    Reply Report Permalink
  • Kilim said

    I have a list of names under the headers.
    Just that when I click on the name, it does not add it in the "To:" Field.
    Am I doing soemthign wrong?
    I would liek to Click the name in rolodex and have the "To:" Field in BulkItemMailer filled out.

    Reply Report Permalink
  • wobin said

    What version of BIM do you have running?

    Reply Report Permalink
  • Kilim said

    I am using v1.42

    Reply Report Permalink
  • Sniperumm said

    Clicking on the name in the BulkItemMail tab?

    As your typing the name Rolodex will constantly be looking for a result. The way the latest version (1.4.1) works you would need to expand a list header to see the outcome. You can then click on the name and it will populate the name field.

    Reply Report Permalink
  • Kilim said

    How can you make this work with BulkItemMailer?
    I see it and it works normally.
    But when I click on the name in teh BulkItemMail tab, it don't do anything.
    it works great for single items though.

    Reply Report Permalink
  • wobin said

    Guild info is not existant right on login, so I've got a message saying it's waiting for a response from the server. Just toggle that heading again til the guild list pops up.

    Reply Report Permalink
  • z00g said

    Same thing here no names at all. Hitting Tab helps tho.

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 24 zMailMod Mail
  2. 3 MailGrabber Mail
  3. 2 Branderic's Letter Opener Mail
  4. 2 QuickMailTool Mail
  5. 1 Bulk Item Mailer Mail