Extension Builder Creates mx:Application, and not csxs:CSXSWindowedApplication

I had been creating InDesign Extensions manually (i.e., without the ExtensionBuilder) up until now. I remember being told to use csxs:CSXSWindowedApplication for the panel.
We just recently got ExtensionBuilder, and I noticed that it creates mx:Application. Is this what it is supposed to be creating? Aside from the theoretical issue, there is the practical problem that I can't use the close() method which csxs:CSXSWindowedApplication has in order to close the panel.
I'd be greatful for an explanation.
TIA,
mlavie

mx:Application has less overhead than csxs:CSXSWindowedApplication maybe that's the reason it's the default.
You'll almost always want csxs:CSXSWindowedApplication though...
Harbs
P.S. What's with csxs:Application? Will we ever get that?

Similar Messages

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.Not working in USA timezone.

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works fine in our side (Timezone,kolkata ,india even for Timezone,slvaniya,USA) but our USA client is telling that on changing the date it not starts from start-up sequence.Can anyone plz suggest the reason for it.

    This is the code which we have used.
    //////////Return if it is first time for the day or not//////////////
    + (BOOL)isFirstTimeToday {
    BOOL result = YES;
    NSDate *now = [[NSDate alloc] init];     /// represents the current time
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: now];
    NSDate *today = [gregorian dateFromComponents:components];
    [now release];
    [gregorian release];
    NSDate *savedDate = [[NSUserDefaults standardUserDefaults] objectForKey:LAST_TIME_VISITED];
    if (savedDate) {
    if ([today earlierDate:savedDate] == today) {
    result = NO;
    return result;
    ////////Stores the date/////////////
    + (void)userDidVisitReenforceScreenToday {
    [[NSUserDefaults standardUserDefaults] setObject:[NSDate todayAtMidnight] forKey:LAST_TIME_VISITED];
    ////////////What [NSDate todayAtMidnight] stores/////////////////////
    + (NSDate *)daysFromNowAtMidnight:(NSInteger)nOfDays {
    NSDate *date = [NSDate dateWithTimeIntervalSinceNow: (86400*nOfDays)];
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: date];
    NSDate *dateAtMidnight = [gregorian dateFromComponents:components];
    [gregorian release];
    NSLog(@"dateAtMidnight : %@",dateAtMidnight);
    return dateAtMidnight;
    + (NSDate *)todayAtMidnight {
    return [self daysFromNowAtMidnight:0];
    Please Suggest..

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    Try posting in the developer forums to see if you can get some assistance,you'll have to be a registered developer for access though.
    developer.apple.com

  • Extension Builder for Flash CS6 is not working

    Hi I'm trying to make an extension for Flash CS6, using Extension Builder 1.5
    When I run the extension from Flash Builder, Flash CS6 opens up, but the extension doesn't show up under Window>Extensions menu.
    I'm just trying with an empty extension.
    Note: If I create another extension for Photoshop, it works fine.

    //resize 100*100
    window.width = 100;
    window.height = 100;
    //position 300,300
    window.nativeWindow.x = 300;
    window.nativeWindow.y = 300;

  • Creating an Application module not connected to any database

    Hi,
    In my application, we have only a custom VO, created as per http://download-west.oracle.com/docs/cd/B31017_01/web.1013/b25947/bcadvvo008.htm. In this VO, we are reading a CSV file.
    My question is, as my application does not require any database as its source, I dont want to have any database associated with my ADF application. However, when I create the AM, it doesnt let me go ahead till I give it a database connection. Is there a way to circumvent this, or remove the database connection related code after creating the AM in this way.
    Thanks,
    Amit

    Wow, beautiful...just what the doctor ordered !
    Thanks John !
    One note, for people who try this - in the link, Lucas is using http://127.0.0.1:8988 etc to specify the url to the csv...but i guess for that to work, you need to have some kind of web server running.. But if you just have a local file and right now, no web server to use 127.0.0.1, you can use file:///c:/test.csv, where the csv is sitting in c drive.
    I got this idea from http://www.oracle.com/technology/products/jdev/howtos/urldatacontrol/urldatacontrol.html...this one is cool too, here they have used this url data control to read rss !

  • How do I not sync an application AND not delete it.

    I have airshare installed on my iPod touch. and it allows me to use the iPod touch as a small external wireless file server. At the moment I have about 20GB of data managed by airshare. Every time I sync the iPod touch with iTunes, in addition to backing up my music, notes, etc, iTunes also backs up the airshare stuff. I have about 16GB of data managed by airshare. The data is always changing. Naturally, each time I do a sync it takes a good part of a day to back up (sync) the iPod.
    My question is: How do I configure iTunes to NOT sync the airshare applcation and its managed data?
    If I elect to not sync the airshare application, iTunes wants to delete the application and the data.
    thanks in advance

    Anything not in the Force Quit window should be listed in the Activity Monitor list of processes. Open Activity Monitor (from Utilities folder), find and select the process, and click the "Force a process to quit" button. Or choose View/Quit Process.

  • Create ejb application and configure  it into webservices

    hi experts
    how to create a small ejb application in netweaver developer studio and how to configure that application into web services.
    please help me
    thanks
    ram.

    Hi..
    First of all create java dictionary project..
    then create Ejb project...wchich will contain session bean n entity beans
    session bean will contain ur business logic..
    than create java project for wrapper class..
    nw create enterpirse application project i.e. Ear project..
    create .ear file for EAr project..deply it..
    nw switch to Eaj p[roject nn right click on session bean..it will ask for new Web service ..create
    n nw deply .Ear file n test Web service for WsNavigaor...
    for thorough info go to thread:[EJB model] it will provide so many links reagrding Ejb project n web services...
    hope it will sovle ur problm..
    Regards,
    Khushboo

  • E-Recruiting EHP4 WebDynpro link for create internal application and portal

    Hallo there,
    we have installed ehp4 with web Dynpro and I am searching the link for creating an *internal* application.
    The external Aplication I found in the se80 ERC_C_APPL_MGMT_UI. But this link is only for external applications.
    The other Links I try to find is for the portal. I need it in the ESS and the MSS.
    I didn't find them in the package PAOC_RCF_UI_SELF_SERVICES.

    Hello,
    For creating manual internal and external applications, the WebDynpro application is the same - ERC_A_APPL_MGMT. The component is the same ERC_C_APPL_MGMT_UI as you have said in your e-mail. In this component you can also check the view V_APPL_DATA and see that both fields for internal and external are available. The fields are determined at runtime based on whether you have selected 'Internal' or 'External' link in the portal. In the recruiter portal role, when configuring the pages for internal or external you use Application Parameter IS_INTERNAL. If IS_INTERNAL=X then this parameter will be passed to the component mentioned above and the system will know that it should display internal candidate fields. If  IS_INTERNAL=' ' then system will display for external and this is the default.
    You can click package PAOC_RCF_WD_UI > Web Dynpro > Web Dynpro Applicat and right click ERC_A_APPL_MGMT to test. When the page opens, you can add parameter &IS_INTERNAL=X to the URL and you will see it will change to internal application page.
    Hope this helps.
    Regards,

  • IPhone quitting applications and not recognizing mail read

    Within the past few days my iPhone has been acting up. When I try to surf the web, view my email, or pretty much anything else, the phone will unexpectedly quit the app and return to the home screen. I have heard about this happening to other people but is there a solution. I can honestly only use any app for about 1 minute before the home screen pops back up. Also, I'm not sure if this is a related issue but when I can view my email, it'll register as viewed but after returning to the home screen it still has a number in the inbox. Returning to the inbox shows those same messages as not seen yet. How do I fix this?
    Vitals - 8GB iPhone, about 1 month old, no damage
    Macbook 2.0 GHz, Intel Chip
    Installed Leopard about a week ago

    Think back to Windows 95. Leaving it running all the time, and eventually gets unstable. (note turning it off doesn't turn it off really...more like suspend mode on a laptop...keeping all stuff in memory and going to sleep).
    I would say do a reboot (a real power down and reload the OS and have all apps ready to get started....have to remember, when you leave an app, it just goes to standby, it doesn't close).
    To reboot:
    Go to Home
    Press and hold Home
    Press and hold Lock button (so holding both)
    It will in time say Slide to Turn off (don't let go, keep holding both)
    It will eventually turn off
    Keep holding
    Once you see the Apple Logo, you can let go.
    To add about the App thing going to stand by when you go to home screen and not really closing....if you ever want to really close an App because it keeps messing up, you can go into that App...then press and hold the Home Button. You will see it close out and then return you to home screen (don't just press home button but hold it). That is a good first start with apps that start acting up. But the reboot described above is a great tool to know
    Message was edited by: DaVBMan

  • Links no longer work in Acrobat 9 Pro application, and not just the pdfs.

    In Adobe Acrobat 9 Pro, clicking on any link including links in the Acrobat 9 application's menu bar (like when I click on Help/Online Support/Knowledge Base), I get the following error message: "The location of the web browser has not been specified" .  Please do this in Preferences." 
    Does anyone know how to correct this error?  I tried going to preferences, as the error message indicated, but don't see any reference there to browser locations. IE9 is the default in my Windows 7 internet settings.     I used to be able to click on links in the menu bar and in pdfs, and go to the internet without any difficulty.  I don't know when this problem started but I recently upgraded to IE 9.  Are there any known compatibility issues that could cause this?
    Here's my software:
    Adobe Acrobat Pro 9 version 9.5.3
    Windows 7
    IE 9
    I'd appreciate any help.
    Thanks.

    This is typically an issue of setting the web preference in the WINDOWS preferred programs. In Win7 this is accessed from Control Panel>Default Programs>Set Program Access...>Custom. Maybe these options will give you an idea of the problem.

  • File Adapter creating huge connections and not releasing.

    Hi,
    We see high no. of current connections in file adapter from weblogic console against eis/HAFileAdapter under deployments -> fileadapter -> monitoring -> Outbound Connection Pools and are concerned about the same. It seems like fileadapter is not releasing the connection and hence no. of connections are piling up over a days and depending upon the transactions. coz after a restart the values comes down from 36000 to 10 ( which is default initial connection).
    But when i see at the datasource level i don't see that much number of active connections. Need to know why this is happening and is this behavior is expected?
    We are using SOA 11g PS2
    Below is the deployment plan for fileadpater in use:
    <?xml version='1.0' encoding='UTF-8'?>
    <deployment-plan xmlns="http://xmlns.oracle.com/weblogic/deployment-plan" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/deployment-plan http://xmlns.oracle.com/weblogic/deployment-plan/1.0/deployment-plan.xsd" global-variables="false">
    <application-name>connectors</application-name>
    <variable-definition>
    <variable>
    <name>ConfigProperty_controlDir_Value_12732617703910</name>
    <value>/var/opt/soa_nfs/data/SOA_PRD_DOMAIN/config/FileAdapter</value>
    </variable>
    <variable>
    <name>ConfigProperty_outboundLockTypeForWrite_Value_12737938820080</name>
    <value>oracle</value>
    </variable>
    <variable>
    <name>ConnectionInstance_eis/HAFileAdapter1_JNDIName_13010279387490</name>
    <value>eis/HAFileAdapter1</value>
    </variable>
    <variable>
    <name>ConfigProperty_controlDir_Value_13010283495591</name>
    <value>/var/opt/soa_nfs/data/SOA_PRD_DOMAIN/config/FileAdapter</value>
    </variable>
    <variable>
    <name>ConfigProperty_inboundDataSource_Value_13010283655032</name>
    <value>jdbc/SOADataSource</value>
    </variable>
    <variable>
    <name>ConfigProperty_outboundDataSource_Value_13010283782973</name>
    <value>jdbc/SOADataSource</value>
    </variable>
    <variable>
    <name>ConfigProperty_outboundDataSourceLocal_Value_13010283877514</name>
    <value>jdbc/SOALocalTxDataSource</value>
    </variable>
    <variable>
    <name>ConfigProperty_outboundLockTypeForWrite_Value_13010283941445</name>
    <value>oracle</value>
    </variable>
    <variable>
    <name>ConfigProperty_inboundDataSource_Value_13081683627140</name>
    <value>jdbc/SOADataSource</value>
    </variable>
    <variable>
    <name>ConfigProperty_outboundDataSource_Value_13081683875571</name>
    <value>jdbc/SOADataSource</value>
    </variable>
    <variable>
    <name>ConfigProperty_outboundDataSourceLocal_Value_13081684137432</name>
    <value>jdbc/SOALocalTxDataSource</value>
    </variable>
    <variable>
    <name>ConnectionInstance_eis/HAFileAdapter_Wedb_JNDIName_13369118887880</name>
    <value>eis/HAFileAdapter_Wedb</value>
    </variable>
    <variable>
    <name>ConfigProperty_controlDir_Value_13369119117411</name>
    <value>/var/opt/soa_nfs/data/SOA_PRD_DOMAIN/config/FileAdapter</value>
    </variable>
    <variable>
    <name>ConfigProperty_inboundDataSource_Value_13369119237302</name>
    <value>jdbc/SOADataSource</value>
    </variable>
    <variable>
    <name>ConfigProperty_outboundDataSource_Value_13369119486683</name>
    <value>jdbc/SOADataSource</value>
    </variable>
    <variable>
    <name>ConfigProperty_outboundDataSourceLocal_Value_13369119703484</name>
    <value>jdbc/SOALocalTxDataSource</value>
    </variable>
    <variable>
    <name>ConfigProperty_outboundLockTypeForWrite_Value_13369119820485</name>
    <value>oracle</value>
    </variable>
    </variable-definition>
    <module-override>
    <module-name>FileAdapter.rar</module-name>
    <module-type>rar</module-type>
    <module-descriptor external="false">
    <root-element>weblogic-connector</root-element>
    <uri>META-INF/weblogic-ra.xml</uri>
    <variable-assignment>
    <name>ConfigProperty_controlDir_Value_12732617703910</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter"]/connection-properties/properties/property/[name="controlDir"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_outboundLockTypeForWrite_Value_12737938820080</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter"]/connection-properties/properties/property/[name="outboundLockTypeForWrite"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConnectionInstance_eis/HAFileAdapter1_JNDIName_13010279387490</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter1"]/jndi-name</xpath>
    <origin>planbased</origin>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_controlDir_Value_13010283495591</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter1"]/connection-properties/properties/property/[name="controlDir"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_inboundDataSource_Value_13010283655032</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter1"]/connection-properties/properties/property/[name="inboundDataSource"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_outboundDataSource_Value_13010283782973</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter1"]/connection-properties/properties/property/[name="outboundDataSource"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_outboundDataSourceLocal_Value_13010283877514</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter1"]/connection-properties/properties/property/[name="outboundDataSourceLocal"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_outboundLockTypeForWrite_Value_13010283941445</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter1"]/connection-properties/properties/property/[name="outboundLockTypeForWrite"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_inboundDataSource_Value_13081683627140</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter"]/connection-properties/properties/property/[name="inboundDataSource"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_outboundDataSource_Value_13081683875571</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter"]/connection-properties/properties/property/[name="outboundDataSource"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_outboundDataSourceLocal_Value_13081684137432</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter"]/connection-properties/properties/property/[name="outboundDataSourceLocal"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConnectionInstance_eis/HAFileAdapter_Wedb_JNDIName_13369118887880</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter_Wedb"]/jndi-name</xpath>
    <origin>planbased</origin>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_controlDir_Value_13369119117411</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter_Wedb"]/connection-properties/properties/property/[name="controlDir"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_inboundDataSource_Value_13369119237302</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter_Wedb"]/connection-properties/properties/property/[name="inboundDataSource"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_outboundDataSource_Value_13369119486683</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter_Wedb"]/connection-properties/properties/property/[name="outboundDataSource"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_outboundDataSourceLocal_Value_13369119703484</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter_Wedb"]/connection-properties/properties/property/[name="outboundDataSourceLocal"]/value</xpath>
    </variable-assignment>
    <variable-assignment>
    <name>ConfigProperty_outboundLockTypeForWrite_Value_13369119820485</name>
    <xpath>/weblogic-connector/outbound-resource-adapter/connection-definition-group/[connection-factory-interface="javax.resource.cci.ConnectionFactory"]/connection-instance/[jndi-name="eis/HAFileAdapter_Wedb"]/connection-properties/properties/property/[name="outboundLockTypeForWrite"]/value</xpath>
    </variable-assignment>
    </module-descriptor>
    <module-descriptor external="false">
    <root-element>connector</root-element>
    <uri>META-INF/ra.xml</uri>
    </module-descriptor>
    <module-descriptor external="true">
    <root-element>wldf-resource</root-element>
    <uri>META-INF/weblogic-diagnostics.xml</uri>
    </module-descriptor>
    </module-override>
    <config-root>/opt/soauser/products/soa11.1/Oracle_SOA1/soa/connectors/plan</config-root>
    </deployment-plan>
    -Rohit

    Hi Arik,
    To answer your questions :
    You are using HAFileAdapter in your processes JNDI defenitions? --Yes
    Check in your HAFileAdapter Connection Pool if Shrinking Enabled is set to true. --Its set to true
    I would recomend also to change the properties Test Connections On Reserve to true, and Test Frequency Seconds(900 is the default). --These properties are also in place
    -Rohit

  • How to "close" applications and not use data

    Is it possible to "close" applications so to not use any data/internet at all, for example with safari?
    Or is it when you click the "home" button, it closes?

    Technically, yes.
    All apps once activated remain techincally open but suspend themselves when navigated away from.
    The email app however, lets say you go in, and it starts the manual checking of mail. If you leave it, it will continue with that check until done. Then stop (but check again if you set your mail settings to check on an interval).
    Other apps, suspend themselves.
    To add more (my opinon on things) read this post by me
    http://discussions.apple.com/message.jspa?messageID=5851978#5851978
    You may find it helpful as useful knowledge about the phone.

  • List Alert emails sent from one Application and not another?

    I have a farm with two Applications. For some reason, list alerts are being sent and delivered from Application A but not Application B.
    Troubleshooting recommendations?
    Thanks,
    Scott

    Hello,
    Check the property of alert for that web application using STSADM. If it is not enable then enable it.
    Stsadm.exe -o getproperty -url http://web-App-URL -pn alerts-enabled
    http://social.technet.microsoft.com/wiki/contents/articles/13771.troubleshooting-steps-for-sharepoint-alert-email-does-not-go-out.aspx
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How can I create one playlist and not have numerous ones that duplicate songs?

    How do I consolidate all my playlists into one large playlist and eliminate the extras?

    Hey there Christophter,
    You can start consolidate your playlists by opening the one you want to move music FROM, then dragging the music in there to the playlist you want to add TO. If there is a duplicate you will be prompted to skip them or not. Then delete the playlist:
    iTunes 11 for Windows: Delete songs, playlists, or other items
    Click the item to select it, and press the Delete key.
    Click DeleteItem.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

Maybe you are looking for

  • Module Pool Programming in ECC 5.0

    Hi Experts, Can any one explain the unique features of Module pool programming in ECC 5.0.  Even if you find any documentation please pass it on. Regards, Shankar

  • MB_CUR_MAX Settings in Solaris 10

    Hi All - MB_CURR_MAX sets to 3 in my Solaris 10 though it is not a multi-byte machine. The Locale settings are set to en_GB.ISO8859-1. I do not know if this setting will cause some system calls, functions to behave differently. How is this set? I che

  • Web service control manager

    Hi, I have created a Gateway in WebService Control manager. I have registered a service with the gateway. Now when I am testing with test page..it is throwing error "Failed to read WSDL from http://192.168.44.85:8888/TestGateway/services/SID0003002?w

  • I am having trouble updating apps through iTunes, iTunes shuts down when I try to sync.

    I am having trouble updating apps that I have on my iPhone through iTunes.  I go through the update then when syncing I get an error message iTunes has to shut down.  The only way I have been able to work around is to delete the app and download it a

  • Can't reboot, verify, repair, or erase...

    I got the gray screen, so I read about how going through various steps of holding down various buttons recommended here might help - no joy.  I inserted my start-up dvd and saw color! Promising!  However, after I agree to terms, etc., and get to the