🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

How to create 6 views in hyperview

User: "vreddy"
Altair Community Member
Updated by vreddy

I want to create 6 views in hyper view and load models in to each view.

 

 

Thanks 

vreddy

Find more posts tagged with

Sort by:
1 - 5 of 51
    User: "Rahul Rajan_21763"
    New Altair Community Member
    Updated by Rahul Rajan_21763

    Right click in results browser to create different views.

    <?xml version="1.0" encoding="UTF-8"?>View.JPG

    User: "vreddy"
    Altair Community Member
    OP
    Updated by vreddy

    sorry 

    I want to split the page in to 6 windows through customization.

    <?xml version="1.0" encoding="UTF-8"?>image.thumb.png.b72aaf30bb4bf7ef29e86cbc583f2919.png

     

     

    Thanks 

    vreddy

    User: "Rahul Rajan_21763"
    New Altair Community Member
    Updated by Rahul Rajan_21763

    Moving your question to HyperWorks Scripts and customization section.Below post is FYI.

     

    User: "llyle_20499"
    New Altair Community Member
    Updated by llyle_20499

    Hello vreddy, 

    You can split the pages using handles as below, Make sure you have set the right page number and layout number. 

     

    hwi OpenStack;
    hwi GetSessionHandle my_session;
    my_session GetProjectHandle my_project;
    my_project GetPageHandle my_page 1;
    my_page SetLayout 11;
    hwi CloseStack;
     

    After doing so you will have to load the model in appropriate window by selecting the right handles.  

     

     

     

    User: "vreddy"
    Altair Community Member
    OP
    Updated by vreddy

    Thanks livilyle .