Index · Preferences · Help
Announcements · BYOND Features · Bug Reports · Fixes and Features · Developer How-To · Code Problems · Design Philosophy · Creations · Classified Ads · Gaming · Computers & Technology · Community
Forum Search:

[Advanced Search]

[Messages in this Thread] [Show All (18)] [Return to Developer How-To]

Author:Kaioken [Posts]
Date:11/5/09 5:47 pm
Topic:Re: menu using arrow keys
Post ID:725916
Parent ID:725866
Next ID:725874
Garthor wrote:
    cursor = new /obj
    //instead of giving it an icon, use an image so only we can see it
    var/image/I = new(cursor)
    src << I

Pardon me if I missed something since I didn't read the whole thread, but you shouldn't need to use a dummy obj for this. /images can be moved around/reattached freely (without needing to be recreated), so all you need to represent the cursor here is the /image itself.
client
   var/image/cursor
   proc/SetCursor(atom/target)
      if(cursor) cursor.loc = target 
      else cursor = new('cursor.dmi',target)

Messages in this Thread: [Show All (18)]

  menu using arrow keys EternalStudent (11/5/09 2:50 am)
      Re: menu using arrow keys Garthor (11/5/09 2:52 am)
          Re: menu using arrow keys EternalStudent (11/5/09 2:55 am)
              Re: menu using arrow keys Garthor (11/5/09 3:00 am)
                  Re: menu using arrow keys EternalStudent (11/5/09 3:14 am)
                      Re: menu using arrow keys Garthor (11/5/09 12:15 pm)
                          Re: menu using arrow keys Kaioken (11/5/09 5:47 pm)
                          Re: menu using arrow keys EternalStudent (11/5/09 1:11 pm)
                              Re: menu using arrow keys Garthor (11/5/09 1:12 pm)
                                  Re: menu using arrow keys EternalStudent (11/5/09 1:59 pm)
                                      Re: menu using arrow keys Garthor (11/5/09 4:47 pm)
                                  Re: menu using arrow keys ArcaneDragonX (11/5/09 1:23 pm)
                      No Topic EternalStudent (11/5/09 10:15 am)
                          Re: No Topic Apocaliptic (11/5/09 11:07 am)
                              Re: No Topic EternalStudent (11/5/09 11:17 am)
                                  Re: No Topic Apocaliptic (11/5/09 11:41 am)
                                      Re: No Topic Garthor (11/5/09 12:38 pm)
                                      Re: No Topic EternalStudent (11/5/09 11:57 am)