Jdev 11g: several attributes are not supported by "simple" graph types

Hi,
My question is especially for Jdev development team. I want to discuss this issues first in this forum before I open a SR at Oracle Support.
Several attributes from dvt:graph are not supported in dvt:areagraph, dvt:linegraph or dvt:bargraph.
- TimeSelectorListener
- TimeRangeMode
- TimeAxisType --> supported for dvt:linegraph but not for dvt:areagraph. Why?
- TimeAxisListener
- TimeZone
- ExplicitTimeRangeStart
- ExplicitTimeRangeEnd
- ContinuousTimeAxisInterval
This means if I want (need) to use some of this attributes I need to use dvt:graph (advanced graph).
But here is the next problem:
This type of graph can't be selected from component palette or graph create wizard.
It's still possible to "convert" e.g. a dvt:linegraph to dvt:graph by editing the source code of jspx but in my opinion this should not be the normal way!
I also didn't get a clear answere if dvt:graph is desupported or will be desupported in the next release(s)
(see my previous post about advanced graph: Jdev 11g: Advanced graph no longer supported?
Conclusio:
======
If the attributes I mention above are still supported and needed (also in further releases) than they either need to be supported by the relevant simple graph tags or dvt:graph must be selectable from component palette.
If dvt:graph is planned to be de-supported in further releases than this should be made public to avoid development of applications with non-supported components.
regards
Peter

Peter,
you should have followed up on the thread you reference. First of all, Katia gave you the answer of how to get the listener working
"The recommended way is to create a line graph, and then add a time selector tag (like Peter pointed out).
However, since in the dvt:lineGraph there is no attribute for the time selector listener, you need to add the listener in the backing bean.
Here are the code snippets:
In jspx:
<dvt:lineGraph id="master"
value="#{bindings.master1Graph.graphModel}"
style="Comet"
imageFormat="FLASH" imageWidth="400"
binding="#{sampleGraph.richTimeSelectorMasterGraph}"
animationOnDisplay="AUTO"
imageHeight="250">
<dvt:legendArea rendered="false"/>
<dvt:timeSelector explicitStart="#{sampleGraph.startDate}" explicitEnd="#{sampleGraph.endDate}" fillColor="#33FFFFFF" borderColor="#313675" mode="EXPLICIT" />
<dvt:seriesSet defaultMarkerType="MT_CURVE_LINE">
<dvt:series id="0" color="#FDB026"/>
</dvt:seriesSet>
</dvt:lineGraph>
In the backing bean:
public UIGraph getRichTimeSelectorMasterGraph()
if (m_richTimeSelectorMasterGraph == null)
m_richTimeSelectorMasterGraph = new UIGraph();
m_richTimeSelectorMasterGraph.addTimeSelectorListener(this);
return m_richTimeSelectorMasterGraph;
public void setRichTimeSelectorMasterGraph(UIGraph graph)
m_richTimeSelectorMasterGraph = graph;
Second, you got Katia's attention already and this is as much developer contact you can get on this forum. Katia ia the product manager for DVT
Frank

Similar Messages

  • Maven giving "annotations are not supported in -source 1.3" for  @Entity

    I m using maven for spring, hibernate with jpa . When i m running comman "mvn clean install" ,it is giving error in compilation of a bean class which is using jpa annotations.The error is :
    annotations are not supported in -source 1.3
    (use -source 5 or higher to enable annotations)
    @Entity
    Pom.xml is as below :
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.niit.core</groupId>
    <artifactId>Spring3Example</artifactId>
    <packaging>jar</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>Spring3Example</name>
    <url>http://maven.apache.org</url>
    <properties>
    <org.springframework-version>3.1.2.RELEASE</org.springframework-version>
    </properties>
    <repositories>
    <repository>
    <id>JBoss Repo</id>
    <url>https://repository.jboss.org/nexus/content/repositories/thirdparty-releases</url>
    </repository>
    </repositories>
    <build>
    <plugins>
    <plugin>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.0</version>
    </plugin>
    </plugins>
    </build>
    <dependencies>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>${org.springframework-version}</version>
    </dependency>
    <!-- <dependency>
    <groupId>hsqldb</groupId>
    <artifactId>hsqldb</artifactId>
    <version>1.8.0.2</version>
    </dependency>
    -->
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>${org.springframework-version}</version>
    </dependency>
    <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>3.8.1</version>
    <scope>test</scope>
    </dependency>
    <dependency>
    <groupId>javax</groupId>
    <artifactId>javaee-api</artifactId>
    <version>6.0</version>
    <scope>provided</scope>
    </dependency>
    <dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-core</artifactId>
    <version>3.6.10.Final</version>
    </dependency>
    <dependency>
    <groupId>org.hibernate.java-persistence</groupId>
    <artifactId>jpa-api</artifactId>
    <version>2.0-cr-1</version>
    </dependency>
    <dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-entitymanager</artifactId>
    <version>3.5.0-Beta-2</version>
    </dependency>
    <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>2.5</version>
    </dependency>
    </dependencies>
    </project>
    And class is as below :
    package com.niit.form;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.Id;
    import javax.persistence.Table;
    @Entity
    @Table(name="CONTACTS")
    public class Contact {
    @Id
    @Column(name="ID")
    @GeneratedValue
    private Integer id;
    @Column(name="FIRSTNAME")
    private String firstname;
    public String getFirstname() {
    return firstname;
    public void setFirstname(String firstname) {
    this.firstname = firstname;
    public void setLastname(String lastname) {
    this.lastname = lastname;
    public Integer getId() {
    return id;
    public void setId(Integer id) {
    this.id = id;
    }

    java version is 1.6.0_24
    There is no settings.xml in users/.m2
    I think , maven is using default settings.xml which is in M2_HOME\conf which has everything commented as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements. See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership. The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License. You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied. See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    <!--
    | This is the configuration file for Maven. It can be specified at two levels:
    |
    | 1. User Level. This settings.xml file provides configuration for a single user,
    | and is normally provided in $HOME/.m2/settings.xml.
    |
    | NOTE: This location can be overridden with the system property:
    |
    | -Dorg.apache.maven.user-settings=/path/to/user/settings.xml
    |
    | 2. Global Level. This settings.xml file provides configuration for all maven
    | users on a machine (assuming they're all using the same maven
    | installation). It's normally provided in
    | ${maven.home}/conf/settings.xml.
    |
    | NOTE: This location can be overridden with the system property:
    |
    | -Dorg.apache.maven.global-settings=/path/to/global/settings.xml
    |
    | The sections in this sample file are intended to give you a running start at
    | getting the most out of your Maven installation. Where appropriate, the default
    | values (values used when the setting is not specified) are provided.
    |
    |-->
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <!-- localRepository
    | The path to the local repository maven will use to store artifacts.
    |
    | Default: ~/.m2/repository
    <localRepository>/path/to/local/repo</localRepository>
    -->
    <!-- interactiveMode
    | This will determine whether maven prompts you when it needs input. If set to false,
    | maven will use a sensible default value, perhaps based on some other setting, for
    | the parameter in question.
    |
    | Default: true
    <interactiveMode>true</interactiveMode>
    -->
    <!-- offline
    | Determines whether maven should attempt to connect to the network when executing a build.
    | This will have an effect on artifact downloads, artifact deployment, and others.
    |
    | Default: false
    <offline>false</offline>
    -->
    <!-- pluginGroups
    | This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
    | when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers
    | "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.
    |-->
    <pluginGroups>
    <!-- pluginGroup
    | Specifies a further group identifier to use for plugin lookup.
    <pluginGroup>com.your.plugins</pluginGroup>
    -->
    </pluginGroups>
    <!-- proxies
    | This is a list of proxies which can be used on this machine to connect to the network.
    | Unless otherwise specified (by system property or command-line switch), the first proxy
    | specification in this list marked as active will be used.
    |-->
    <proxies>
    <!-- proxy
    | Specification for one proxy, to be used in connecting to the network.
    |
    <proxy>
    <id>optional</id>
    <active>true</active>
    <protocol>http</protocol>
    <username>proxyuser</username>
    <password>proxypass</password>
    <host>proxy.host.net</host>
    <port>80</port>
    <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
    </proxy>
    -->
    </proxies>
    <!-- servers
    | This is a list of authentication profiles, keyed by the server-id used within the system.
    | Authentication profiles can be used whenever maven must make a connection to a remote server.
    |-->
    <servers>
    <!-- server
    | Specifies the authentication information to use when connecting to a particular server, identified by
    | a unique name within the system (referred to by the 'id' attribute below).
    |
    | NOTE: You should either specify username/password OR privateKey/passphrase, since these pairings are
    | used together.
    |
    <server>
    <id>deploymentRepo</id>
    <username>repouser</username>
    <password>repopwd</password>
    </server>
    -->
    <!-- Another sample, using keys to authenticate.
    <server>
    <id>siteServer</id>
    <privateKey>/path/to/private/key</privateKey>
    <passphrase>optional; leave empty if not used.</passphrase>
    </server>
    -->
    </servers>
    <!-- mirrors
    | This is a list of mirrors to be used in downloading artifacts from remote repositories.
    |
    | It works like this: a POM may declare a repository to use in resolving certain artifacts.
    | However, this repository may have problems with heavy traffic at times, so people have mirrored
    | it to several places.
    |
    | That repository definition will have a unique id, so we can create a mirror reference for that
    | repository, to be used as an alternate download site. The mirror site will be the preferred
    | server for that repository.
    |-->
    <mirrors>
    <!-- mirror
    | Specifies a repository mirror site to use instead of a given repository. The repository that
    | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
    | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
    |
    <mirror>
    <id>mirrorId</id>
    <mirrorOf>repositoryId</mirrorOf>
    <name>Human Readable Name for this Mirror.</name>
    <url>http://my.repository.com/repo/path</url>
    </mirror>
    -->
    </mirrors>
    <!-- profiles
    | This is a list of profiles which can be activated in a variety of ways, and which can modify
    | the build process. Profiles provided in the settings.xml are intended to provide local machine-
    | specific paths and repository locations which allow the build to work in the local environment.
    |
    | For example, if you have an integration testing plugin - like cactus - that needs to know where
    | your Tomcat instance is installed, you can provide a variable here such that the variable is
    | dereferenced during the build process to configure the cactus plugin.
    |
    | As noted above, profiles can be activated in a variety of ways. One way - the activeProfiles
    | section of this document (settings.xml) - will be discussed later. Another way essentially
    | relies on the detection of a system property, either matching a particular value for the property,
    | or merely testing its existence. Profiles can also be activated by JDK version prefix, where a
    | value of '1.4' might activate a profile when the build is executed on a JDK version of '1.4.2_07'.
    | Finally, the list of active profiles can be specified directly from the command line.
    |
    | NOTE: For profiles defined in the settings.xml, you are restricted to specifying only artifact
    | repositories, plugin repositories, and free-form properties to be used as configuration
    | variables for plugins in the POM.
    |
    |-->
    <profiles>
    <!-- profile
    | Specifies a set of introductions to the build process, to be activated using one or more of the
    | mechanisms described above. For inheritance purposes, and to activate profiles via <activatedProfiles/>
    | or the command line, profiles have to have an ID that is unique.
    |
    | An encouraged best practice for profile identification is to use a consistent naming convention
    | for profiles, such as 'env-dev', 'env-test', 'env-production', 'user-jdcasey', 'user-brett', etc.
    | This will make it more intuitive to understand what the set of introduced profiles is attempting
    | to accomplish, particularly when you only have a list of profile id's for debug.
    |
    | This profile example uses the JDK version to trigger activation, and provides a JDK-specific repo.
    <profile>
    <id>jdk-1.4</id>
    <activation>
    <jdk>1.4</jdk>
    </activation>
    <repositories>
    <repository>
    <id>jdk14</id>
    <name>Repository for JDK 1.4 builds</name>
    <url>http://www.myhost.com/maven/jdk14</url>
    <layout>default</layout>
    <snapshotPolicy>always</snapshotPolicy>
    </repository>
    </repositories>
    </profile>
    -->
    <!--
    | Here is another profile, activated by the system property 'target-env' with a value of 'dev',
    | which provides a specific path to the Tomcat instance. To use this, your plugin configuration
    | might hypothetically look like:
    |
    | ...
    | <plugin>
    | <groupId>org.myco.myplugins</groupId>
    | <artifactId>myplugin</artifactId>
    |
    | <configuration>
    | <tomcatLocation>${tomcatPath}</tomcatLocation>
    | </configuration>
    | </plugin>
    | ...
    |
    | NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to
    | anything, you could just leave off the <value/> inside the activation-property.
    |
    <profile>
    <id>env-dev</id>
    <activation>
    <property>
    <name>target-env</name>
    <value>dev</value>
    </property>
    </activation>
    <properties>
    <tomcatPath>/path/to/tomcat/instance</tomcatPath>
    </properties>
    </profile>
    -->
    </profiles>
    <!-- activeProfiles
    | List of profiles that are active for all builds.
    |
    <activeProfiles>
    <activeProfile>alwaysActiveProfile</activeProfile>
    <activeProfile>anotherAlwaysActiveProfile</activeProfile>
    </activeProfiles>
    -->
    </settings>

  • I'm being shown an error pop-up message periodically saying "There was a problem connecting to the server. URLs with the type 'file:' are not supported." I have a brand new MacBook Pro, and at no time am I actually having trouble connecting to the server.

    I'm being shown an error pop-up message periodically saying "There was a problem connecting to the server. URLs with the type 'file:' are not supported." I have a brand new MacBook Pro, and at no time am I actually having trouble connecting to the server, but this message continues to pop-up several times a day at random intervals. Is there something I'm doing wrong? Or is my computer just having a glitch? Other than that, and a mildly sticking caps lock button, it's working perfectly.
    Thank you!

    Alright it didn't solve it. Any other suggestions?
    I haven't suggested a solution yet. I want to know whether you still get the messages while Time Machine is disabled. Do you? If so, try any or all of the solutions proposed in this thread:
    There was a Problem connecting to the...: Apple Support Communities

  • Tabstrip wizard- Protected tab titles are not supported

    Hello Experts,
    I have created a tabstrip using wizard and all the tab buttons and subscreens are working fine except for one warning message I get everytime I pust a tab. The message is
    Diagnosis
    Protected tab titles are not supported.You cannot print the title on a tab index as the tab index does not support this'.
    Procedure
    Check the screen modifications or the Screen Painter definitions of the tab title.
    When you modify the screen, do not set the INPUT attribute of the tab title to '0'.
    I tried changing the input value for the tab buttons to '1', even then its the same error.
    Anyone who has came accross such error?
    Regards,
    Ahmad
    Message was edited by: Ahmad Quraishi

    Hi,
       I think you are using LOOP AT SCREEN to set some fields in change mode( input mode ).   While do that, it is trying to set the tab titles also as input mode.   So change this to display only by setting the value to 0 for tabstrips.
    when setting to change mode, skip the tabstrips as follows
      LOOP AT SCREEN.
        IF screen-name EQ 'TAB1'
          OR screen-name EQ 'TAB2'.
          CONTINUE.
        ENDIF.
        screen-input = 1.
        MODIFY SCREEN.
      ENDLOOP.

  • Protected tab titles are not supported

    Dear Experts,
    I am working on Tabstrips. I have designed 3 tabs on my tabstrip. when i am looking the screen i am getting a message like "Protected tab titles are not supported".
    Does anybody knows how to fix this?
    Thanks,
    chaitanya.

    Error message is like this
    Protected tab titles are not supported (tab TABSTRIP title COMPANY)
    Message no. 00119
    Diagnosis
    You cannot print the title on a tab index as the tab index does not support this.
    Procedure
    Check the screen modifications or the Screen Painter definitions of the tab title.
    When you modify the screen, do not set the INPUT attribute of the tab title to '0'.

  • Protected tab titles are not supported (tab TABSTRIP title COMPANY)

    hi gurus
    i got error in infotype like this wat is the problem
    Protected tab titles are not supported (tab TABSTRIP title COMPANY)

    Error message is like this
    Protected tab titles are not supported (tab TABSTRIP title COMPANY)
    Message no. 00119
    Diagnosis
    You cannot print the title on a tab index as the tab index does not support this.
    Procedure
    Check the screen modifications or the Screen Painter definitions of the tab title.
    When you modify the screen, do not set the INPUT attribute of the tab title to '0'.

  • SOLUTION MANAGER - VAR Scenario - Attributes are not transfered

    Hi Solman Gurus
    I have an issue regarding connection between Customer and VAR solman.
    IThe connection is established following document How To Setup ServiceDesk 2 ServiceDesk Connection Nov 09.pdf.
    The problem is in VAR Solman.
    When message is transfered from Customer solman to VAR solman the following attributes are not transfered:
    Sold-to party, Reported by, Support Team, Message Processor.
    The Ibase is configured in both systems. When message is posted from satelite to Customer Solman all this attributes
    are transfered. In the next steep, when message is transfered from Customer solman to VAR solman this attributes remain
    empty in VAR Solman.
    What confugration is missing in VAR Solman?
    Thank you in advance
    Marko

    Hello Marko,
    How did you define the value mapping? Automatically or manually?
    Have you checked that Incoming and outgoing value mapping has been created in both systems?
    Are you copying the values or taking an other action?
    Could there be a rule that is setting the value to space?
    I'd take a closer look at your value mapping and make sure incomming and outgoing have been defined properly on each system and make sure the rule is correct, and its not taking some unexpected action like set the value to blank when you wanted to copy it.
    Regards,
    Paul

  • RADIUS-assigned VLANs are not supported when you enable multiple BSSIDs

    Could someone please tell me is this 100% correct?
    "RADIUS-assigned VLANs are not supported when you enable multiple BSSIDs"
    Any ideas why? Does anyone have a way around this?
    As a workaround I was thinking of setting up one broadcast SSID for guests and one non-broadcast SSID for RADIUS assigned VLANs, however i'd prefer to have both broadcast due to numerous Vista and PDA connection issues.

    Hi.
    Thanks for your reply.
    That is what I would like to do; have one SSID and assign the users to different VLANs based on policy.
    I have all the VLANs and subinterfaces set up correctly and working independently, but the VLAN assigment does not seem to work correctly.
    If I do a "show dot11 association all-client" the RADIUS attribute appears to have altered the VLAN, but the device has no connectivity and cannot DHCP.
    This is with 1130AG in autonomous mode and Microsoft IAS as RADIUS.
    Apparently there may be a problem with mbssid and RADIUS assigned VLANs.

  • ... 31 characters are not supported ...

    When I trying to save a file to disk from a browser (Firefox, Chrome not Safari), I get a system message that says "Names 31 characters are not supported on the volume destination. Please choose a filename That is no longer That 31 charters.  "

    from this website
    http://www.jmu.edu/computing/mac/filenamesOSX.shtml
    Long file names. Mac OS 9 has a 31-character limit for filenames. In Mac OS X, a filename can be as long as 256 characters and span several lines.
    Still, a couple of glitches are possible:
    In many applications (especially non-cocoa ones), the Open and Save dialogs show only the first 31 characters of a filename. If you simply open and save a document that already has a longer name, the full name is preserved even though you don't see it in the Open and Save dialogs. If you use the Save As command to save a file under a new name, however, you will be limited to 31 characters (although you can add extra characters in the Finder later).
    Some applications may truncate a long name to 31 characters when saving a file. Some compression utilities may do this when compressing a file or folder.

  • Error -annotations are not supported in -source 1.3

    Hi friends, when I try to compile my src code using ANT ,
    it gives me this error :
    annotations are not supported in -source 1.3 -
    use -source 5 or higher to enable annotations)
                   @Override
    ^
    what is source 5...? If it is a jdk version than I am using jdk 1.6.X
    Plz help

    ANT is apparently compiling with the -source 1.3 option, meaning that the code must be compatible with java 1.3. Check the declaration of the javac ant task in your build file. It should have something like this:
    <javac source="1.3" ../>remove that attribute.

  • Reports older than version 9 are not supported

    Hello,
    I tried to access crystal reports rpt files from java client application:
    reportClientDoc.open(filename,0);
    and I got the following error meassage as ReportSDKException:
    Reports older than version 9 are not supported.
    I am using the jar files of the here downloaded JRC pack as runtime libraries (actually in NetBeans IDE 7.2.1).
    I tried the followiing packs:
    crjava-runtime_12.2.217 : SAP Crystal Reports for Java Runtime Components - Java Reporting Component (JRC)
    and
    JRC 11.8
    giving similar error message.
    Is there any older pack available for download prior of Crystal Reports version 9 ?  I could not find for very long search.
    Or is there any other possibilty to access such RPT files from java? (Actually these file are generated by IBAK-IKAS Sewer Inspection Software).
    I suppose VisualStudio is a possibility (which version?), but java would be better for us on our operation system platform.
    thanks for any tip
    Marcell

    Ted,
    I am actually using your JSP page code from "Ensuring Report Cleanup" blog.
    All my reports have a date stamp of 2006-2009, so they are fairly recently.
    And they are 3rd party, not sure I can modify them (technically or legally)
    I tried to open several other reports (with more recent datestamp), and got exceptions like:
    Error
    Error finding JNDI name (CSGSQL_2K5) 
    What might be causing that and how to fix it?
    (I try to open it from file system, not RAS. Running JSP on Tomcat6. maybe some XML config file missing?)
    Does it mean that this report is not too old for CRViewer12, so we are one step further ?
    Also, how do I pass info to that report via JSP (DB connection, parameters, etc)?
    Any good documentation/books on working with CRViewer 12 with JSP ?
    I could only find books on how to use CR with .NET. 
    Sorry for the newbie questions, very new to CR.
    TIA,
    Oleg.

  • Error message: "FireWire connections are not supported.  To transfer songs"

    I recently purchased a Monster iCarPlay to play my ipod in my car. I have had no problems until recently. Upon disconnecting my ipod from the iCarPlay wire, I the following message popped up: "FireWire connections are not supported. To transfer songs, connect the USB cable provided." It also prompts me to click the center button to dismiss the message. However, I'vd followed these instructions, and the message does not go away. Does anyone know what I can do to resolve this problem? Or is it anything to worry about?

    That is the message you see when you attach a 5th gen iPod to a computer using FIREWIRE. so... i suspect that for some reason, the 3rd party iCarPlay device must be confusing the iPod into thinking it is being docked or attached to a data line of some type and not simply charging.
    As for the sudden occurrence of the message, it does seem strange however, keep in mind that you are using a 3rd party device that may not be supported or endorsed by Apple at all.
    Beavis2084

  • "one or more of the items in your selection contains Aperture albums that are not supported in iphoto".

    I have some folders in iPhoto called 'Recovered Folder'. When I try to delete them I get this message: "one or more of the items in your selection contains Aperture albums that are not supported in iphoto".
    I don't use Aperture (did install it to try it out), and have deleted Aperture App from my Mac.
    How can I get rid of these fodlers?

    i finally figured this out:
    fyi, iphoto and aperture can now share (i.e., access) the same library. apple details it here:
    http://support.apple.com/kb/HT5260?viewlocale=en_US&locale=en_US
    i use both iphoto and aperture, and i suspect something went amiss, at some point, while aperture was accessing my iphoto library.
    this is how i fixed the problem:
    i launched aperture, then (per the instructions linked above) switched to (i.e., accessed) my iphoto library. i was then able to delete the "recovered folder" and the album it contained. i then quit aperture and relaunched iphoto.
    NOTE: at that time, although i expected the "recovered folder" to be gone, it was still present. but this time, i was able to delete the folder from within iphoto without the "contains aperture items" error message.
    (Sparky030405, i realize you've since deleted aperture. while i can't say my method is the *only* way to solve this problem, it's the way i was able to solve it. so, you might consider reinstalling aperture in order to delete the folder, then uninstalling aperture, once again.)

  • I have just transfered 2 dvd movies i purchases with digital copies to my itunes account and now i am trying to put them om my ipad it keeps telling me that these movies are not supported on my ipad.  what can i do?

    I have just transfered 2 dvd movies i purchases with digital copies to my itunes account and now i am trying to put them om my ipad it keeps telling me that these movies are not supported on my ipad.  what can i do?

    Highlight the movie, go to iTunes menu ADVANCED and select create iPad and AppleTV version.

  • HT5287 If DVD Movies, Audio CD's and even burning CD and DVD's are not supported, what is the point of DVD & CD Sharing then? Wouldn't it just be better to remote in or use a thumb drive if it's only able to be used for data transfer?

    If DVD Movies, Audio CD's and even burning CD and DVD's are not supported, what is the point of DVD & CD Sharing then? Wouldn't it just be better to remote in or use a thumb drive if it's only able to be used for data transfer?
    Or am I missing the bigger picture?

    As long as you have a Superdrive or an external burner/drive, burning, watching, installing, etc. from CD or DVD will work just fine. And so will sharing.

Maybe you are looking for

  • Wi-fi: no hardware installed

    Since the upgrade to 10.7.2 on my macbook pro the wifi icon is greyed out (and can't get any access to wi-fi). The iMac (on 10.7,2) is fine. Any suggestions to get it fixed ? Thx

  • Change Tablespace

    Hi, I was trying to insert into a table created by me and got an error message, which implies my schema doesn't have enough space available on the default tablespace USERS. I was told to try another tablespace for that table and check. I don't know h

  • How to transfer input file into XI through sender file adapter

    Hi I am quite new to XI. Want to know how I can transfer a file into XI through sender file adapter. I dont have any input file, so I have to create a sample input file and I want to transfer that into XI. Can you please advise me of the steps involv

  • Problem to install Photoshop Elements 6 in MAC

    I just buyed the Adobe Photoshop Elements 6, and was really happy to install it on my MAC. I have several problems, installing it always go throw the process and then says there was a problem on the installation with no more details. I think it may b

  • RRI values in WAD

    Hi,     We have created the pie chart on the product query in the WAD 7.0,     Product query is linked with Customer WAD template(3.5) by using RRI.     After executing the pie chart i will check the goto option by selecting the particular product in