How to set/get visibility of an art of an artset ?

hi,
while trying to rasterize the layer,
if a layer is invisible and it's art are visible then only I can able to get the arts in the raster but if arts are invisible of a layer irrespective of visibility of their layer, I am unable to get the invisible art in the  raster.
Is there any function in API(CS4) which can get/set visibility of an art of a layer?
how can I do so?
can anybody help me in concern of above?
thanks
Deep Alone.

oh wow!!! I just got the answer.
It can be done by using function  GetArtUserAttr( ) of  AIArtSuite (AIArt.h).
thanks anyway.

Similar Messages

  • How to set/get the archive file attribute?

    I am programing a (freeware!) ftp client and need to know, how to set/get the archive attribute of a local file. I was searching through whole the i-net - nothing at all!
    please help me!!

    Hi,
    Since not all operating systems support the archive attribute, this ain't included in the JDK.
    If you're using Microsoft Foundation Classes for Java, then you can use File.getAttributes(String path) and check whether the result equals FileAttribute.ARCHIVE.
    For setting the attribute, you can use
    File.setAttributes(String path, FileAttribute.ARCHIVE)
    Of course this is all Microsoft-specific stuff.
    Hope this helps,
    Kurt.

  • How to Set the Visibility of a field in ESS Address view through portal

    Hi experts,
      I want to set the visibility of a field in ESS Address view through portal.How to edit a field through portal? Please help me with procedures to be followed..
    Thanks&Regards,
    Karthik.

    Hi,
    Login to portal with a user having content administration role.
    Navigate to your iview which must be under content provide by SAP(if its a standard iview).
    Open the iview and click on preview button.
    Then press ctr on keyboard and rightmouseclick on the field for which you want to change.
    A popup will open. Change the visibility in the popup and save the changes. This is a way of personalization and it'll be applicable for all the users.

  • How to set/get the initialization vector

    Hi,
    I have an existing database (built by non-java code) containing encrypted data. I know the algorithm, the key and the initialization vector to use in order to decrypt this data. (This is straight-forward DES encryption.)
    My problem is that I can't tell from the java documentation how to set the initialization vector on a Cipher object when I need to perform decryption.
    As an aside, when I try and encrypt data - the results from Cipher.getIV () are always null.
    Any help greatly appreciated,
    Thanks,
    --Jatinder                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    To set the initialisation vector for a Cipher, you need to use the IvParameterSpec class and specifically create the initialisation vector. This class implements the AlgorithmParameterSpec interface. This is used in one of the init() methods for the Cipher class when you set up the Cipher (ie. it accepts parameters for the mode, key and parameter spec). I also found that this was difficult to work out from the supporting documentation.
    To get the initialisation vector for a Cipher, use the getIV() method after you have performed the init() call. If the vector has not been initialised before the init() call, you mayget a random result. If it has been initialised specifically, it will print out the vector that you initialised it with - I have tried this out.
    Hope this helps.

  • How to set/get URL-parameters from ORACLE -tag?

    How do I set/get parameters in a URL, using the <ORACLE>-tag?
    We are trying to create a UI Template containing a dynamic
    stylesheet selection dialogue on top of every page. The question
    we are facing now is how to pass parameters (in our case,
    stylesheet settings) between different pages.
    Any ideas/comments are appreciated!

    How do I set/get parameters in a URL, using the <ORACLE>-tag?
    We are trying to create a UI Template containing a dynamic
    stylesheet selection dialogue on top of every page. The question
    we are facing now is how to pass parameters (in our case,
    stylesheet settings) between different pages.
    Any ideas/comments are appreciated!

  • How to set/get the values thru Wedbynpro coding for User mapping fields

    Hi All
    In system object we have the user mapping fields like District,city,plant,Salesmanager.
    now we want to set/get the values of these usermapping fields of system object thru webdynpro coding...
    if anybody have sample codes of the same then it would be great help to me
    Thanks in advance
    Thanks
    Trisha Rani

    Hi Kavitha
    Thanks for your reply
    My requirement is exactly as follows.
    1) i have created one portal system object in system administration and also i created usermapping fields in the system object from the usermanagement  in system object.
    i created the user mapping fields like Plant,SalesManager,District etc.
    i also created the system alias name for the same system object
    2)  Now i came to persoanlize link and mapped the system object to the portal user.
    while mapping to the system object we need to enter Mapping userId, Password , once we enter these values and we can also enter the values of usermapping fields which we defined while creating the system object ( for example District,Salesmanager,Plant etc)
    once we enter all the values and click on save then these usermapping  values to be mapped to the portal user.
    3) Now my requirement is , i  want to control the usermapping field values thru webdynpro coding for setting/getting the values.
    I need sample code of the same.
    Please let me know if u need more details on the same.
    Thanks
    Trisha Rani

  • How to set/get value in dynamically created components?

    I need to create dynamically form based on definition written in database.
    I created an empty panelGreed in my jsf page
    <h:panelGrid columns="2" id="parseg"
    binding="#{ParsegBean.uiKatparam}">
    </h:panelGrid>I can�t use dataTable, because my form contains various component types (SelectOneMenu, OutputText, and InputText).
    In my bean I create components dynamically:
    Private UIPanel uiKatparam = null;
    Iterator componentIt = myComponentList.iterator()
    while(componentIt.hasNext()){
         MyComponent myComponent = (MyComponent)  componentIt.next();
         HtmlOutputText prompt = new HtmlOutputText();
         prompt.setValue(myComponent.getPrompt());
         prompt.setId(myComponent.getPromptId());
         uiKatparam.getChildren().add(prompt);     
         switch (myComponent.type) {
         case 1: //InputText
              HtmlInputText iText = new HtmlInputText();
              iText.setId(myComponent.getId());
              iText.setValue(myComponent.getDefaultValue());
              uiKatparam.getChildren().add(iText);
              break;
         case 2: //SelectOneMenu
              HtmlSelectOneMenu selectOneMenu = new HtmlSelectOneMenu();
    // �
              uiKatparam.getChildren().add(select);
              break;
         default:
              break;
    }When I try to get values in my Action:
    Iterator it = myBean.getUiKatparam().getChildren().iterator();
    while (it.hasNext()) {
    Object ob = it.next();
    if (ob.getClass().getName().matches(".*HtlmInputText")) {
    HtmlInputText t = (HtmlIputText) ob;
         String id = t.getId();
         String value = (String) t.getValue();
    //�
    //�
    }and value is still equal initial value
    How can I get velue entered to my InputText created dynamically?
    Michal

    I solved my problem creating UIData with dynamically added and dynamically rendered components (in each row is rendered another component).

  • How do I get rid of album art on iPad?

    I upgraded to iOS 7.0.4 today, and I hate it. But what I hate most of all is that all my purchases had album art automatically downloaded for them, even though I intentionally delete all album art from every song I buy. I have no idea how to get rid of it from my iPad, and I'm afraid that when I sync to my laptop, it will get the album art too. I don't want often-ugly art attached to my music.

    Well that's a new one.
    No, that isn't something that is configurable. And in my experience, the only cover art the Music app picks up on its own, rather than the sync source, is for the Artist view. I could be wrong (like most of users on the planet, I do use and maintain cover art). But it is not likely to sync over to your laptop, either.

  • How to set/get a portion of images coordinate

    i have one image(jpg file) and inside the image has mountain,house ,river
    how can i set mountain (X,Y) coordinate? if i click mountain , it will alert "this is a mountain"
    or if i mouse hover-over to river, it will alert "this is a river"? how to write a code using Flex api
    thank for help

    I think you can achieve this by using ImageMap component available in flexlib.
    http://flexlib.googlecode.com/svn/trunk/docs/flexlib/controls/ImageMap.html

  • Please help how to set/get a class object in hashtable or hashmap?

    Hi, everybody.
    I'd like to generate a class-object list in hashtable.
    However, compilation is error. Here is my code:
    Hashtable ht = new Hashtable();
    Class tmp_obj;
    tmp_obj = Class.forName("my_class_name_1");
    ht.put("my_class_name_1", tmp_obj);
    tmp_obj = Class.forName("my_class_name_2");
    ht.put("my_class_name_2", tmp_obj);
    Class selected_object = ht.get("my_class_name");
    ^here compilation error: incompitable types
    Could anybody tell me where is wrong in my code and how to
    correct it?
    Thank you in advance.
    Jeff

    Look at the javadoc for Hashtable. The get method returns an Object. You will need to cast it to a Class object.
    Class selected_object = (Class)ht.get( "my_class_name" );If you are using JDK5.0, then you should look up generics.

  • Hi how to set the visible property in oracle adf?

    Hi,
    I am new to oracle adf in my application one of the field is id and it is sequence generated value Whenever I entered remaining values and click on save then only it has to display with sequence generated value before saving it has to be in hide mode. Can any one help me how the approach is.

    As there are three ways through which you may pass a message to B2B, so there are three ways to set Action name property.
    If you are using SCA/Fabric then set below properties -
    b2b.fileName
    b2b.contentType
    If you are using JCA JMS adapter, then set below property -
    jca.jms.JMSProperty.ACTION_NAME
    If you are using JCA AQ adapter then set -
    ACTION_NAME
    Regards,
    Anuj

  • How to set table visibility in run time?

    Dear all,
               Initially i need to make my table invisible. if i click the button, it should be visible. Help me out to do this.
    Thanks,
    Gopi.

    Hi,
    Rather hiding the table, apply the same for the transparant container...
    Create a transparent contianer(TCO) and inside this have the TABLE....
    Create a context attribtue of type wdui_visibility and bind it to the visible property oft the TCO.
    After that, based on the data existence set this attribute value...
    Do you have any input fields and this table in the same view....waht is your design....
    If you have data in the internal table.......
    data lv_visible type wdui_visibility.
    if lt_table is not initial.
    lv_viisble = '02''.
    else.
    lv_visible = '01'.
    endif.
    wd_context->set_attribute
    exporting
    name = 'VISIBLE_TCO'
    value = lv_visible.
    Hope this is clear...
    Regards,
    Lekha.

  • Problem with Jtree to xml tranform..how to set/get parent of a node?

    Hi,
    I am trying to develop xml import/export module.In import wizard, I am parsing the xml file and the display it in Jtree view using xml tree model which implements TreeModel and xml tree node.I am using jaxp api..
    It is workin fine.
    I got stuck with removal of selected node and save it as a new xml.
    I am not able to get parent node of selected node in remove process,itz throwing null.I think i missed to define parent when i load treemodel.Plz help me out..give some ideas to do it..
    thanks
    -bala
    Edited by: r_bala on May 9, 2008 4:44 AM

    there's no way anyone can help you without seeing your code.

  • How do you get rid of album art?

    Is it permanent once downloaded? Or is there some way to hide or get rid of it that I'm missing? Please reply. Thanks.

    Right click on the song in your library, choose "Get Info". When this box opens, click on the artwork tab, then click on the artwork you don't want and hit the "delete" button. Save and close. You can add new artwork, or leave the box blank and then you'll get Apple's generic artwork symbol.

  • How would I get visible busy cursor while calling ImageSnapshot.captureImage?

    Hi,
    I'm not sure if I understand correctly, but below is my very simple MXML file, where I try to show busy cursor before calling ImageSnapshot.captureImage. But instead my cursor dissapears atl all and then reappears after call is complete. Is it known functionality or should I use some callLater() call? Any help would be appreciated.
    My code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
      <![CDATA[
       import mx.graphics.ImageSnapshot;
       import mx.graphics.codec.JPEGEncoder;
       import mx.managers.CursorManager;
       private function clickHandler() : void {
        CursorManager.setBusyCursor();
        const encoder:JPEGEncoder = new JPEGEncoder();
        var imageSnapshot:ImageSnapshot = ImageSnapshot.captureImage(mainContainer, 96, encoder, true);
        CursorManager.removeAllCursors();
      ]]>
    </fx:Script>
    <s:BorderContainer id="mainContainer" width="50%" height="50%">
      <s:Label x="40" y="44" text="My label" width="60" height="31"/>
      <s:Button x="30" y="79" label="Button" click="clickHandler()"/>
    </s:BorderContainer>
    </s:Application>

    I'm experiencing the same problem. ¿Did you solve it?
    It happens as if it were no background image defined for the bussy cursor.
    But I have seen that such image is defined in default.css inside framework.swc, so it should work...

Maybe you are looking for

  • I changed PE 2.0 in Windows 7 to XP mode but............

    I changed PE2.0 in Windows 7 to XP mode and it isnt freezing but I am getting no sound from the audio track. Any ideas why?

  • HDMI Auto Switch

    Hi! I have a HDMI in my laptop, Dell XPS L421X with XFCE. When I connect HDMI to TV I have the video, use ARandR to set the displays, but not sound. I Install pavucontrol (PulseAudio Volume Control) because in SoundMixer have not controls with pulsea

  • Refreshing Workbook

    Hi, We have workbook and we have done some formatting for displaying of filters in the workbook. Initially when it is displayed we have cut pasted the display of filter values on rightside of the workbook and saved the workbook. Now we changed the Qu

  • Is there a way to hide the URL in Faces, like Cleveland framework??

    If you remember, the cleveland framework only show the controller at the url explorer bar. I want to do the same in my app with ADF Faces. Is this possible? thnks in advance.

  • Fading 2 Images Together

    Hi, I am new to photoshop and have searched the forum for the solution and google, but am still pulling my hair out over something that I am sure is so, so simple. I am trying to merge two images so the appear to melt and fade in to one another for a