Announcement

Collapse
No announcement yet.

I need try (VRayProxy filename: f)catch() to give me True

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • I need try (VRayProxy filename: f)catch() to give me True

    If I run this
    Code:
    f = "file.obj"
    try
    ( 
    importFile f #noPrompt
    )
    catch()
    I get true

    If I run this
    Code:
    f = "file.vrmesh"
    try
    ( 
    VRayProxy filename: f
    )
    catch()
    I get nothing, or at least not the "true" I need.

    How can this be solved?
    Kindly,
    Haider

  • #2
    Originally posted by Haider_of_Sweden View Post

    How can this be solved?
    Apparently, what I needed was
    Code:
    selectmore (VRayProxy filename: f)
    .
    Kindly,
    Haider

    Comment

    Working...
    X