Author Topic: SCRIPT HELP: CoronaRenderer.CoronaFp.showVfb() (Close it function?)  (Read 4380 times)

2015-01-16, 17:25:08

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile
Is there a function to close the VFB?

No matter what the line:
CoronaRenderer.CoronaFp.showVfb()

returns 0 both when it's open and closed. Thanks.

2015-01-16, 17:28:43
Reply #1

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile
Also. Is there a way to have two different tooltips for both a spinner and it's field value?

2015-01-18, 21:47:14
Reply #2

Ondra

  • Administrator
  • Active Users
  • *****
  • Posts: 9048
  • Turning coffee to features since 2009
    • View Profile
implemented - showVfb now takes 1 argument
Rendering is magic.How to get minidumps for crashed/frozen 3ds Max | Sorry for short replies, brief responses = more time to develop Corona ;)

2015-01-18, 22:10:34
Reply #3

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile
Thanks. How do you get different tooltips for spinners and text values for the same spinner. I've only seen this with the corona render dialog and not anywhere else in max. Is this secret coding or? :)

2015-01-18, 22:23:48
Reply #4

Ondra

  • Administrator
  • Active Users
  • *****
  • Posts: 9048
  • Turning coffee to features since 2009
    • View Profile
well in corona that is a bug :D I am using 3dsmax API way for adding a tooltip, and 3dsmax fucks it up.
Rendering is magic.How to get minidumps for crashed/frozen 3ds Max | Sorry for short replies, brief responses = more time to develop Corona ;)

2015-01-19, 01:43:31
Reply #5

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile
Maxscript help does that also. I'm only starting out but it's like reading Leonardo da Vinci's personal notes!

Still thanks for the info. I do like that though. Min | max | Default values for the text and the tooltip for the spinners.

2015-01-20, 05:08:46
Reply #6

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile
implemented - showVfb now takes 1 argument
These all don't have any effect on the VFB. Is it working for you? I'm using the latest build 19.01.2015..

Is the syntax correct I'm using?

Code: [Select]
showVfb = 0
0
showVfb = 1
1
showVfb = false
false
showVfb = true
true
Code: [Select]
CoronaRenderer.CoronaFp.showVfb() = false
-- No ""="" function for ((prop showVfb (prop CoronaFp Global:CoronaRenderer)))
CoronaRenderer.CoronaFp.showVfb() = true
-- No ""="" function for ((prop showVfb (prop CoronaFp Global:CoronaRenderer)))
CoronaRenderer.CoronaFp.showVfb() = 0
-- No ""="" function for ((prop showVfb (prop CoronaFp Global:CoronaRenderer)))
CoronaRenderer.CoronaFp.showVfb() = 1
-- No ""="" function for ((prop showVfb (prop CoronaFp Global:CoronaRenderer)))
CoronaRenderer.CoronaFp.showVfb = 0
-- Unknown property: "showVfb" in <Interface:CoronaFp>

2015-01-20, 09:53:46
Reply #7

racoonart

  • Active Users
  • **
  • Posts: 1446
    • View Profile
    • racoon-artworks
it's a function, not a property.

try:
Code: [Select]
CoronaRenderer.CoronaFp.showVfb true
Any sufficiently advanced bug is indistinguishable from a feature.

2015-01-20, 16:17:01
Reply #8

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile