View unanswered posts | View active topics It is currently Sat May 25, 2013 1:36 pm

Forum rules


Before posting make sure you have done the following:
  • Checked for an update
  • Read the plugin's supplied documentation
  • Read the General Plugin FAQ
  • Read the plugin's FAQ

Only moderators can post a new topic, so if you have a new plugin, create a thread in the BB4Win forum and we'll move it for ya.



Post new topic Reply to topic  [ 151 posts ]  Go to page Previous  1 ... 4, 5, 6, 7, 8, 9, 10, 11  Next
 BBInterface 
Author Message
BBDinosaur
User avatar

Joined: Mon Nov 05, 2007 3:39 pm
Posts: 732
Reply with quote
Post Re: BBInterface
Yet another bug? Am I doing something wrong? Or is it even supposed to work like this?

I'm working on this style and it has settings for text shadows. I disabled those by changing the x and y values to 0.
Yet all my bbi labels have a text shadow (the one that doesn't was set to 0/0 via the bbi-label's menu). Incidentally, it doesn't seem to matter what value I put in there at all, even at 5/5 (in the style) it looks still the same. The label menu always stays at 1/1.


Attachments:
shadows.jpg
shadows.jpg [ 37.76 KiB | Viewed 1721 times ]
Fri Jan 09, 2009 6:42 pm
Report this post
Profile
Sponsored Links
Google Adsense


Moderator
User avatar

Joined: Sun Feb 04, 2007 2:57 pm
Posts: 1008
Location: austria
Reply with quote
Post Re: BBInterface
Niniel wrote:
I'm working on this style and it has settings for text shadows. ...The label menu always stays at 1/1.
Sounds like the bbLeanMod model for shadows ..... hard-coded @ 1/1.

_________________
HTH

unkamunka - #bb4win


Sun Jan 11, 2009 7:46 am
Report this post
Profile
BBAdult

Joined: Thu Jul 24, 2008 6:02 pm
Posts: 24
Reply with quote
Post show the time/clock in bbinterface..
i was looking for a way on showing the time/clock on bbinterface but still havent found any..
anyone know how to do it?


Tue Jan 20, 2009 8:05 am
Report this post
Profile
Moderator
User avatar

Joined: Sun Feb 04, 2007 2:57 pm
Posts: 1008
Location: austria
Reply with quote
Post Re: show the time/clock in bbinterface..
There is no time/clock in bbinterface.

What are you trying to say? Perhaps a screenshot would tell us more.

_________________
HTH

unkamunka - #bb4win


Tue Jan 20, 2009 8:59 am
Report this post
Profile
BBSage
User avatar

Joined: Sun Dec 18, 2005 11:30 am
Posts: 116
Reply with quote
Post Re: show the time/clock in bbinterface..
Black9White wrote:
i was looking for a way on showing the time/clock on bbinterface but still havent found any..
anyone know how to do it?


Create New Control -> Label
Control Options -> Caption -> Clock
You can choose what will clock show (time, date) by editing „Clock Format”
Of course, only digital clock.


Tue Jan 20, 2009 11:49 am
Report this post
Profile
BBDinosaur
User avatar

Joined: Mon Nov 05, 2007 3:39 pm
Posts: 732
Reply with quote
Post Re: show the time/clock in bbinterface..
You can also create a button with a clock as the text on it, which you can then use to perform actions when you left- a/o right-click on the clock.
Or you can create a frame and load a clock plugin into it, or load a bar into it, although the latter might be overkill for just a clock. :)


Tue Jan 20, 2009 2:01 pm
Report this post
Profile
BBSage
User avatar

Joined: Sat Oct 20, 2007 2:15 pm
Posts: 171
Location: Parry Sound, Ontario, Canada, Earth
Reply with quote
Post Re: show the time/clock in bbinterface..
I may just be thick... but, how do you load a plugin into a BBI frame Niniel?

_________________
This is my signature. There are many like it. But this one is mine.
[xp64 \ WS2008-E x64 / SuSe 10.3] [A8N-SLI Premium] [Opteron 170] [2x Zotac 8800GT AMP! 512mb] [blackbox : bbclean {waiting: xob-4}]


Tue Jan 20, 2009 3:52 pm
Report this post
Profile
BBDinosaur
User avatar

Joined: Mon Nov 05, 2007 3:39 pm
Posts: 732
Reply with quote
Post Re: show the time/clock in bbinterface..
<ctrl> + right-click on the frame
control options
plugins
load plugin...

:)


Tue Jan 20, 2009 6:01 pm
Report this post
Profile
BBDinosaur

Joined: Thu Dec 09, 2004 5:18 pm
Posts: 491
Reply with quote
Post Re: BBInterface
Niniel wrote:
This is odd.
When I set up a (system) volume control with a hidden percentage label as described by Ser, then, when I also have a volume control slider in the right-click menu, and use that slider, the hidden percentage label will become visible, and stay visible until the other volume control is used again.
And the percentages don't match, either, until you get up to 95 %.
Is that why you used the "0 0 2" scale?
I was without Internet for months, sorry for only now give you an answer.
And the answer is: I don't know.
I just follow the instructions that ctrl+right click gives me when creating a frame that shows the volume percentage. :)
Maybe have something to do with my mixer or soundcard and the way it is controlled?

I have two volume controls:
The first is for the Master Volume:
Code:
!---- CoverArt::VolumePerc1 ----
@BBInterface Control CreateChild CoverArt Label VolumePerc1
@BBInterface Control SetWindowProperty VolumePerc1 X 55
@BBInterface Control SetWindowProperty VolumePerc1 Y 793
@BBInterface Control SetWindowProperty VolumePerc1 Width 46
@BBInterface Control SetWindowProperty VolumePerc1 Height 20
@BBInterface Control SetWindowProperty VolumePerc1 Border true
@BBInterface Control SetWindowProperty VolumePerc1 IsVisible false
@BBInterface Control SetWindowProperty VolumePerc1 Style "Toolbar"
@BBInterface Control SetControlProperty VolumePerc1 HAlign "Center"
@BBInterface Control SetControlProperty VolumePerc1 VAlign "Center"
@BBInterface Control SetAgent VolumePerc1 Caption MixerScale "0 0 2"


And the other is for Som Wave Volume:
Code:
!---- CoverArt::VolumePerc2 ----
@BBInterface Control CreateChild CoverArt Label VolumePerc2
@BBInterface Control SetWindowProperty VolumePerc2 X 55
@BBInterface Control SetWindowProperty VolumePerc2 Y 771
@BBInterface Control SetWindowProperty VolumePerc2 Width 46
@BBInterface Control SetWindowProperty VolumePerc2 Height 20
@BBInterface Control SetWindowProperty VolumePerc2 Border true
@BBInterface Control SetWindowProperty VolumePerc2 IsVisible false
@BBInterface Control SetWindowProperty VolumePerc2 Style "Toolbar"
@BBInterface Control SetControlProperty VolumePerc2 HAlign "Center"
@BBInterface Control SetControlProperty VolumePerc2 VAlign "Center"
@BBInterface Control SetAgent VolumePerc2 Caption MixerScale "0 -65536 0"
Both are working nicelly.


Tue Jan 20, 2009 7:28 pm
Report this post
Profile YIM
BBAdult

Joined: Thu Jul 24, 2008 6:02 pm
Posts: 24
Reply with quote
Post Re: show the time/clock in bbinterface..
Zygzak wrote:
Black9White wrote:
i was looking for a way on showing the time/clock on bbinterface but still havent found any..
anyone know how to do it?


Create New Control -> Label
Control Options -> Caption -> Clock
You can choose what will clock show (time, date) by editing „Clock Format”
Of course, only digital clock.



i did that but in my bbinterface theres no clock in the caption


Wed Jan 21, 2009 9:48 am
Report this post
Profile
BBSage
User avatar

Joined: Sun Dec 18, 2005 11:30 am
Posts: 116
Reply with quote
Post Re: show the time/clock in bbinterface..
Use this:
http://www.kazmix.com/upload/bbinterfaceMod_iTunes.zip


Wed Jan 21, 2009 11:26 am
Report this post
Profile
BBSage
User avatar

Joined: Sun Dec 18, 2005 11:30 am
Posts: 116
Reply with quote
Post Re: BBInterface
Kazmix released new version of bbInterface Itunes Mod

Kazmix, Google translated wrote:
Abruptly bbinterfaceMod_iTunes has been upgraded

Changes and write ZAKKURI

Border - Border can be specified
iTunes - Add a few iTunes-related
Artwork - Artwork can determine the presence of Rating. ButtonPressed Rating (rate) in the style to handle the Button and add the ability to store PressedButton be added to the workspace
bug fix (Locale settings or Miss)


Save the workspace to display features are enabled when you check the display removed workspace.
Workspace1 Until now, the specification for each load was so Workspace1 placed in a different place every workspace, that I was not real.
That was not noticed at all.

Border - The designation of the Border, for each item, border now possible to specify the color and width.


http://www.kazmix.com/cside.php
http://www.kazmix.com/upload/bbinterfaceMod_iTunes.zip


Wed Jan 21, 2009 11:34 am
Report this post
Profile
BBDinosaur
User avatar

Joined: Mon Nov 05, 2007 3:39 pm
Posts: 732
Reply with quote
Post Re: BBInterface
Hello,

Can somebody please explain to me the difference between the PageFileFree and the VirtualMemoryFree sensors?
While the former showed a value of 57, the latter is 3 %. Page file size is 756 MB, RAM is 500 MB (on-board graphics), with 90 % used at the moment.

Thank you.


Wed Jan 21, 2009 6:06 pm
Report this post
Profile
BBSage
User avatar

Joined: Sat Oct 20, 2007 2:15 pm
Posts: 171
Location: Parry Sound, Ontario, Canada, Earth
Reply with quote
Post Re: BBInterface
Virtual memory is the memory that the application [blackbox] sees as contiguous and can use.

The pagefile is the place where that virtual memory is stored in case of application failure to ensure settings and work don't get corrupted in a application crash. It also allows programs to use the system RAM and 'page' [store] the current contents of the RAM for background programs on disk to be read to RAM later when you use that program again.

So, you have 57% of your pagefile free and 3% of your Virtual memory free.

_________________
This is my signature. There are many like it. But this one is mine.
[xp64 \ WS2008-E x64 / SuSe 10.3] [A8N-SLI Premium] [Opteron 170] [2x Zotac 8800GT AMP! 512mb] [blackbox : bbclean {waiting: xob-4}]


Wed Jan 21, 2009 8:29 pm
Report this post
Profile
BBDinosaur
User avatar

Joined: Mon Nov 05, 2007 3:39 pm
Posts: 732
Reply with quote
Post Re: BBInterface
I'm afraid that doesn't make sense to me.
If I were to follow your logic, then I have 750 + 500 MB of memory for a total of 1250 MB of virtual RAM. So if the page file was 50 % full, then about 330 MB would still be available, and the total free "virtual memory" should read at least 25 %, not 3 %.

Unfortunately, the PageFileFree sensor doesn't have a unit of measurement, it just shows a number, so I'm not sure if that's really percent or maybe MB or what the heck else.

MB would make a lot more sense, although even then it doesn't quite add up - 50 MB is about 4 %.
But would Windows really let the page file fill up that much without enlarging it?


Wed Jan 21, 2009 9:39 pm
Report this post
Profile
Sponsored Links
Google Adsense


Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 151 posts ]  Go to page Previous  1 ... 4, 5, 6, 7, 8, 9, 10, 11  Next


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by ST Software for PTF.