forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Coloring the background for the menu items?

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help
View previous topic :: View next topic  
Author Message
noveltech
Contributor
Contributor


Joined: 16 Sep 2002
Posts: 105

PostPosted: Wed Oct 02, 2002 8:52 pm    Post subject: Coloring the background for the menu items? Reply with quote

Is there any way to use a colored background on a VDS
window behind the Menu's without using an extra DLL...?

Or...is there a way to use CLICK on a BMP and have a
drop down menu ?
Back to top
View user's profile Send private message
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Wed Oct 02, 2002 9:05 pm    Post subject: Reply with quote

You can use the CLICK style on a BITMAP
element, and have it cause a POPUP menu...

Or you can make your own custom menus using
child windows as shown here (even animated ones)
and use whatever background ya want.

http://www.vdsworld.com/forum/viewtopic.php?t=44&start=0

There's a few pages to this thread, I'd check them
all to see what improvements were added. Wink

Cheers, Mac Smile

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Wed Oct 02, 2002 9:26 pm    Post subject: Reply with quote

Here's a rough outline for a colored back for a menu...use the %%use_bitbtns variable to tell if you would like to use the BITBTNS...

Code:
Title Menu Demonstration
%%use_bitbtns = yes
if @equal(%%use_bitbtns,yes)
  DIALOG CREATE,Menu Demonstration,-1,0,240,160
  DIALOG ADD,STYLE,MB,,,,LIME,
  DIALOG ADD,GROUP,sep,23,0,241,2
  DIALOG ADD,BITBTN,File,2,2,32,18,,File
  DIALOG ADD,BITBTN,About,2,38,32,18,,About
  DIALOG ADD,TEXT,DialogT,60,68,51,13,DialogText
  DIALOG ADD,SHAPE,SHAPE1,75,70,,,WHITE,BLACK,,SQUARE
  DIALOG ADD,TEXT,MBACK,0,0,240,24,,,MB
  DIALOG SHOW
  else
  DIALOG CREATE,Menu Demonstration,-1,0,240,160
  DIALOG ADD,STYLE,MB,,,L,LIME,
  DIALOG ADD,GROUP,sep,23,0,241,2
  DIALOG ADD,TEXT,DialogT,60,68,51,13,DialogText
  DIALOG ADD,SHAPE,SHAPE1,75,70,,,WHITE,BLACK,,SQUARE
  DIALOG ADD,TEXT,MBACK,0,0,240,24,,,MB
  DIALOG ADD,TEXT,File,5,7,26,13,File,,TRANSPARENT,CLICK
  DIALOG SHOW
  end
:Evloop
  wait event
  goto @event()
:FileCLICK
:FileBUTTON
  dialog popup,&Menu Item 1|M&enu Item 2|E&xit
  goto evloop
:AboutBUTTON
  dialog popup,A&bout
  goto evloop
:AboutMENU
  info By FreezingFire...
  goto evloop
:Menu Item 1MENU
:Menu Item 2MENU
  info Menu Item Event
  goto evloop
:ExitMENU
:Close
  exit

_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Thu Oct 03, 2002 12:18 am    Post subject: Reply with quote

Ya might also want to check this for some ideas,
but it may look different in VDS4:

http://www.vdsworld.com/forum/viewtopic.php?t=746

Cheers, Mac Smile

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group