Applet Does Not Display

Hi!
With these two perplexing pieces of code, I should be able to show a red "Welcome to Java" string. But it doesn't render when I open the HTML file. I don't know why, I seem to be passing the parameters properly.
Applet: <html>
     <head>
          <title>Display Message 2</title>
     </head>
     <body>
     <applet
          code = "DisplayMessage2.class"
          width = 200
          height = 50
          alt = "You must have a Java-enabled browser to view the applet"
     >
          <param name = MESSAGE value = "Welcome to Java" />
          <param name = X value = 40 />
          <param name = Y value = 50 />
          <param name = COLOR value = "red" />
          <param name = FONTNAME value = "Monospaced" />
          <param name = FONTSIZE value = 20 />
     </applet>
     </body>
</html>DisplayMessage2.java: import java.applet.Applet;
import java.awt.*;
import javax.swing.*;
public class DisplayMessage2 extends JApplet {
    private String message;
    private int x = 20;
    private int y = 20;
    private String fontColor;
    private String fontName;
    private int fontSize = 20;
    /** Initialize the applet */
    public void init() {
        // Get parameter values from the HTML file
        message = getParameter("MESSAGE");
        x = Integer.parseInt(getParameter("X"));
        y = Integer.parseInt(getParameter("Y"));
        fontColor = getParameter("COLOR");
        fontName = getParameter("FONTNAME");
        fontSize = Integer.parseInt(getParameter("FONTSIZE"));
        // Create a message panel
        MessagePanel messagePanel2 = new MessagePanel(message);
        messagePanel2.setXCoordinate(x);
        messagePanel2.setYCoordinate(y);
        if (fontColor.equals("red")) {
            messagePanel2.setForeground(Color.red);
        } else if (fontColor.equals("yellow")) {
            messagePanel2.setForeground(Color.yellow);
        } else if (fontColor.equals("green")) {
            messagePanel2.setForeground(Color.green);
        messagePanel2.setFont(new Font(fontName, Font.PLAIN, fontSize));
        // Add the message panel to the applet
        getContentPane().add(messagePanel2);
} And, MessagePanel.java: import java.awt.FontMetrics;
import java.awt.Dimension;
import java.awt.Graphics;
import javax.swing.JPanel;
public class MessagePanel extends JPanel {
    /** The message to be displayed */
    private String message = "Welcome to Java";
    /** The x coordinate where the message is displayed */
    private int xCoordinate = 20;
    /** The y coordinate where the message is displayed */
    private int yCoordinate = 20;
    /** Indicate whether the message is displayed in the center */
    private boolean centered;
    /** The interval for moving the message horizontally and vertically */
    private int interval = 10;
    /** Construct with default properties */
    public MessagePanel() {
    /** Construct a message panel with a specified message */
    public MessagePanel(String message) {
        this.message = message;
    /** Return message */
    public String getMessage() {
        return message;
    /** Set a new message */
    public void setMessage(String message) {
        this.message = message;
        repaint();
    /** Return xCoordinator */
    public int getXCoordinate() {
        return xCoordinate;
    /** Set a new xCoordinator */
    public void setXCoordinate(int x) {
        this.xCoordinate = x;
        repaint();
    /** Return yCoordinator */
    public int getYCoordinate() {
        return yCoordinate;
    /** Set a new yCoordinator */
    public void setYCoordinate(int y) {
        this.yCoordinate = y;
        repaint();
    /** Return centered */
    public boolean isCentered() {
        return centered;
    /** Set a new centered */
    public void setCentered(boolean centered) {
        this.centered = centered;
        repaint();
    /** Return interval */
    public int getInterval() {
        return interval;
    /** Set a new interval */
    public void setInterval(int interval) {
        this.interval = interval;
        repaint();
    /** Paint the message */
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        if (centered) {
            // Get font metrics for the current font
            FontMetrics fm = g.getFontMetrics();
            // Find the center location to display
            int stringWidth = fm.stringWidth(message);
            int stringAscent = fm.getAscent();
            // Get the position of the leftmost character in the baseline
            xCoordinate = getWidth() / 2 - stringWidth / 2;
            yCoordinate = getHeight() / 2 + stringAscent / 2;
        g.drawString(message, xCoordinate, yCoordinate);
    /** Move the message left */
    public void moveLeft() {
        xCoordinate -= interval;
        repaint();
    /** Move the message right */
    public void moveRight() {
        xCoordinate += interval;
        repaint();
    /** Move the message up */
    public void moveUp() {
        yCoordinate -= interval;
        repaint();
    /** Move the message down */
    public void moveDown() {
        yCoordinate += interval;
        repaint();
    /** Override get method for preferredSize */
    public Dimension getPreferredSize() {
        return new Dimension(200, 30);
} Do I need to do something in my DisplayMessage2.java class? Any ideas why an error happened?
My error console output:
java.security.AccessControlException: access denied (java.util.PropertyPermission red read)
     at java.security.AccessControlContext.checkPermission(Unknown Source)
     at java.security.AccessController.checkPermission(Unknown Source)
     at java.lang.SecurityManager.checkPermission(Unknown Source)
     at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
     at java.lang.System.getProperty(Unknown Source)
     at java.lang.Integer.getInteger(Unknown Source)
     at java.lang.Integer.getInteger(Unknown Source)
     at java.awt.Color.getColor(Unknown Source)
     at java.awt.Color.getColor(Unknown Source)
     at DisplayMessage2.init(DisplayMessage2.java:11)
     at sun.applet.AppletPanel.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Funny enough, when I edited COLOR into COLEUR, it rendered (although I don't think the foreground was red).

ChuckBing wrote:
Runs for me - though only part of the line is visible.
Java 6u3, Windows XP, IE 6Ummm... yes, it does work now. I deleted the class file, changed the applet height and weight, recompiled and ran the modified HTML file.
I asked the question because the text rendered black at the time. It may be just a freak occurrence on my IDE.
Sorry if I inconvenienced anyone. I still gave out the stars, though. Happy Holidays!

Similar Messages

  • [Solved] nm-applet does not display in normal user's panel

    I installed Arch Linux yesterday. Today, I am trying to get some of the refinements working. I installed OpenBox as a standalone window manager. I got several things working exactly the way I wanted as root, such as networkmanager, nm-applet, and pypanel. When I startx as root, the nm-applet is properly displayed in the pypanel.
    Then I discovered that I could not run an X application as the normal user without first running "xhost +" as root. At this point, it dawned on me that I am not supposed to run startx as root, but as the normal user. Duh!
    So, I thought I set up everything the same way for the normal user. When I startx as the normal user, OpenBox runs, nm-applet runs, and pypanel runs, but pypanel does not display the nm-applet icon. I can now run my X application as the normal user, so that is good.
    My .config/openbox/autostart file is exactly the same for root and my normal user:
    (sleep 3 && pypanel) &
    (sleep 3 && /usr/bin/nm-applet --sm-disable) &
    nm-applet was started by this code, because ps -ef shows it running and owned by the normal user:
    [tim@(none) ~]$ ps -ef|grep nm-applet
    tim 2311 2306 0 15:27 tty1 00:00:00 /usr/bin/nm-applet --sm-disable
    tim 2332 2327 0 15:27 pts/0 00:00:00 grep nm-applet
    [tim@(none) ~]$ ps -ef|grep networkmanager
    root 497 476 0 14:14 ? 00:00:00 /sbin/dhcpcd -B -K -L -G -c /usr/lib/networkmanager/nm-dhcp-client.action eth0
    root 869 476 0 14:30 ? 00:00:00 /sbin/dhcpcd -B -K -L -G -c /usr/lib/networkmanager/nm-dhcp-client.action ra0
    tim 2345 2327 0 15:27 pts/0 00:00:00 grep networkmanager
    Why does pypanel display the nm-applet icon for root but not for the normal user?
    Tim (newbie to Arch but previously ran ArchBang for six months)
    Last edited by ratcheer (2012-05-02 22:34:30)

    I have now switched to tint2 from pypanel, anyway. It is much cleaner and easier to use. At least in my opinion.
    Tim
    Last edited by ratcheer (2012-05-03 02:31:59)

  • Applet does not display on Internet Explorer

    I have written a program using MS Edit, I have run the program, and I have compiled the program.
    But when I use a web browser to run the applet, it does not disply the applet. Instead is makes a gray empty area. I would like to know what I should do to get the applet to display. Thank you.
    ernest_efienamokwu

    Hi Ernest,
    Make sure the applet code is written proper by running it using appletviewer.
    If that works, the HTML file used to run the Applet might be wrong, Verify the Applet tag and codebase tags.
    Refer to Sun Tutorials on how to do this if you are in doubt.
    Hope this helps.
    Cheers,
    Chandra

  • Object Id on the Decision Report List applet does not display the Object Id

    The Object Id field of the Decision Report List Applet displays either the entity name of the entity name - Id. We wouldlike to dispay the siebel row Id's in that field respectivey for the parent or the child or grandchild entities.Please help with h to go about it.
    If the base entity is declared as global in OPM, then global gets displayed in the Object id. If a siebel entity is declared as an entity in OPM then entityname - Id gets displayed.
    Thanks !!

    Unfortunately the decision report comes from deep with the engine and there is not much you can do to change it.
    However, the Decision report is XML which is then modified by an XSLT for display in Siebel. You could have a look at the style sheet and the original XML and see if there is a way for displaying the XML that might be more suitable for your purpose.
    The xslt is decision_report.xslt and can be found in the siebsrvr\XSLT directory.
    Cheers
    Frank

  • Applet Does Not Receive Parameters Nor Display Defaults

    My applet will not display a Ellipse either via the default values in my java code nor via the parameters given in the HTML document. Does anyone see what I'm doing wrong here? Here are both my documents:
    import java.awt.geom.*;
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class CircleByParam extends javax.swing.JApplet
              private Ellipse2D.Float circle;
              private float x, y, w, h;
              private Color circlecolor;
              public void init ()
                        String xcoor = getParameter("X");
                        String ycoor = getParameter("Y");
                        String width = getParameter("W");
                        String height = getParameter("Y");
                        String fillcolor = getParameter("FillColor");
                        if (xcoor != null)
                                  x = IntVerification(xcoor);
                        else
                                  x = 25;
                        if (ycoor != null)
                                  y = IntVerification(ycoor);
                        else
                                  y = 25;
                        if (width != null)
                                  w = IntVerification(width);
                        else
                                  w = 25;
                        if (width != null)
                                  h = IntVerification(height);
                        else
                                  h = 25;
                        if (fillcolor != null)
                                  circlecolor = ColorVerification(fillcolor);
                        else
                                  circlecolor = Color.BLUE;
              private int IntVerification (String value)
                        int number = 5;
                        try
                                  number = Integer.parseInt(value);
                        catch (NumberFormatException e)
                                  this.showStatus("Bad parameter " + value);
                        return number;
              private Color ColorVerification (String value)
                        //Assigns color to BLACK by default
                        Color color = Color.BLACK;
                        try
                                  color = Color.decode(value);
                        catch (NumberFormatException e)
                                  this.showStatus("Bad parameter " + value);
                        return color;
              public void paint (Graphics2D screen)
                        Graphics2D screen2D = (Graphics2D)screen;
                        screen2D.setColor(circlecolor);
                        BasicStroke pen = new BasicStroke();
                        screen2D.setStroke(pen);
                        circle = new Ellipse2D.Float(x,y,w,h);
                        screen2D.fill(circle);
    HTML Document:
    <HTML>
         <HEAD>
              <TITLE>Java 21 Days - Day 12 Exercise 1</TITLE>
         </HEAD>
         <BODY BGCOLOR="WHITE">
         <APPLET CODE="CircleByParam.class" height = "400" width="400">
         <param name="X" value="200">
         <param name="Y" value="200">
         <param name="W" value="25">
         <param name="H" value="25">
         <param name="FillColor" value="#996633">
         This applet requires a Java-enabled browser.
         </APPLET>
         </BODY>
    </HTML>

    Nevermind I figured it out, needed to make sure the paint parameter was (Graphics screen) rather than (Graphics2D screen)

  • Flash Player linux, grey box issue (youtube vids and some applets do not display)

    I posted this question on my distro-specific forum as well as linuxquestions.org, however it appears to  be a unique problem, so here it is:
    When viewing videos on youtube.com, most other websites, and when trying  to run certain flash games, the flash applet will not display (though  the audio will play). Instead of displaying the flash applet, there  will be a grey box where the flash video or applet would normally be.
    This problem occurs on Firefox and Chromium, but not on Opera.
    My Specs are as follows:
    Distro: PCLinuxOS 2010 (32-bit)
    flash-player-plugin: 10.1-2pclos2010
    firefox: 3.6.6-1pclos2010
    swfdec has never been installed (to my knowledge)
    I did a lot of investigating about the problem but have turned up no  solutions thus far. Here are my results.
    Flash videos and applets which allow  access to the settings menu (like youtube played from their website) do  not display, however flash videos and applets which do NOT allow access  to the settings menu (including youtube videos embedded in other  websites) WILL display.
    Reinstalling flash-player-plugin and firefox through synaptic does  not solve the problem (though note that PCLOS works with rpm files, not  deb files. apt4rpm does not support the remove --purge operation,  however reinstalls are said to overwrite custom configs with stock  ones.)
    Creating a new firefox profile and/or starting FFox in safe-mode  does not solve the problem
    Creating another user and running FFox from that user will  properly display flash videos
    Comparing default plugins between my main user and new user shows  that there is no difference. So this likely rules out a defective  extension or plugin binary.
    Deleting ~/tmp/plugtmp* folders when FFox is closed does not solve  the problem.
    Removing the ~/.macromedia and ~/.adobe folders does not solve the  problem. (have checked permissions between the new test user and main  user, and they are equivalent)
    Downloading libflashplayer.so from the Adobe website and copying it  to /usr/lib/mozilla/plugins has no effect on the problem.
    I'm thinking that there might be somewhere else that flash stores  configurations for my user, and that maybe the settings there are  corrupted and would need to be purged. However frantic googling has  turned up nothing useful so far.
    Does anyone have any suggestions for me?

    The problem, at least in my case, was QtCurve's opacity. If I have opacity set to less than 100%, flash would not display for sites like Youtube and Vimeo, but worked elsewhere.
    The solution for me was to go into qtcurve's settings, and put npviewer.bin in the application exceptions section for window and menu opacity. Doing that, I was able to keep my transparent menus, and also use flash everywhere.
    You can find out what the application name is by launching your browser of choice in a terminal with qtcurve debug turned on, like so:
    QTCURVE_DEBUG=1 firefox
    If you watch through the lines that start with "QtCurve" you'll see "Application name". Look for the one that shows up when you try to load a video. In my case it was npviewer.bin. In yours, it might be nspluginviewer or something else. If you add an exception for that specific application, you'll fix your problem without having to compromise on your theme.

  • Adobe Bridge CS3 - does not display thumbnails for Canon 40D or 50D RAW files

    I wanted to use Bridge to view my Canon EOS 50D RAW files and it does not display the thumbnails, just icons. I checked my 40D cr2 files and saw same thing.
    I have purged the cache and rest the cache preferences and it has not helped. I would like to be abl eto view the thumbnails of the RAW files via Bridge if possible. Jpg files and Tif files can be viewed without any issues.
    Am using Bridge version 2.1.1.9 and Pshop CS3 10.0.1

    I have the exact same problem. I can view my RAW file thumbnails (which are .ARW files from my Sony A200 camera) in the Finder and in other applications, such as Preview, but not in Adobe Bridge CS3. I know that I did try purging the cache at one point to see if that would fix it, but then I didn't know what to do after that. Before I purged the cache, I was able to view RAW thumbnails in Bridge, but then they would not increase in size when I tried using the slider (at the bottom right of the Bridge window)

  • DataGrid does not display XML data

    Hello, and thanks for reading this...
    I am having a problem displaying XMLList data in a DataGrid.
    The data is coming from a Tree control, which is receiving it
    from a database using HTTPService.
    The data is a list of "Job Orders" from a MySQL database,
    being formatted as XML by a PHP page.
    If it would be helpful to see the actual XML, a sample is
    here:
    http://www.anaheimwib.com/_login/get_all_orders_test2.php
    All is going well until I get to the DataGrid, which doesn't
    display the data, although I know it is there as I can see it in
    debug mode. I've checked the dataField property of the appropriate
    DataGrid column, and it appears correct.
    Following is a summary of the relevant code.
    ...An HTTPService named "get_all_job_orders" retrieves
    records from a MySQL database via PHP...
    ...Results are formatted as E4X:
    HTTPService resultFormat="e4x"
    ...An XMLListCollection's source property is set to the
    returned E4X XML results:
    ...The "order" node is what is being used as the top-level of
    the XML data.
    <mx:XMLListCollection id="jobOrdersReviewXMLList"
    source="{get_all_job_orders.lastResult.order}"/>
    ...The "jobOrdersReviewXMLList" collection is assigned to be
    the dataProvider property of a Tree list, using the @name syntax to
    display the nodes correctly, and a change event function is defined
    to add the records to a DataGrid on a separate Component for
    viewing the XML records:
    <mx:Tree dataProvider="{jobOrdersReviewXMLList}"
    labelField="@name"
    change="jobPosForm.addTreePositionsToDG(event)"/>
    ...Here is the relevant "jobPosForm" code (the Job Positions
    Form, a separate Component based on a Form) :
    ...A variable is declared:
    [Bindable]
    public var positionsArray:XMLList;
    ...The variable is initialized on CreationComplete event of
    the Form:
    positionsArray = new XMLList;
    ...The Tree's change event function is defined within the
    "jobPosForm" Component.
    ...Clicking on a Tree node fires the Change event.
    ...This passes an event object to the function.
    ...This event object contains the XML from the selected Tree
    node.
    ...The Tree node's XML data is passed into the positionsArray
    XMLList.
    ...This array is the dataProvider for the DataGrid, as you
    will see in the following block.
    public function addTreePositionsToDG(event:Event):void{
    this.positionsArray = selectedNode.positions.position;
    ...A datagrid has its dataProvider is bound to
    positionsArray.
    ...(I will only show one column defined here for brevity.)
    ...This column has its dataField property set to "POS_TITLE",
    a field in the returned XML record:
    <mx:DataGrid width="100%" variableRowHeight="true"
    height="75%" id="dgPositions"
    dataProvider="{positionsArray}" editable="false">
    <mx:columns>
    <mx:DataGridColumn width="25" headerText="Position Title"
    dataField="POS_TITLE"/>
    </mx:columns>
    </mx:DataGrid>
    In debug mode, I can examine the datagrid's dataProvider
    property, and see that the correct XML data from the Tree control
    is present. However, The datagrid does not display the data in any
    of its 6 columns.
    Does anyone have any advice?
    Thanks for your time.

    Hello again,
    I came up with a method of populating the DataGrid from the
    selected Item of a Tree Control which displays complex XML data and
    XML attributes. After the user clicks on a Tree branch, I call this
    function:
    public function addTreePositionsToDG(event:Event):void{
    //Retrieve all "position" nodes from tree.
    //Loop thru each Position.
    //Add Position data to the positionsArray Array Collection.
    //The DataGrid dataprovider is bound to this array, and will
    be updated.
    positionsArray = new ArrayCollection();
    var selectedNode:Object=event.target.selectedItem;//Contains
    entire branch.
    for each (var position:XML in
    selectedNode.positions.position){
    var posArray:Array = new Array();
    posArray.PK_POSITIONID = position.@PK_POSITIONID;
    posArray.FK_ORDERID = position.@FK_ORDERID;
    posArray.POS_TITLE = position.@POS_TITLE;
    posArray.NUM_YOUTH = position.@NUM_YOUTH;
    posArray.AGE_1617 = position.@AGE_1617;
    posArray.AGE_1821 = position.@AGE_1821;
    posArray.HOURS_WK = position.@HOURS_WK;
    posArray.WAGE_RANGE_FROM = position.@WAGE_RANGE_FROM;
    posArray.WAGE_RANGE_TO = position.@WAGE_RANGE_TO;
    posArray.JOB_DESCR = position.@JOB_DESCR;
    posArray.DES_SKILLS = position.@DES_SKILLS;
    positionsArray.addItem(posArray);
    So, I just had to manually go through the selected Tree node,
    copy each XML attribute into a simple Array, then ADD this Array to
    an ArrayCollection being used as the DataProvider for the DataGrid.
    It's not elegant, but it works and I don't have to use a Label
    Function, which was getting way too complicated. I still think that
    Flex should have an easier way of doing this. There probably is an
    easier way, but the Flex documentation doesn't provide an easy path
    to it.
    I want to thank you, Tracy, for the all the help. I checked
    out the examples you have at www.cflex.net and they are very
    helpful. I bookmarked the site and will be using it as a resource
    from now on.

  • Aperture 3 project does not display any images in one Project

    This is a strange situation.  The bullets below outline the situation:
    The project does not display any images
    When I place the pointer over the project it shows there are 500+ images
    I have located the RAW images stored in my aperture library
    I can pull up the images using a smart folder and searching for photos taken on the event day
    This is happening only to one of my projects that I know of (weird!!)
    I have tried to 're-add' the image by both importing and dragging and dropping into the project, neither works
    I tried the following basics:
    Fixed permissions
    Rebuilt the database
    Tried to re-import the data, but when I have the 'don't import duplicates' these are not an option
    Found the images in my Aperture library
    I created another project and drug all of the images into that project
    Any idea how I can fix this?
    My fear is that if I delete the original project, the original master images will be deleted.

    The most common cause of this is some sort of stuff in the search box at the top of the browser that you don't expect to be there. Just clear it and all your images should show up.
    RB
    One note - if you drug your images from one project to another it moves them vs copies them unless you hold down the option key.

  • MENU item selection does not display drop down in ITS enabled transaction

    Hello,
    We are experiencing a strange behavior between two portal env.
    1. DEV.
    For example we have transaction MM01 display in the Portal via ITS (integrated). The end user can select the Menu Tab and the System Tab and the drop downs appear as expected.
    2. Prod
    Same  scenario as above. Only this time, end user is unable to select the button. The Menu and System Tab dont appear greyed out but selecting it does not display the drop down.
    Material, Edit GoTo Defaults are some of the links under the Menu tab for MM01.
    Very confusing. And this is the behavior in Prod for all transactions. Any ideas on why this is happening would be greatly appreciated.
    The architectural difference is that DEV has no Web Dispatcher versus Prod has the Web Dispatcher.
    We are on EP 7.0
    Many thanks.
    Regards,
    Sunil

    Thanks. Now, I realise this may cause dismay to some, but I have now solved the problem, and just wanted to share my experience with those even less savvy than myself. In Dreamweaver, the Spry css styles are arranged with little or no hint as to which style controls what. I found that there is a rule in the sub-menu styles that controls the little graphic arrows which indicate that there are dropdown subs under the tabs. I had removed these arrows to make way for my background images. However, the rules that control their positioning by percentage were still there, causing my images to display incorrectly. Of course, there was no way anyone could have spotted this and helped me as the fault was in the external spry css file, not the page code. So many thanks to vw2ureg for looking anyway. Regarding the page code, which you have flagged up, would you mind elaborating on what you see wrong here? I'm none the wiser. Many thanks again.

  • Product Revenue Bookings and Backlog Dashboard does not display any data

    Product Revenue Bookings and Backlog Dashboard does not display any data even though the load completed successfully.
    They are able to see just the parameters.
    Not sure if the upgrade of the database from 9.2.0.6 to 10.2.0.3 is a factor.
    What can I check?
    Is there some table to verify that the data exists for display in the Product Revenue Bookings and Backlog Dashboard?
    Screenshot is at:
    https://gtcr.oracle.com/gtcr-dir/gtcr_5637/6415786.993/Product_Revenue_Bookings_Backlog_Dashboard.doc
    Support suggested to create a new request set and run the initial load with load all summaries option; but there was no change in the Product Revenue Bookings and Backlog Dashboard.
    Any ideas?

    hi
    We have faced the similar problem after the upgrade to 10G
    What we did was
    Ran the initial load of time dimension, Item setup request set, and the request set of all the dash board in the clear and initial load mode..
    we were able to get the data once the clear and load is completed successfully
    Regards
    Ramesh Kumar S

  • REMOTE app on iPhone does not display Cover Art

    I use the Apple REMOTE App on my iPhone to control my iTunes music library on a Mac. The REMOTE App controls the iTunes playback properly. However, the Cover Art for each song does not display on the "song" screen - showing the song currently playing. Across my iPhone screen (where the Cover Art should appear) are the words containing album of the song). The name of the song and album correctly appear at the top of the screen.
    What is interesting is that when I hit the back arrow (left side top on song screen), all of the Cover Art appears in small thumbnails. The Cover Art also appears in other displays (for example, the currently-playing Album) using REMOTE on my iPhone. This means that the cover art is being transmitted to my iPhone - HOWEVER IT DOES NOT DISPLAY ON THE SONG SCREEN.
    Can anyone kindly help me resolve this - because I would really like the Cover Art to display properly on the song screen.  Thank you.  Dale

    Nezmo, This is really unbelievable.  I have suffered from the issue I described for SEVERAL YEARS.  Today, for some reason I decided to make this post on the Apple discussion board.  And, today the issue was fixed by Apple.  I just downloaded the update to the REMOTE app and the cover art now shows beautifully on my iPhone 6 plus.  Thanks.  Dale

  • CM14 BI Publisher - modifying an existing Data Model, the Graphic View in Query Builder does not display

    I am trying to edit the default forms/reports that come with CM14, trying to edit the data model, data set, (to get to the old Infomaker style graphic view) , the Query model does not display (error the list of tables is too long..) Oracle tell me the limit is 60,  there are not 60 tables referenced in any CM report.
    Does this Query builder view work at all on any report?
    (bigger question, we are moving from CM12, should we move to CM13 which works with infomaker?)
    Thanks,
    Paul L

    Kurt, thanks for your replies.
    A couple of notes/clarifications.
    1.     You are correct that BI works better in Firefox--I have observed issues with the BI display when using IE.  I would recommend using Firefox too.
    2.     You are correct about the way to get to the Query Builder to see a graphical view of data tables.  There are basically two issues with this that I mentioned, but will re-iterate:
    a.  If you have an EXISTING query in the data set, then click the "Query Builder" button, this will remove the existing query that's there, it will NOT display the existing query in the query builder.  Query Builder works only to create a NEW query from scratch.
    b.  Query builder is limited to selecting 60 fields max in your query.  If you are creating a large report with many tables, you may find that 60 fields is not enough.  For that you will have to work in the SQL edit screen rather than using the query builder.
    I would impress on anyone developing CM14 reports that they become familiar with the database schema and relationships to avoid problems when developing your BI reports.  You should be able to find the tables and joins documentation in the knowledgebase.

  • Form does not display all records from table

    Hi guys
    I modified one form that was based on a signle DB table. I removed certain fields from the table and added some extra fields to that table. Then based on the new table I also modified the form and removed the text items related to old fields in the table and added new text items pointing to the new fields now. II have checked all the new items properties and they have don't seem to be wrong or so. But now the problem is the form does not display all the records from the table. before it used to display all records from the table when qureied but not now. It only certain records from the table containing all new data and also old data but the form does not display other records though I don't see any obvious discrepancy. Remember that the before doing the modifications, I have table back for the old, created another table that contained new records for the new fields, and then I inserted the old records and updated the new table data in the new table with these new table values. So this way I have got my new table. Could someone help why the new modified form fails to display all records from the new table updated table though it display some of them successfully.
    Any help will be appreciated.
    Thanks

    hi
    Set the block property of "Query All Records" to "YES"
    hope it will work.
    Faisal

  • SMS text message header does not display sender information

    When I receive a text message the only header information that displays is the date and time.  The senders information does not display.  The lines are not even there.  There is no way to reply to a text message or tell who the sender is.  This problem is only with SMS messages.  Regular email headers display just fine.  I have done a wipe, reset, reload, everything possible with no luck.  I am the only one in my office with this problem.  I have not been able to find any information or postings from anyone having the same problem.  I can read the text message, but there is no header (except for the date and time).  Any thoughts?
    Blackberry Curve 8350i

    I was able to resolve the problem by uninstalling the Blackberry desktop manager software and reinstalling it selecting Internet Email vs. Blackberry Enterprise Server.  If you get to the screen that asks you to choose which type of email service you use and you accidentally choose the wrong one your phone will work but will do strange things, including sending all sorts of redirect emails.  For me, this seemed to do the trick.

Maybe you are looking for

  • Value in MM01

    Hi, I heave request to put initial value 01 (division) first tab for field MARA-SPART in standard tr. MM01. main prog SAPLMGD1, screen 2001. what to do?

  • Odds and evens

    Hi, How can i determine when a number is odd or even?. Rgds, Jose

  • NAT7210BPD It has controlled by Z80.

    AT7210BPD It has controlled by Z80. It takers by Visual Basic to ibrd(). [READYcrlf] is transmitted at this time. [LF] It is [EOI] when transmitting. It has published. [LF+EOI] Interruption occurs from NAT7210 once again after transmission. What proc

  • Emailing InDesign generated PDF

    Hello all. I have been trying to email a PDF I created from my InDesign file, but when the recipient opens the file on their computer it has 'holes' in it. For example, there are many words where the "ff" is let out of words like "effort" so it appea

  • Can't install itunes because of quicktime

    My itouch won't register with itunes. A pop up for 10.1 came up, so I figured that was the problem. I started the download, but then I got two errors pertaining to quicktime. A box searching for the quicktime.msi destination, and "older version canno