Model window close problem ?

Hi experts,
I tried to close a modal window colse bar at top right of window but it is not closed. Can anybody tell how to close that.

Hai,
try,
     IF :SYSTEM.EVENT_WINDOW = '<modal_window_name>' THEN
          HIDE_WINDOW('<modal_window_name>');
          GO_ITEM('<other_window_name>.<item_name>');
     END IF;Regards,
Manu.
If this answer is helpful or correct, please mark it. Thanks.

Similar Messages

  • Window.close() problem

    What I want is to close a browser window. but when I use window.close() A dialog box pop's up saying Are u sure u want to close the window.
    Now I don't want this dialog box to appear.
    Help!!!

    Cross-post:
    http://forum.java.sun.com/thread.jsp?forum=33&thread=480610&start=0&range=15#2239454
    MOD

  • Problem with window.close and window.open

    I am having two suspected Actionscript problems which only seem to be happening with Flash player 9 and later.
    BACKGROUND:
    I have a client who needs browser-launched swf files to play from a CD-ROM (I do not want to use the Flash projector).  These files were created a few years ago using Actionscript 1 & 2 code and everything has worked perfectly until now.
    Here is the setup:
    First, an autorun file on the root of the CD runs and writes a 'trust file' to the 'Macromed' directory.  The autorun next launches 'index.htm' which is simply an html page containing a series of links (topic1.htm; topic2.htm; and so on). Next, let's assume the student clicks the 'topic1.htm' link from the 'index.htm' page.  The 'topic1.htm' link launches a web page (also located on the CD) which contains and displays 'topic1.swf'.  So far, everything works fine.
    Here is where the two problems happen.
    Problem 1:
    I have an 'Exit' button within each swf (remember each swf is contained inside an html page).  The 'Exit' button has always worked properly, but suddenly does not work in Flash player 9.  I am using the following Actionscript 2 code on the 'Exit' button:
    on (release) {
    getURL("javascript:window.close()");
    The 'Exit' button has always worked using this code (and still works in Flash player 8 and lower).  However, it does nothing when played using Flash player 9.
    Problem 2:
    There are links to html popup windows within the 'topic1.swf' file (remember 'topic1.swf' is contained inside 'topic1.htm').  Each popup window contains a swf file that is used to present a demonstration.  When the student clicks the 'demo1.htm' link from 'topic1.swf', an html popup window SHOULD load and display 'demo1.swf' inside the 'demo1.htm' window.  The main ('topic1.htm') window stays open so that the student can return to the topic after completing the demo.  This has always worked properly until Flash player 9.  Here is the Actionscript 2 code
    which I am using on the button inside 'topic1.swf' to launch 'demo1.htm':
    on (release) {
                getURL("javascript:launchWin2('webpage2.html');");
    ADDITIONAL INFO:
    'topic1.htm' contains the following code which is used to support the Actionscript code listed under 'Problem 2' above.
    <SCRIPT LANGUAGE=JavaScript>
    <!--
    var padvar="";
    var childwind;
    function launchWin2(arg) {
    openWin2(arg);
    function openWin2(arg) {
    childwind = window.open(arg,"padwind2","menubar=no,location=no,status=no,scrollbars=no,width=750px,he ight=500px,left=0,top=0");
    //-->
    </SCRIPT>
    I would appreciate any help anyone can offer.  I am wondering if the problem has to do with a need to use ONLY Actionscript 3 code from Flash player 9 onwards.
    Thanks!
    Terry

    You may have '''Switched ON Caret Browsing'''. press '''F7 (on Mac: fn + F7)''' to toggle '''Caret Browsing ON/OFF'''
    * click '''Firefox''' button and click '''Options''' -> Advanced -> General -> remove
    Checkmark from '''Always use the cursor keys to navigate within pages'''
    * http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    * http://kb.mozillazine.org/Accessibility_features_of_Firefox
    Check and tell if its working.

  • Problems using window.close() and setting fields

    Hi,
    I have two problems:
    First one is:
    I created a simple JSP with 'Save' and 'Exit' Buttons. In the Exit button on click event I invoked a function closeWindow, which calls teh window.close(). But on clicking Exit, the window does not close. Can anyone please tell me why.
    Second one is:
    The JSP also needs to get loaded with some values in the Textfields. Theses values are extracted from a text field using a Java class. I am able to see that these values are extracted from the text file and are loaded into Java vars, but when I am trying to set this value into a text field, it is NOT getting set.
    (filePathDetails is the instance of the class that extracts the text values)
    The entire code is posted below:
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo(); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
        <SCRIPT type="text/javascript">
         function setPaths(){
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1 %>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2 %>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath %>;
                   textLogPath.value = <%=filePathDetails.logFilePath %>;
         function closeWindow(){
              window.closeWindow();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0" onload="setPaths()">
         <FORM name="pathDetails" method="get" action="DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE border="0" cellspacing="" height="60" width="450"
                                                        style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <P align="center">
              <INPUT type="submit" name="buttonSave" value="Save">
              <INPUT type="button" name="buttonExit" value=" Exit " onclick="closeWindow()">
              <BR>
           </P>
           </FORM>
    </body>
    </html>Please help me.
    Thanks in advance.

    Try the following..
    For problem 1:
    Use window.close() instead of window.closeWindow().
    For the second problem
    don't call the function setPaths() at onload. Rather
    call the function after the page is loaded. You can
    try like this.
    If it doesn't work then check whether the browser is
    giving any JavaScript error message.
    <SCRIPT type="text/javascript">
    setPaths() ;
         function setPaths(){
         alert(document.pathDetails.element[0].value);
    document.pathDetails.element[0].value =
    = <%=filePathDetails.localDirPath1 %>;
              alert(document.pathDetails.element[0].value);
              with(document.pathDetails){
    textAncPath1.value =
    e = <%=filePathDetails.localDirPath1 %>;
    textAncPath2.value =
    e = <%=filePathDetails.localDirPath2 %>;
    textArchivePath.value =
    e = <%=filePathDetails.archiveDirPath %>;
    textLogPath.value = <%=filePathDetails.logFilePath
    ath %>;
         function closeWindow(){
              window.closeWindow();
    </SCRIPT>Hi,
    Actually I did try window.close(), but I still am not able to close the current window.
    And as for the problem of setting up the field values, sorry the given solution doesnt seem to work. :-(..
    I have pasted the entire code, I dont know where teh flaw is. Please review the same and let me know.
    Your help is very much appreciated.
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo();%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
         <SCRIPT type="text/javascript">
         function setPaths(){
              document.pathDetails.textAncPath1.value = "Anything";
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1%>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2%>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath%>;
                   textLogPath.value = <%=filePathDetails.logFilePath%>;
         function exitWindow(){
              window.close();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0">
         <FORM name="pathDetails" method="get" action="/FTPSchedulerApp/ftpScheduler/DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE name="tempTable" border="0" cellspacing="" height="60" width="450" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <div align="center">
              <INPUT type="submit" name="buttonSave" value="Save"/>
              <input type="reset" name="buttonReset" value="Reset" onclick="setPaths()"/>
              <button name="buttonExit" onclick="exitWindow()"> Exit </button>
              <BR>
           </div>
           </FORM>
    </body>
    </html>

  • Why won't Firefox 4 on Mac OSX 10.6.7 quit when QUIT is selected? The window closes, but the application remains open necessitating a forced-quit. Until recently it worked fine. I've reinstalled Firefox but the problem persists.

    Firefox 4 on Mac OSX 10.6.7 won't quit when QUIT is selected.
    The window closes, but the application remains open necessitating a forced-quit. Until recently it worked fine. I've Downloaded Firefox again and reinstalled but the problem persists.

    Perform the suggestions mentioned in the following articles:
    * [[Firefox is already running but is not responding]]
    -> Profile in use
    * [http://kb.mozillazine.org/Profile_in_use]
    Check and tell if its working.

  • Connecting iPod Nano 8GB video model to Windows 2k problems

    Hello!
    I hope someone can help, I had a MacBook that died and now I need to move our 4 iPods to the windows 2k environment. When you plug in the iPod it says that it needs to be converted to Windows, not problem, I click "OK" then iTunes starts and gives me the following message:
    The iPod "IPOD2" cannot be used because it requires iTunes version 7.6 or later.
    Go to www.itunes.com to download the latest version of iTunes.
    Ther is NO 7.6 for Windows 2K? Any help could be appreciated.
    I have the latest version for W2K, and I have 1 Nano that has syncd fine. Anyone have any ideas, I have searched and tried all the tech docs I could find to no avail. The iPod is visible in "My Computer" but when you click on it it asks if I want to format it, worried about doing that. Can't find any instructions on resetting the iPod back to factory/out of the box WITHOUT ITUNES! that may help!
    Thanks,
    John

    Ther is NO 7.6 for Windows 2K?
    I'm afraid not. The last version of iTunes for Windows compatible with Windows 2000 was 7.3.2:
    http://www.apple.com/support/downloads/itunes732forwindows2000.html
    ... and the third generation (video) nanos require at least iTunes 7.4.x (and 7.6 is currently recommended).

  • Problem creating playlists library window closes when opening new playlist

    library window closes when opening new playlist impossible to drag and drop songs from lib to new playlist

    Hi
    You don't need to open a playlist to drag and drop from your library. Just open the library and drag the selected item or items to the NAME of the chosen playlist (in blue bars on the lower left) and just drop it there. When you hold the items over the playlist name, it will show you a little green dot with a plus sign in it and the number or items being dropped. Then when you are done dragging and dropping you can open the playlist and see that the items were added. Hope this makes sense.
    Good luck!

  • Problem with window.close() and print preview in IE

    Hi all,
    In IE, when window.close() or self.close() is executed, the window is closing perfectly. But when after opening a print preview window from file menu in IE and after closing the print preview with [X] button, then the window.close() is not working. Is there any solution to close the window even after closing the print preview window? here is the sample code.
    1) Close.htm
    <HTML>
    <TITLE>TEST</TITLE>
    <BODY>
    <SCRIPT LANGUAGE="javascript">
    function CloseMe()
    window.close();
    //self.close();
    </SCRIPT>
    <INPUT TYPE="button" ONCLICK="CloseMe()" VALUE="Close Me">
    </BODY>
    </HTML>
    Thanks,

    masijade. wrote:
    nogoodatcoding wrote:
    Crosspost: http://forum.java.sun.com/thread.jspa?threadID=5227849&tstart=0
    Why'd you start a new thread once you got an answer on the thread linked above ( and even acknowledged it ) about the fact a that it was not a Java query?Because last time it was a JSP forum, which is not JavaScript obviously, but this is a Java forum, and the designers, obviously, simply neglected to include Script in the name, of course. ;-):D Why, oh, why did they have to call it JavaScript! (And before someone starts, that was a rhetorical question!)

  • Opening FPM Application in a seperate Model Window

    Dear Experts,
    I have a FPM Application which i need to open in new Window in my Webdynpro Application.
    As of now I am using the URL of the Application to open it as an external WIndow, this causes some problem while refreshing the main Webdynrpo view While closing the FPM application window.
    In the Main Webdypro view the refresh is not happeing since it is opening as an external WIndow.
    If i open as a model window it may solve the issue. But Since i am using the URL if i open a model Window using the Window name it is not calling the FPM application.
    Kindly give some suggestions or link to achieve the same.
    Thanks,
    Nalla B.

    Hi Nalla,
    I suggest you the below points to achieve your requirement
    Create a view V_FPM_APP and insert an iFrame ui element
    Create an attribute FPM_URL as string and bind it to the source of iFrame ui element
    Create a window, W_FPM_APP and embed the view V_FPM_APP
    Now, you can use method CREATE_WINDOW of interface IF_WD_WINDOW_MANAGER to open the FPM application and pass parameter MODEL = ABAP_TRUE
    You can register the onClose action of popup window to your own action on view as below
              data lo_view_ctrl type ref to if_wd_view_controller.
              lo_view_ctrl ?= wd_this->wd_get_api( ).
              lo_window->set_on_close_action(
                   exporting
                        view = lo_view_ctrl
                        action_name = 'ON_CLOSE'
    Create an action ON_CLOSE in view from where the popup window is called
    Now, you get the control when user closes the popup window, so, you can refresh the main view
    Also other way, you can use the concept component usages to achieve your requirement
    Hope this helps you.
    Regards,
    Rama

  • Safari crash on quit and window close

    Hi,
    I have got an annoying problem since the install of OSX Tiger on my G5 PowerMac. Safari became very unstable and crash on every window close or on quit. I have tried Safari on other user accounts I created and it works fine but on my admin account it crash... I tried to reset prefs, desactivate plug-ins, without any effects. Safari was my favorite browser on Panther but I am beginning to hate it with this recurrent problem.
    Any help?
    PowerMac G5 1.8   Mac OS X (10.4.7)   2Gb RAM

    Here comes the crash log for my Safari problem, user account settings.
    Date/Time: 2006-09-07 15:01:15.746 -0400
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [64]
    Version: 2.0.4 (419.3)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 311
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000020
    Thread 0 Crashed:
    0 <<00000000>> 0xfffeff18 objcmsgSendrtp + 24
    1 com.apple.Safari 0x00047844 0x1000 + 288836
    2 com.apple.Foundation 0x929475e8 -[NSArray makeObjectsPerformSelector:withObject:] + 264
    3 com.apple.Safari 0x0005c1ec 0x1000 + 373228
    4 com.apple.Safari 0x0005a4f4 0x1000 + 365812
    5 com.apple.Foundation 0x9293fad8 nsnotecallback + 180
    6 com.apple.CoreFoundation 0x90803010 __CFXNotificationPost + 368
    7 com.apple.CoreFoundation 0x907fb0ec _CFXNotificationPostNotification + 684
    8 com.apple.Foundation 0x92929ee0 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    9 com.apple.AppKit 0x9376a47c -[NSWindow _close] + 100
    10 com.apple.AppKit 0x9376a3e0 -[NSWindow close] + 36
    11 com.apple.Safari 0x0005a498 0x1000 + 365720
    12 com.apple.Safari 0x0005c07c 0x1000 + 372860
    13 com.apple.AppKit 0x93769c4c -[NSApplication sendAction:to:from:] + 108
    14 com.apple.Safari 0x0002956c 0x1000 + 165228
    15 com.apple.AppKit 0x93769b80 -[NSControl sendAction:to:] + 96
    16 com.apple.AppKit 0x93769a60 -[NSCell _sendActionFrom:] + 156
    17 com.apple.AppKit 0x93783a88 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1020
    18 com.apple.AppKit 0x93783670 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 564
    19 com.apple.AppKit 0x93783094 -[NSControl mouseDown:] + 536
    20 com.apple.AppKit 0x93807540 -[_NSThemeWidget mouseDown:] + 100
    21 com.apple.AppKit 0x93724890 -[NSWindow sendEvent:] + 4616
    22 com.apple.Safari 0x00021734 0x1000 + 132916
    23 com.apple.AppKit 0x936cd8d4 -[NSApplication sendEvent:] + 4172
    24 com.apple.Safari 0x00021238 0x1000 + 131640
    25 com.apple.AppKit 0x936c4d10 -[NSApplication run] + 508
    26 com.apple.AppKit 0x937b587c NSApplicationMain + 452
    27 com.apple.Safari 0x0005c77c 0x1000 + 374652
    28 com.apple.Safari 0x0005c624 0x1000 + 374308
    Thread 1:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.unsanity.ape 0xc0001b74 _apeagent + 296
    3 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9294f164 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x9294f09c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x9562cf70 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92940194 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9296769c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92940194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x929687dc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92940194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9001f7ac select + 12
    1 com.apple.CoreFoundation 0x907ee40c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.Foundation 0x92947300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a4de42c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92940194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000fffeff18 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x44004202 xer: 0x0000000020000000 lr: 0x0000000000047844 ctr: 0x0000000095639bcc
    r0: 0x0000000000047830 r1: 0x00000000bfffd890 r2: 0x0000000000463f70 r3: 0x00000000010a00e0
    r4: 0x0000000090aa7904 r5: 0x0000000090a7ec7c r6: 0xffffffffffffffff r7: 0x000000000800a110
    r8: 0x0000000000000000 r9: 0x00000000a00067c0 r10: 0x0000000000000004 r11: 0x000000006f547904
    r12: 0x0000000000000000 r13: 0x00000000a36f3688 r14: 0x0000000000000100 r15: 0x0000000000000000
    r16: 0x00000000a36e368c r17: 0x0000000000000000 r18: 0x000000000617a050 r19: 0x00000000004d0120
    r20: 0x00000000a36c62f4 r21: 0x00000000a07b2eb0 r22: 0x000000000000000d r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000090a88460 r26: 0x0000000000000000 r27: 0x00000000000e633c
    r28: 0x00000000004531b0 r29: 0x000000000047fd60 r30: 0x0000000000000001 r31: 0x00000000929474e0
    Binary Images Description:
    0x1000 - 0xdcfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x514000 - 0x516fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x552000 - 0x552fff com.aladdinsys.mmenabler 7.1.0 (8.0) /Library/InputManagers/MagicMenuEnabler/MagicMenuEnabler.bundle/Contents/MacOS/ MagicMenuEnabler
    0x556000 - 0x556fff com.yazsoft.SDEnhancer ??? (1.0) /Users/steph/Library/InputManagers/SpeedDownload Enhancer/SpeedDownloadEnhancer.bundle/Contents/MacOS/SpeedDownloadEnhancer
    0x55a000 - 0x55dfff com.yazsoft.SDSafariBundle ??? (1.0) /Users/steph/Library/InputManagers/SpeedDownload Enhancer/SpeedDownloadEnhancer.bundle/Contents/Resources/SDSafariBundle.bundle/ Contents/MacOS/SDSafariBundle
    0x8fe00000 - 0x8fe52fff dyld 45.1 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fbfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110c000 - 0x9111afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111d000 - 0x912d7fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d5000 - 0x913defff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e5000 - 0x9140dfff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91420000 - 0x9142bfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91430000 - 0x91438fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143c000 - 0x914b7fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f4000 - 0x914f4fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f6000 - 0x9152efff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91549000 - 0x91616fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166b000 - 0x916fcfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91743000 - 0x917fafff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91837000 - 0x91895fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c4000 - 0x918e5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918f9000 - 0x9191efff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91931000 - 0x91973fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9198f000 - 0x919a3fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b1000 - 0x919f1fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a07000 - 0x91acffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b1d000 - 0x91b32fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b37000 - 0x91b54fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b59000 - 0x91bc8fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91bdf000 - 0x91be3fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be5000 - 0x91c2dfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c32000 - 0x91c6ffff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c76000 - 0x91c8ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c94000 - 0x91c97fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c99000 - 0x91c99fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9b000 - 0x91d80fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d88000 - 0x91da7fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e13000 - 0x91e81fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e8c000 - 0x91f21fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3b000 - 0x924c3fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924f6000 - 0x92821fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92851000 - 0x928d9fff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291a000 - 0x92b45fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c63000 - 0x92d41fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d61000 - 0x92e4ffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e61000 - 0x92e7ffff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e8a000 - 0x92ee4fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f02000 - 0x92f02fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f04000 - 0x92f18fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f30000 - 0x92f40fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f4c000 - 0x92f61fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f73000 - 0x92ffafff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9300e000 - 0x93019fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93023000 - 0x93050fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9306a000 - 0x93079fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93085000 - 0x930ebfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9311c000 - 0x9316bfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93199000 - 0x931b6fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931c8000 - 0x931d5fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931de000 - 0x934ebfff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9363a000 - 0x93646fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9364b000 - 0x9366bfff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936be000 - 0x936befff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936c0000 - 0x93cf3fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94080000 - 0x940f0fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94129000 - 0x941ecfff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9423e000 - 0x9423efff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94240000 - 0x943f3fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94446000 - 0x94483fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9448b000 - 0x944dbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9456b000 - 0x945a3fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x945e6000 - 0x94602fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94616000 - 0x9465afff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9467e000 - 0x9468dfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94695000 - 0x946a2fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946e8000 - 0x94701fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c8d000 - 0x94dbdfff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e4f000 - 0x94e5efff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e66000 - 0x94e93fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e9a000 - 0x94eaafff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94eae000 - 0x94eddfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94eed000 - 0x94f0afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9562a000 - 0x956b8fff com.apple.WebKit 1.2 (418.8) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95714000 - 0x957aafff com.apple.JavaScriptCore 1.1 (418.3) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x957e7000 - 0x95af3fff com.apple.WebCore 418.20.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95c7c000 - 0x95ca5fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9642d000 - 0x96443fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x9a4db000 - 0x9a511fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a52e000 - 0x9a540fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0xc0000000 - 0xc000ffff com.unsanity.ape 2.0 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: PowerMac7,2, BootROM 5.1.5f1, 1 processors, PowerPC 970 (2.2), 1.8 GHz, 2 GB
    Graphics: GeForce FX 5200, GeForce FX 5200, AGP, 64 MB
    Memory Module: DIMM0/J11, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J12, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM2/J13, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM3/J14, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM4/J41, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM5/J42, 256 MB, DDR SDRAM, PC3200U-30330
    Modem: MicroDash, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Ethernet intégré, Ethernet, en0
    Serial ATA Device: ST3160023AS, 149.05 GB
    Serial ATA Device: WDC WD1600JS-55MHB0, 149.05 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-109,
    USB Device: Hub, , Up to 480 Mb/sec, 500 mA
    USB Device: XD-0608-U, Tablet, Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: USB Token, , Up to 1.5 Mb/sec, 100 mA
    USB Device: USB Receiver, Logitech, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Apple Cinema HD Display, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: SNAPSCAN e50, AGFA, Up to 12 Mb/sec, 500 mA
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

  • IPad Safari IOS 5 window.close() closing wrong window

    When I want to close the child window(although now they open as tabs) in the parent window with javascript window.close(),the parent window was closed.
    Is this a bug or have any solution?
    Safari/7534.48.3
    My script:
    <script type="text/javascript">
      var subWin1 = null;
      function popSub() {
        subWin = window.open('myurl,'subWin1','height=200,width=200'); 
      function closeSub() {
        subWin.close();
    </script>

    I'm having the exact same problem.  On iPad Safari on iOS 5 attempting to close a popup window with close() is causing the parent window to close instead.  Every other browser, including iPhone Safari on iOS 5 it works fine.  I've been trying to come up with a workaround but haven't found anything yet.  If anyone can find a workaround please post.

  • When closing Firefox windows, I would like a warning before the last window closes. The about:config settings do nothing. There is a warning for multiple tabs..

    When closing Firefox windows, I would like a warning before the last window closes. The about:config settings do nothing. There is a warning for multiple tabs... why not for the last window? I do not use tabs... just windows... I have a mouse button programmed for that. It is really irritating to have to restart Firefox all the time and then open the history window because no warning was issued!

    This is ridiculous. I've had this problems for years now and I'm finally walking away from Firefox. I use my keyboards more than my mouse, and how many times does your finger slip and hit Command Q instead of W. How come FF can't reset something as trivial as this? So many people are having problems with this?
    Feels like FF has become too big, too slow and just not cooperative anymore. What a shame, I've been using Netscape/Firefox for 13 years. This is silly.

  • My dad has a brand new iMac. If he quits an app, this window closes, but the app won't finish shutting down, Force quitting does not work.  Once another app is opened, it will not close either.  Now none of the apps are responding. Any ideas?

    My dad has a brand new iMac. If he quits an app, this window closes, but the app won't finish shutting down, Force quitting does not work.  Once another app is opened, it will not close either.  Now none of the apps on the dock are responding. I asked him to click on the apple, and drop down to "About this Mac", but that wouldn't open either. Any ideas?  If I was at his house, I would call Apple Care in a heartbeat, but am home with my sick daughter,,,  Thanks!

    For starters, have him open Disk Utility in Applications>Utilities, select the volume (the indented listing) and Verify Disk. If it reports any problems, have him try a Safe Boot by holding the Shift key at startup. This boot will take much longer than usual. It's checking and trying to repair the drive directory, if possible. Once in Safe Boot, have him repair Permissions.
    For other Disk repair remedies see
    http://support.apple.com/kb/TS1417
    Also, have him try a PRAM Reset. At the startup chime, hold down CMD-Option-P-R together, listen for two more chimes, total three, then let go to finish booting.
    Also, is he running any AV? If so, have him uninstall it. It might be responsible for this behavior. (There are no viruses for OS X.)

  • ITunes Match Step 3 doesn't load,  Windows Closes iTunes.  Solution?

    Since October 27, 2013 have not been able to get all 3 steps of the iTunes Match to complete.  Steps 1 & 2 load correctly and a green check mark appears for each.  However, when things move to Step 3 an error message immediately appears that indicates "iTunes has stopped working", and Windows closes iTunes. 
    My laptop is running Window 7.  Apple Tech Support had me uninstall all components of iTunes and then (re)load the latest version on my laptop.  All music in my iTunes library has always played correctly on my iPod Classic.  (Note: the iPod Classic has not been synced sinced the problems with the iTunes Match load surfaced as I am fearful of corrupting what's there.  Which also means all recent iTunes store purchases cannot be played on the iPod classic until it sync'd.)  Accessing the iTunes music library on the iPod Touch shows that some tracks are greyed out and not available which seems consistent with the failure of Step 3 to load.  Need help.  Thanks.

    Hi,
    Try holding shift key whilst turning off match. This will clear genius / match cache. Close iTunes then reopen. Turn on match, you will be asked to add this computer, do so and let process complete.
    You should also add iCloud status column to song view - menu > view > view options and tick box. This will tell you what has been matched, uploaded, purchased, duplicate or inelligible. It will show tracks that have not been processed  as "waiting". If you have any such tracks, one or more may be preventing completion. You may need to remove such tracks and gradually readd until match processes them. This may help identify problem tracks.
    Jim

  • Window.opener problem in javascript

    Hi,
    I'm using a code for opening a clild window from the parent window. The child window contains some <input type="file"> elements. After setting the values of these file elements I'm closing the child window. But before closing I want to set the values of file elements to the file elements on my parent window.
    The code I'm using is as follows:
    "parent.jsp"
    =========
    function createWindow() {
    window.open("child.jsp");
    return false;
    <form method="post" action="display.jsp" enctype="multipart/form-data">
    <input type="button" value="Add Attachments" onClick="return createWindow()"><br>
    <input type="file" name="file1"><br>
    <input type="file" name="file2"><br>
    <input type="file" name="file3"><br>
    <input type="submit" value="Submit Form"><br>
    </center>
    </form>
    "child.jsp"
    ========
    function returnToMainWindow() {
    window.opener.document.forms[0].file1.value = document.forms[0].filex.value;
    window.close();
    <form method="post">
    <center>
    <input type="file" name="filex"><br>
    <input type="file" name="filey"><br>
    <input type="file" name="filez"><br>
    <input type="button" onClick="returnToMainWindow()" value="Done">
    </center>
    </form> The problem is when I'm setting the values of file control of child window to the file control of parent window using window.opener, it's unable to set up the values. Can someone rectify the problem in the code.

    It is impossible to set the value of the file input thing. But if they realy want it in a popup, then you can try something like this:
    -1. Put the attatchement list in a iframe
    0. Open the parent file with some with somewhere a unique id (like a session id or something
    1. Open your child page in a popup, give that uniqueid as parameter ("like child.jsp?id=<uniqueId>")
    2. Use regular file input things in that popup, and replace the 'close' button by a submit button
    3. Track the submit of the form, show a 'now uploading to server, please wait' message
    4. The child page sends the attatchements to the server, stored in a tempory folder named <uniqueId> (store it in the form as a hidden input thing)
    5. When the upload is ready, display some message 'files uploaded, close this window to return to your mail'.
    6. When the user clicks that 'close' button, close the popup and then reload the attachment-frame
    7. The attachment-frame just lists the files stored in that <sessionid> folder, and it seems like the user has added those files to it
    If you want i can create an example of it
    koentjepoppe
    note: if you add the date to that unique id, you know when that folder is created and then you know wich folders you have to delete if the user aborts his mail for example (then those files are still in that folder wasting space)

Maybe you are looking for

  • How to resolve preview when crashing on print?

    Preview crashing when asked to print pdf or ping files. Only adobe works to print but preview was much more convenient to use when it was working the same printer before. So I'd like it to stop crashing if possible. Should I delete and re download th

  • How to Capture Button event on TrainBean navigation

    Hi All i m being required to capture a button event in train bean Navigation, i m doing customization in Iexpense Module,here in Create IExpenseReport i need to capture the events of Remove,Return etc.how is it possible any clue would be very helpful

  • Sold-to-party not getting updated

    Hi we are trnasferring  outboud deliveries from system A to system B. in system a the delivery is with reference to order and when it comes to B we have custom delivery type which without order reference. we are using BAPI_OUTB_DELIVERY_CREATENOREF t

  • Problem with wifi conection in XP

    Hi! Win XP was installed in my Macbook, using Bootcamp. All drivers are instaled after winXP was installated, but I can't connect with wifi conection. When I'll try to conect, windows says "much time for conect, out of acces. try again" buy I can't a

  • Group SMS

    how do i create a group for sms i would like to send a text blast to about 20 people i just got an iphone 5.