Marquee efect in tray object

Hi
I´m trying to make a marquee efect in title of com.sapportals.htmlb.Tray object
is it possible??
how can i do that?
Thanks

Iview properties which you have set are only applicable for content within that iview. So whatever is displayed in that iview will be forced for english. Portal framework will take language based on user's preference, hence you will see names on tray and navigation in portal language.
Nitesh

Similar Messages

  • Perspective effect with Smart Objects (SO)

    Hi,
    i would like to create a perspective efect on smart objects.everything i read so far was that perspective effect doesn't work (distort) on SO.
    everybody place the SO almost as they want but to create the perspective effect, they rasterize layer and finish perspective effect using the Free Transform tool.
    1. so is it really the only one way to do it ?
    I mean i have a lot of business cards design and i have a master design for their presentation... in this presentation i can change just 1 SO (the master one) and all other SO (representing business cards) are automatically updated...
    so it is really great for creating a new presentation of product. owever, if i must rasterize SO i loose this feature/possibility.
    2. So what is the best solution ?
    thx.

    Hi Conroy,
    at work we have CS6. I tried all kind of File > Preferences > General > Image interpolation, but nevetherless still the same issue. The bicubic is the best one for card border/edge but they are still to "stairs steps" and not clean line for borders.
    Here is my work.
    A) The top card is former verctor SO, rasterized and once again convert to SO (for later applying effects/filters)
    B) The bottom card is a standard Vector SO with content from a vector tool.
    there are 2 main issues.
    1. the perspective for the card B (vector) is not as perfect as for card A, as if you move individually a corner, other corners move also
    how to solve it in order to not have a destructive one ? i mean if i have on 1 artwork 3 visible business cards, i don't want to replace content 3 times + filters, etc.. i would like to maximum replace 3 contents and that's all... imagine if i have 100 business cards ready for that...i will spend months to recreate each perspective and effects.
    2. the 2nd issue is with card edges/borders...they are not anti-aliased at all..maybe the top one (card A) is more than the vector SO as it has been rasterized...but nevertheless it is far from what i see on internet for same work.
    so what did i miss ? where is my mistake ?
    thx.

  • Deserialized Vector objects

    Hi i am trying to develope an application using serialization for the first time.
    In my program i have an object Tray(JPanel) which is made up of a number of JPanels. I am trying to save the state of the Tray objects by adding them to a Vector and serializing the Vector. This works fine up to a point. The vector gets serialized OK. After a JButton actionPerformed i deserialize the vector and individually add the Jpanels back onto their display area. This seems to work fine aswell. However when i try to remove any of the objects from the vector vTrays.remove(iContainerID); they do not get removed. Are there any known issues while removing deserialized objects from a vector?

    Does your Vector contain Tray objects? And what type is iContainerID - a Tray? (doesn't sound like it is). Do you know how remove works? Read the API docs:
    http://java.sun.com/j2se/1.5.0/docs/api/

  • Issue working with a htmlb Tray

    I have a tray in an iView with some data in it.  I am trying to query the state of the tray in order to preserve the persistence of if the tray is collapsed or not so the state is the same after a page refresh.
    I tried doing the follow (as I have for all other components):
    <b>Tray textTray = (Tray) getComponentByName("textTray");
    if (textTray != null)
      bean.setTextTrayIsCollapsed(textTray.isCollapsed());
    }</b>
    In order to fetch the component information form the jsp page and save it in a bean...
    I noticed this never worked and when I debugged it I found that the textTray tray object was always null.
    I tossed this line and debugged:
    <b>Component comps[] = getComponents();</b>
    and found that the tray object never appears in the array of components.
    I was wondering if anyone knew how to access this tray in my iView. I think I have found a work around if not using the onCollapse event but would like to keep things the same if possible.
    cheers,
      D.

    Hi,
    Only components of a form are available in the java part of the code, as only their values are submitted for the HTTP post/get event.
    You will need to do some client side javascripting in order to get the tray status I believe, and would than have to make the value found part of the form that is submitted (using standard html you would update an input field of type="hidden", but I am not quite sure how you do it htmlb).
    Dagfinn

  • Java Program Using Threads

    Hi there, im really new and have just started programming in Java, i have to create a java program which implement threads. Thread.Wait, thread.start them etc.
    Here is the problem, any guidance would be great cheers guys
    The manager of a company employs 3 secretaries who are of varying ability, but who all work extremely fast. Secretary A is the most experienced secretary and is capable of typing up a letter once every second. Secretary B is less experienced and is capable of typing up a letter once every 2 seconds. Secretary C is the junior secretary and is capable of typing up a letter once every 4 seconds. When a secretary has typed up a letter he leaves it in the manager?s tray for him to remove and sign. The manager removes and signs a letter from the tray once every 2 seconds. The tray can hold a maximum of 5 letters at a time. The tray?s limited capacity sometimes causes the various workers to be delayed. For example, if the tray is full after a letter has been typed, the secretaries must wait until the manager makes a space available before they can add another letter to the tray. Similarly, the manager must wait for at least one letter to appear in the tray before he can take it out and sign it.
    In your program, make use of threads to represent each of the workers (the 3 secretaries and the manager), so that they can work in parallel. You will also need to declare a tray object, and ensure that all communication is properly synchronised to avoid indeterminacy and deadlock. While an office worker is busy typing a letter or signing it, you should send that thread to sleep for the appropriate time period. This can be achieved with a call to:
    Thread.sleep(m);
    where m is the number of milliseconds for which the thread should suspend.
    The output from your program should take the form of a running commentary on the activity taking place in the office. An extract from it might look something like this (though it is up to you how you word this):
    Secretary A is ready to type a letter
    Secretary A has typed a letter, number now typed = 6
    Tray full. Secretary must wait until a letter has been removed before adding another
    Secretary C has typed a letter, number now typed = 2
    Tray full. Secretary must wait until a letter has been removed before adding another
    A letter has been removed from the tray. Tray = 4
    The Manager has taken a letter from the tray to sign, number signed = 4
    The Manager is ready to sign a letter
         etc
    Run your simulation until the secretaries have typed and filed 7 letters each, and the manager has removed and signed all 21 letters.
    Thanks again

    Then you're probably better off enlisting one-on-one, in-person help from your instructor, a classmate, or a private tutor, or joining a study group. Forums like this are not well-suited to tutoring you from the ground up.
    If you're doing multithreaded homework and you don't even know where to start, it sounds like ether the instructor is horrible or you're in over your head, or you just haven't been keeping up with the class.
    Good luck.

  • I have boxes instead of Farsi characters as the text of MenuItem label...

    Hi
    As i started programming by jdk6, i had no problem in text components neither in awt nor in swing.
    But for labels or titles of AWT components, yes :
    I couldn't have Farsi characters displayable on AWTs just as simple as Swing by typing them into the source code.
    lets check this SSCCE :
    import javax.swing.*;
    import java.awt.*;
    import java.io.*;
    import java.util.Properties;
    public class EmptyFarsiCharsOnAWT extends JFrame{
        public EmptyFarsiCharsOnAWT() {
            super("&#1605;&#1579;&#1575;&#1604;");
            setDefaultCloseOperation(3);
            setVisible(rootPaneCheckingEnabled);
        public static void main(String[] args) throws AWTException, IOException {
            JFrame jFrame = new EmptyFarsiCharsOnAWT();
            MenuItem show ;
            // approach 1 = HardCoding :
            show = new MenuItem("\u0646\u0645\u0627\u06cc\u0634 \u0645\u062a\u0627");
            // approach 2 = using simple utf-8 saved text file :
                BufferedReader in = new BufferedReader(new FileReader("farsiLabels.txt"));
                String showLabel = in.readLine();
                in.close();
                show = new MenuItem(showLabel);
             // approach 3 = using properties file :
            FileReader in = new FileReader("farsiLabels.properties");
            Properties farsiLabels = new Properties();
            farsiLabels.load(in);
            show = new MenuItem(farsiLabels.getProperty("tray.show"));
            PopupMenu popUp = new PopupMenu();
            popUp.add(show);
                // creating Tray object
                Image iconIamge = Toolkit.getDefaultToolkit().getImage("greenIcon.png");
                TrayIcon trayIcon = new TrayIcon(iconIamge, null, popUp);
                SystemTray tray = SystemTray.getSystemTray();
                tray.add(trayIcon);
                jFrame.setIconImage(iconIamge);
    Yes, i know each of three approaches in source code does right when you may test it from IDE , but if you make a JAR contains just this class (and its resources) by means of NetBeans > project > clean&build ,you won't see the expected characters and will just get EMPTY/BLANK SQUARES !
    Unfortunately, opposed to other situations i encountered before, here there is no way to avoid using awt and make use of Swing in this case.
    And this was just an SSCCE i made to show the problem and my recent (also first ) application suffers from this subject.
    Unfortunately it seems i can not attach anything to my post!
    the content of text file is just this one line:
    &#1606;&#1605;&#1575;&#1740;&#1588; &#1605;&#1578;&#1575;and
    The contents of Properties file is this :
    #Sun May 02 09:45:10 IRDT 2010  
    tray.show=&#65279;&#1606;&#1605;&#1575;&#1740;&#1588; &#1605;&#1578;&#1575;for instance.
    the icon image i don't think will differ to the issue.
    i am using latest version of Netbeans IDE.
    Thank you very much in advance.

    Any idea plz ?

  • Can I restore the Snow Leopard version of 'Preview' for use in Mountain Lion?

    When running Snow Leopard I enjoyed using Preview with my HP C7280 All-in-One Scanner/Printer.  I could place several items on the glass plate and Preview would then carry out a "preview scan". The superior edge detection software contained in Preview would recognise that there was more than one item on the scanner glass and put a marquee rectangle around each object (even separate images in a magazine page).  I could de-select objects if I wanted to at this point to avoid scanning them, or I could opt to scan. 
    Preview would then scan all selected items in one go outputting a separate file for each one. No need to re-scan and select the next object.  Preview would do the lot in one go! This was fantastic for saving  time for me. 
    Preview really 'kicked the crap' out of my PC at work. The best the scanning software on the PC could was to auto-detect a single item.*  So if I have a lot to do, I have to preview scan and then save/scan each item individually to achieve the same result.
    All this changed when I updated from Snow Leopard to Mountain Lion.  The scanning is nothing like as effective and time saving as before.  Preview just scans the whole glass plate straight to a file irrespective of what is on it, no preview scan and no object edge detection whatsoever; not even a single object like on my old PC at work. Absolute rubbish!
    I really want to restore the functionality I had before. So I wonder, is it best to revert my iMac to Snow Leopard, or can I achieve this another way?   I don't necessarily want to abandon Mountain Lion - but I will if I have to.
    Is it possible to restore the Snow Leopard version of Preview whilst keeping Mountain Lion? Or maybe download the Lion version from somewhere instead - assuming that the Lion version still has same functionality as the Snow Leopard version?
    *Even this is better than what Preview does since I updated to Mountain Lion

    It's either that or finding other software for your scanning needs. For example, Image Capture comes with OS X, VueScan 9.2.09, ExactScan Pro 2.24.
    Alternatively, partition your hard drive and install Snow Leopard on another volume.
    To resize the drive do the following:
    1. Open Disk Utility and select the drive entry (mfgr.'s ID and size) from the left side list.
    2. Click on the Partition tab in the DU main window. You should see the graphical sizing window showing the existing partitions. A portion may appear as a blue rectangle representing the used space on a partition.
    3. In the lower right corner of the sizing rectangle for each partition is a resizing gadget. Select it with the mouse and move the bottom of the rectangle upwards until you have reduced the existing partition enough to create the desired new volume's size. The space below the resized partition will appear gray. Click on the Apply button and wait until the process has completed.  (Note: You can only make a partition smaller in order to create new free space.)
    4. Click on the [+] button below the sizing window to add a new partition in the gray space you freed up. Give the new volume a name, if you wish, then click on the Apply button. Wait until the process has completed.
    You should now have a new volume on the drive. Use the Snow Leopard installer DVD to install Snow Leopard on your new volume.
    It would be wise to have a backup of your current system as resizing is not necessarily free of risk for data loss.  Your drive must have sufficient contiguous free space for this process to work.

  • WAD - How to obtain a button group list

    Hi all, I'm trying to add in my report, using a WAD, a list of button.
    In particular, adding a button_group_item, in a runtime scenario I obtain:
    button1     button2      button3
    How to obtain a list like this:
    button1    
    button2     
    button3
    in the same tray object ?
    Thanks in advance for your collaboration
    Gianfranco

    Hello, I solve on my own using CONTAINER_LAYOUT.
    Gianfranco

  • Adding new rows in tableview of BSP

    Hi all,
       I am facing the very serious problem with using the tableview in bsp .The requirement is to add new rows to the tableview and update this content to internal table.The problem is when i enter some value in column and hit any button or triggered any event ,the value of column in table view gets cleared and i couldn't able to captur the value to internal table ...
    can anyone please help me to  sort out this problem.

    Hi Senthil,
    I think this would provide solution to your problem.
    the problem is whenever you edit the value in the tableview view the associated internal table of the table view has to be updated with the new values. for that you need to read the cell value from the table view.
    as its a tableview, you should read the value from the exact cell whose value has been modified and update that value in the internal table. here is the psuedocode. hope it helps.
    loop thru the selected rows of the table,
    'selectedrowindextable'  this info you can get from
    table_event TYPE REF TO cl_htmlb_event_tableview.
        LOOP AT selectedrowindextable ASSIGNING <i>.
    itab is the table which actually stores that data
    which you pass to the table view
          READ TABLE  itab INTO wa_itab INDEX <i>.
          i_rownum = <i>.
          CONDENSE i_rownum.
    construct the id of the Cell whose value is to be read
    for table view name, if u r showing it as a view in a
    tray object prefix the table view name with tray object
    id followed by '_'
    to read column 'totalcost' in 5th row the cell name
    would be 'trayid_tableviewid[5].totalcost
    Alternative you can get this format from the
    request->get_form_fields method also
       CONCATENATE 'tabviewname[' i_rownum '].colname' INTO req_cell.
       CONDENSE req_cell.
       l_value = request->get_form_field( req_cell ).
       CONDENSE l_value.
       wa_itab-colname = l_value.
       MODIFY itab FROM wa_itab INDEX <i>.
    ENDLOOP.
    Let me know if you have any questions.
    thanks and Regards,
    Kumar

  • Change a color to transparent.

    Lets say i have a black pen inked drawing of some complex object, drawn on a white background.
    If i want to change the white to transparent, currently the only way i know is to export it to gif and changeing the white color to transparent in the process.
    After the export, i can import the result and i now have what i wanted.
    There are a few problems tho.
    1) what if there are more than 256 colors?
    2) what if the image was scanned and there is a tolerance to the white that i want to convert?
    I cannot use any of the marquee tools as the object is to complex.
    There must be a way to do what i want.
    I am at the beginnings of my fireworks learning curve, but i cannot for the life of me figure out how to do this.
    Thank You
    Jerry

    Hi JerryCied
    As far as i know there isn't an easy way to achive this.
    When your object is too complex, you have to make it through, mostly by hand.
    - Use the marque tools and the properties panel to make changes to the edge style.
      Use either anti-alias or feather for a smoother result.
    - Use the polygon and lasso tools to be more accurate when you cut your object.
    - Take the risk and use the eraser tool to delete every single pixel that you don't need.
    - Make changes through the filters panel to your object, so it reaches the look that you wish.
    Take a look at the  'R'  tools (blur, dodge etc). Maybe you can use them too.
    For example you could use blur tool to make a smoother edge.
    thanks

  • How to hide object name in tray of pages

    Hi everybody,
    I want to hide the object name in the tray of a page.
    I act as follows: open Page in VC --> Configure Page --> Look & Feel --> unselct "Show Object name in Tray"
    I thought that is the right way, but every time I want to deploy, the option is true again.
    Could anybody help me?

    Hi Robert,
    Unfortunately, evrytime you open the model, it shows default values for the fieds. The only field for which it shows the correct value in the dashboard is 'Show Help Option'. However, at runtime, it does reflect the changes you make. You can check that in PCD.
    e.g. If you uncheck the checkbox for 'Show object name' and deploy the first time. The page should reflect the change on the Portal in PCD, however in the model shows the default value i.e. the checked checkbox. If you deploy it again, it won't change the value on the portal. It will still retain the value(unchecked,) on the portal. In order to change the value back to what it was (checked) originally, you have to uncehck the checkbox and check it again and then deploy. The values will change on the portal.
    I don't know the reason behind this behaviour though.
    Regards,
    Ajay

  • Full page pull out tray, pull only object workaround

    Hi,
    Is there any way yet, when creating a pull out tray/slider using the scrollable frame, to only have a object within the container pull the content, rather then being able to pull from anywhere within the container?
    Basically what I am trying to do is have a pull out that when pulled out, covers the entire page, therefore the container needs to cover the entire page which disables the ability to navigate horizontally between articles, I can still navigate vertically, but not horizontally..
    Does anyone know of a workaround that would enable me to have a full page pull out (container) and still be able to navigate horizontally. i.e. having only an object (the pull tab) pull the content rather then anywhere within the container.
    Thanks for you help
    Quinn

    Thanks everyone for your help, however I am yet to solve this problem...
    On top of the horizontally scrolling content I have created a MSO consisting of two invisible rectangle frames. Tried to see if it would work as just a MSO, nothing, turned those into a one time Auto Play Slideshow, still nothing. No matter where I pull, the content still scrolls yet I can not navigate horizontally to the next article. (Made sure I left space for the tab area, yet I can still pull from anywhere). Any other solutions/workarounds to this problem? Or if this has worked for others, possibly tell me if I am doing something incorrectly?
    Thanks again for your help.
    Quinn
    PS. I am using V20 on ID 5.5

  • Creating a rectangular marquee to select objects

    I am trying to use the selection tool or the direct selection tool to create a rectangular marquee somewhere within the boundaries of an illustration.
    I want to select only those objects that are fully or partially within that marquee. 
    I can use the lasso to select objects in this way.
    But if I try to use the selection or direct selection tool, it selects and moves the first object I touch.
    I can use the selection tools and begin from outside the image area and create a rectangular marquee of selected objects.
    But I can't do this if I begin within the image.

    Illustrator is mostly alone in its selection options. Some other vector drawing applications have an option as to the marquee selection behavior.
    I wouldn't hold your breath for a change.
    Mike

  • Hide Object in the Taskbar when Frame is down to Tray

    Hi Everyone,
    I've a new Question. I've implemented SystemTray functionallity to my app. I'm able to minimize or maximize or close my app. But when I minimize the Frame the object in taskbar is still there. Is it possible to clear the taskbar from this object when I send it to tray. I used states to min- and maximize (iconfied, normal).
    Furthermore I have to say I'm working with Linux. When I minimize the Frame the object in the taskbar gets a little transparent. May it be not there if I would use Windows? I don't have access to a windows machine right now.
    Thx for your suggestions

    camickr wrote:
    Only JFrames are added to the task bar.
    Use a JDialog or JWindow.That was fast, i'm gonna try this out right now. Thanks!

  • Select Objects Only Inside The Selection Marquee

    Is there a way to make Illustrator select only the objects that are fully inside the selection marquee? As it is, it selects everything the marquee touches.

    if you don't mind work arounds...I posted a script that does the job, look at post # 11
    http://forums.adobe.com/thread/856221?start=0&tstart=0

Maybe you are looking for

  • Help me please! 60gb video ipod will it work on imac g3

    I've got an imac g3 333mhz and for christmas got an ipod video 60gb, I was using system 9.1 but have installed 9.2 and 10.1 to run along side each other, however 10.1 is not happy! I know I need to download 10.2.8 or 10.3.4 but how, none of the updat

  • I got this recommendation on a question I posted, is this safe?

    Whenver I google anything I get tons of results for "blinkx" (see pictures) and there are ads that popup constantly (see pictures), I got the recommendation below...is it safe? 1. This procedure is a diagnostic test. It changes nothing, for better or

  • Error while  Asset settlement

    as i have transferred last year internal order balance to the new internal order in this year. and when i was running th Ko88 for AUC to main asset settlemnt it gave me below error. <b>Error during acquisition transfer: Depr. area does not exist Mess

  • Sometimes the contents of the Applications folder does not show in finder

    Using finder I can only display the contents of my Applications folder by clicking on Applications under the Places group on the sidebar. Any other method of navigation (eg selecting Applications from within my Home folder) and the contents are never

  • TS3276 Problem deleting messages in Mail

    Using a hotmail account on iMac in Mail.  I get this error message: The message "name of message" could not be moved to the mailbox "Trash--Hotmail".  "3541.emix" couldn't be copied to messages because an item with the same name exists. Very much app