Adding listeners for instances on other frames

I'm trying to create a very standard menu, the type where there are links on each page that links to each other. So far I've put each menu page on a separate frame (total around 35 frames), and each link as its own instance/class. Originally I planned to create an array containing all the links like this:
var menuLinks:Array =
                            //Main menu - frame 1
                            menuRightSide.newStoryLink,
                            menuRightSide.continueStoryLink,
                            menuRightSide.selectChapterLink,
                            menuRightSide.optionsLink,
                            menuRightSide.charactersLink,
                            menuRightSide.aboutLink,
                            //chapters menu - frame 2
                            menuRightSide.chapter1,
                            menuRightSide.chapter2,
                            menuRightSide.chapter3,
                            menuRightSide.chapter4,
                            menuRightSide.chapter5,
                            //characters - frame 3
                            menuRightSide.char1,
                            menuRightSide.char2,
                            menuRightSide.char3,
                            menuRightSide.char4,
                            menuRightSide.char5,
                            menuRightSide.char6,
                            //options - frame 4
                            menuRightSide.languageLink,
                            menuRightSide.costumeLink,
                            //function links - these exist on MULTIPLE frames/pages, eg options, characters, chapters all have backToMainLink
                            menuRightSide.backToMainLink,
                            menuRightSide.backToCharLink,
                            menuRightSide.backToOptionsLink,
                            menuRightSide.backToCostumeLink,
                            ]; //create array of links for menus
            currentPage = "main_menu";
            for each (var links:MovieClip in menuLinks)
                links.buttonMode = true; //set links to behave like button
                links.mouseChildren = false; //mouse over does not affect this instance's children
                links.addEventListener(MouseEvent.ROLL_OVER, onOver);
                links.addEventListener(MouseEvent.ROLL_OUT, onOut);
                links.addEventListener(MouseEvent.CLICK, onClick);
            function onOver(e:MouseEvent):void //apply glow to every link
                TweenMax.to(e.target, 1, {glowFilter:{color:0xFFFFFF, alpha:1, blurX:10, blurY:10}}); //glow effect
            function onOut(e:MouseEvent):void //remove glow on link on mouse out
                TweenMax.to(e.target, 1, {glowFilter:{color:0xFFFFFF, alpha:0, blurX:0, blurY:0, remove:true}}); //remove glow
            function onClick(e:MouseEvent):void
                currentPage = e.target.name;
                if (e.target.name == "newStoryLink") { //if click newStoryLink
                    delegate.beginStory();
                } else if (e.target.name == "optionsLink") { //if click optionsLink
                    TweenLite.to(menuRightSide, 0.2, {alpha:0, onComplete:menuRightSide.gotoAndStop, onCompleteParams:[45]}); //go to frame 45, options screen
                    TweenLite.to(menuRightSide, 0.2, {alpha:1, delay:0.2});
                } else if (e.target.name == "charactersLink") { //if click charactersLink
                    TweenLite.to(menuRightSide, 0.2, {alpha:0, onComplete:menuRightSide.gotoAndStop, onCompleteParams:[10]}); //go to frame 10, char screen
                    TweenLite.to(menuRightSide, 0.2, {alpha:1, delay:0.2});
                } else if (e.target.name == "aboutLink") { //if click aboutLink
                    TweenLite.to(menuRightSide, 0.2, {alpha:0, onComplete:menuRightSide.gotoAndStop, onCompleteParams:[180]}); //go to frame 180, about screen
                    TweenLite.to(menuRightSide, 0.2, {alpha:1, delay:0.2});
Basically adding listener for every link, then simply telling AS what to do when I click the link regardless of what page I'm currently on.
However the problem is I realized listeners can't be added for links that exist on other frames other than frame 1, because they're null I think until AS flips to that frame.
So does anyone have an idea on how I should code this? Another challenge is some links (the ones at the bottom of the array) exist on MULTIPLE frames, but perform the exact same thing regardless of which page it was clicked on.
Thanks.

I arranged them on separate frames because that way I know exactly what's on each page. If I simply list out all the links on one frame, then it gets extremely messy visually.
So if I want to add listeners on other frames, how would I do that? I know the pseudo-code:
on frame 1:
for (each link on frame 1) {
link.addEventListener()
on frame 2:
for (each link on frame 2) {
link.addEventListener()
... etc
function onClick(e:MouseEvent):void
                currentPage = e.target.name;
                if (e.target.name == "newStoryLink") {
                    delegate.beginStory();
                } else if (e.target.name == "continueStoryLink") {
                    //do something else

Similar Messages

  • Inconsistent prob when adding listeners to serial ports for sending AT cmds

    I have an app that sends and receives SMSs from two different cell phone carriers (lets say verizon and sprint by example).
    For that matter i have two cell phones, exactly the same model, one from each carrier, connected to the PC serial ports, COM, COM6 and COM7 being aware that they are available.
    -The application communicats with the phones through the a serial communication API and sending AT commands.
    -The application can send messages correctly from both phones within the same transaction, this is, i click in send message and the message is sent from both phones.
    The problem is when receiving, getting the SMS received by the phones:
    -When i have ONE phone connected to the PC it work properly for both phones.
    -When i have BOTH phones connected, only Carrier1 phone receives properly.
    When checking, i just find out that the problem rises when i try to add the listeners (see code comments below).
    When both phones connected there seems to be a problem that i cant figure out, and may be its a conceptual misunderstanding from me.
    I attach the code if you can help me,
    thank you,
    fernando
    // class fields
    private static String PORT_CARRIER1;
    private static String PORT_CARRIER2;
    private static CommPortIdentifier portId;
    private static Enumeration portsList;
    private static SerialPort carrier1SP;
    private static SerialPort carrier2SP;
    private static InputStream carrier1_input;
    private static InputStream carrier2_input;
    private static OutputStream carrier1_output;
    private static OutputStream carrier2_output;
    // ... all the code below is from the app method where everything is initializated     
    portsList = CommPortIdentifier.getPortIdentifiers();
    while(portsList.hasMoreElements()){
         portId = (CommPortIdentifier) portsList.nextElement();
         if(portId.getPortType() == CommPortIdentifier.PORT_SERIAL){          
              // try to open ports
              try{
                   if(portId.getName().equals(PORT_CARRIER1))
                        carrier1SP = (SerialPort) portId.open("SMS", 5000);
                   else if(portId.getName().equals(PORT_CARRIER2))
                        carrier2SP = (SerialPort) portId.open("SMS", 5000);
                   else System.out.println("Error " + portId.getName());
              }catch(PortInUseException piue){
                   System.out.println("Exception while opening serial ports: "+piue.getMessage());
                   continue;
              // try to open input streams
              try{
                   if(portId.getName().equals(PORT_CARRIER1))
                        carrier1_input = carrier1SP.getInputStream();
                   else if(portId.getName().equals(PORT_CARRIER2))
                        carrier2_input = carrier2SP.getInputStream();
              }catch(IOException ioe){
                   System.out.println("Exception while opening input streams: "+ioe.getMessage());
                   continue;
              // try to open output streams
              try{
                   if(portId.getName().equals(PORT_CARRIER1))
                        carrier1_output = carrier1SP.getOutputStream();
                   else if(portId.getName().equals(PORT_CARRIER2))
                        carrier2_output = carrier2SP.getOutputStream();
              }catch(IOException ioe){
                   System.out.println("Exception while opening output streams: "+ioe.getMessage());
                   continue;
              // adding listeners
              try{
                   if(portId.getName().equals(PORT_CARRIER1))
                        carrier1SP.addEventListener(new ListenerPuerto(this, carrier1_input, "CARRIER1"));
                   else if(portId.getName().equals(PORT_CARRIER2))
                        carrier2SP.addEventListener(new ListenerPuerto(this, carrier2_input, "CARRIER2"));
              }catch(TooManyListenersException tmle){
                   System.out.println("Error while adding listeners: " + tmle.getMessage());
                   continue;
              // Adding specific event to listeners
              if(portId.getName().equals(PORT_CARRIER1))
                   carrier1SP.notifyOnDataAvailable(true);
              else if(portId.getName().equals(PORT_CARRIER2))
                   carrier2SP.notifyOnDataAvailable(true);
              // Setting params to serial communication
              try{
                   if(portId.getName().equals(PORT_CARRIER1)){
                        carrier1SP.setSerialPortParams(9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
                        carrier1 = true;
                   }else if(portId.getName().equals(PORT_CARRIER2)){
                        carrier2SP.setSerialPortParams(9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
                        carrier2 = true;
              }catch(UnsupportedCommOperationException uscoe){
                   System.out.println("Error while setting params for serial communication: " + uscoe.getMessage());
                   continue;
              // ... nothing else important ...thanks in advance

    Thinking of a java application as its what I am most
    comfortable with, but also thinking of having an
    apache server, and using jsp pages or servlets...
    because I hate formatting things in a java frame..
    have never quite mastered that! Any thoughts on what
    I should use?I'd prefer a Swing GUI for a maximum of controls. If you have any problems regarding layout, you can post concrete questions here (or even better: the Swing forum).
    And my main stumbling block would be how do I send
    signals to the green light from the computer? How do
    I get signals from the light beams to the computer?
    How do I use a serial port (for eg) from a java app.There's an additional library for serial I/O, it's named javax.comm ... should be downloadable somewhere on the java.sun.com site.

  • Can you run multiple APEX listeners for different instances on the same server

    Please confirm that we can run multiple APEX listeners for different instances on the same server?  Is it an xml setup configuration or do we need to do more??
    Thank You,
    Tony Miller
    SmartDog Services
    Austin, TX

    Yes.. Just exactly what I was looking for...
    Thanks Jari!!
    Thank You,
    Tony Miller
    SmartDog Services
    Austin, TX

  • Does the standard Intel HD Graphics 4000 in the 13 inch Macbook pro stand up to other graphics cards with dedicated memory ( 1GB of memory for instance)?

    Does the standard Intel HD Graphics 4000 in the 13 inch Macbook pro stand up to other graphics cards with dedicated memory ( 1GB of memory for instance)? I need a laptop for college and the Engineering program suggests a dedicated video card with minimum 1GB of video memory.

    I have a Intel HD 4000 in my Mac Mini (late 2012), and it's okay for what I need it.
    However:
    - there were a few issues with flickering on the video output to external monitors. These were solved through a firmware update that came with OSX 10.8.3 - for the majority of the users. There is apparently still a small group of users that still has issues. You can read long threads about this here:
    https://discussions.apple.com/thread/4472316?start=0&tstart=0
    and here
    https://discussions.apple.com/thread/4490924?start=0&tstart=0
    So for most of us (me included) this issue is solved, but it seems that certain displays / monitors don't work well with the intel HD4000, don't know if there is a pattern or a list of monitor models...
    - there was an issue with the color calibration on the HDMI output. No matter how much you tried to calibrate, the results remained unsatisfying. All light colors were crushed to white, wrong contrast, ...
    You can read about this here:
    http://forums.macrumors.com/showthread.php?t=1482487
    https://discussions.apple.com/thread/4480354?start=0&tstart=0
    The same firmware update improved this a little, good enough for me, but I can imagine it's not good enough if you do graphic work and need reliable colors from your monitor. On HDMI output, the thunderbolt/MDP output is fine. So it's mainly a dual monitor setup issue.
    If it's for graphic work, I'd go for a Mac Book Pro with dedicated GPU !

  • How can I have one thing open in Safari on my MacBook Pro and search for another thing in Safari without closing out of the other? For instance, How can I leave Pandora playing while I search Facebook?

    How can I have one thing open in Safari on my MacBook Pro and search for another thing in Safari without closing out of the other? For instance, How can I leave Pandora playing while I search Facebook?

    With Safari open use the Command + T keyboard shortcut to open a new tab.
    Or, Command + N to open a new window.

  • Change one participating applications instance to other for PIP

    Hi,
    I am using Oracle "Order To Cash" PIP (Siebel CRM to EBiz). Had a requirement to change Siebel environment(move from one dev environment to other)
    What are the suggested way to change one participating applications instance to other in case of PIP?
    Please help me on this. Thanks in advance.
    Faiz

    Hi Yiorgos
    Hopefully this is the full list of apps in the basic Tiger installation:
    http://www.apple.com/macosx/techspecs/
    Additionally, all other Apple apps (think iLife etc.), in addition to the Tiger apps, should be in the Applications folder.
    Only third party apps can be easily put into sub-folders. And whatever you do don't go tidying up anywhere else outside of your user folder.
    Matthew Whiting

  • JSPM: Error while detecting start profile for instance with ID _c.

    Hi Experts,
    we have an error when we start JSPM with message "cannot initialize application data. Error while detecting start profile for instance with ID _c." . Until now nothing has been updated yet. The system can be started up and shut down without any problem. The profiles are found in /usr/sap/PMA/SYS/profile
    Our BI system is currently Netweaver 7.0 with SPS14. We plan to update it to SPS20. But when we start JSPM, we have abover error.
    could somebody give a help? Thank you very much.
    Rongfeng
    P.S. the log file DETECT_SYSTEM_PARAMETERS_01.LOG:
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/log/log_2009_11_18_10_28_50/DETECT_SYSTEM_PARAMETERS_01.LOG]/>
    <!PATTERN[DETECT_SYSTEM_PARAMETERS_01.LOG]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    #1.5^H#C000995FC0200000000000207BD47BD40004789C01294DB0#1258511336558#/System/Server/Upgrade/JSPM##com.sap.sdt.jspm.gui.InitialParametersDetector.initializeJspmDataModel(InitialParametersDetector.java:397)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.InitialParametersDetector.initializeJspmDataModel(InitialParametersDetector.java:397)#Java###Initializing JSPM data model...##
    #1.5^H#C000995FC0200000000000217BD47BD40004789C01295968#1258511336561#/System/Server/Upgrade/JSPM##com.sap.sdt.jspm.gui.InitialParametersDetector.detectProfileDirectory(InitialParametersDetector.java:1468)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.InitialParametersDetector.detectProfileDirectory(InitialParametersDetector.java:1468)#Java###Detected profile directory .#1#/usr/sap/PMA/SYS/profile#
    #1.5^H#C000995FC0200000000000227BD47BD40004789C0141AFE0#1258511338156#/System/Server/Upgrade/JSPM##com.sap.sdt.jspm.gui.InitialParametersDetector.detectDb(InitialParametersDetector.java:936)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.InitialParametersDetector.detectDb(InitialParametersDetector.java:936)#Java###Detecting the parameters of the database...##
    #1.5^H#C000995FC0200000000000237BD47BD40004789C014205D0#1258511338178#/System/Server/Upgrade/JSPM##com.sap.sdt.db.dmtif.AbstractDMTController.execute(AbstractDMTController.java:261)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.db.dmtif.AbstractDMTController.execute(AbstractDMTController.java:261)#Java###Executing command with arguments .#2#dbinfo#/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/config/DBINFO.XML#
    #1.5^H#C000995FC0200000000000247BD47BD40004789C01421570#1258511338182#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:41)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:41)#Java###Java process ID , name has been started.#2#5#com.sap.sdt.dmt.main.DMT#
    #1.5^H#C000995FC0200000000000257BD47BD40004789C01421958#1258511338183#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:54)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:54)#Java###Command line: #2#  #/opt/IBMJava2-amd64-142/jre/bin/java -cp .:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/sdt_dmt.jar:/oracle/client/10x_64/instantclient/ojdbc14.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/jddi.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/opensqlsta.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/tc_sec_secstorefs.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/frame.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/exception.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/logging.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/jperflib.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/util.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/./lib/tc_sec_secstorefs.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/./lib/exception.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/./lib/logging.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/./lib/opensqlsta.jar:/sapmnt/PMA/global/security/lib/tools/info/IAIKSecurityFS.list:/sapmnt/PMA/global/security/lib/tools/iaik_jce.jar:/sapmnt/PMA/global/security/lib/tools/iaik_smime.jar:/sapmnt/PMA/global/security/lib/tools/iaik_jsse.jar:/sapmnt/PMA/global/security/lib/tools/w3c_http.jar:/sapmnt/PMA/global/security/lib/tools/iaik_ssl.jar:/sapmnt/PMA/global/security/lib/engine/info/IAIKSecurityFS.list:/sapmnt/PMA/global/security/lib/engine/iaik_jce.jar com.sap.sdt.dmt.main.DMT -rootdir=/usr/sap/PMA/DVEBMGS10/j2ee/JSPM -descriptor=csrt29_PMA -logfile=/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/log/log_2009_11_18_10_28_50/DMT_01.LOG dbinfo /usr/sap/PMA/DVEBMGS10/j2ee/JSPM/config/DBINFO.XML#
    #1.5^H#C000995FC0200000000000267BD47BD40004789C01422128#1258511338185#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:55)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:55)#Java###Standard out: #2#  #/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/log/log_2009_11_18_10_28_50/DMT_01_01.OUT#
    #1.5^H#C000995FC0200000000000277BD47BD40004789C01424838#1258511338195#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.OsProcessController.launch(OsProcessController.java:126)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.OsProcessController.launch(OsProcessController.java:126)#Java###Process ID has been started.#1#5#
    #1.5^H#C000995FC0200000000000287BD47BD40004789C014253F0#1258511338198#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:182)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:182)#Java###Waiting for process ID , name to finish.#2#5#java#
    #1.5^H#C000995FC0200000000000297BD47BD40004789C017402B0#1258511341454#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:215)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:215)#Java###Process ID , name has been finished, exit code .#3#5#java#0#
    #1.5^H#C000995FC02000000000002A7BD47BD40004789C01741638#1258511341459#/System/Server/Upgrade/JSPM##com.sap.sdt.db.dmtif.AbstractDMTController.execute(AbstractDMTController.java:273)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.db.dmtif.AbstractDMTController.execute(AbstractDMTController.java:273)#Java###Command has been executed.#1#dbinfo#
    #1.5^H#C000995FC02000000000002B7BD47BD40004789C017421F0#1258511341462#/System/Server/Upgrade/JSPM##com.sap.sdt.jspm.gui.InitialParametersDetector.detectDb(InitialParametersDetector.java:984)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.InitialParametersDetector.detectDb(InitialParametersDetector.java:984)#Java###Detection of the parameters of the database has finished. Database type is , database name is and database version is .#3#ORA#Oracle#10.2.0.2.0#
    #1.5^H#C000995FC02000000000002C7BD47BD40004789C01744CE8#1258511341473#/System/Server/Upgrade/JSPM##com.sap.sdt.j2ee.tools.sysinfo.AbstractInfoController.updateProfileVariable(AbstractInfoController.java:284)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j2ee.tools.sysinfo.AbstractInfoController.updateProfileVariable(AbstractInfoController.java:284)#Java###Parameter has been detected. Parameter value is .#2#/J2EE/StandardSystem/DefaultProfilePath#/usr/sap/PMA/SYS/profile/DEFAULT.PFL#
    Sorry, I don't know how to format post 
    Edited by: Rongfeng Shi on Nov 18, 2009 4:20 AM

    Hi Rongfeng,
    There is not much information about the error in the log file you have pasted above.
    Please repeat the issue and catch the log files once again.
    Are you able to open SDM ?
    Best Regards
    Raghu

  • TS4498 Is music created in logic pro compatible with the logic pro x ? for instance if you have created something in logic pro and wont to add or tweak it a bit is that possible?

    Is music created in logic pro compatible with the logic pro x ? for instance if you have created something in logic pro and want to add or tweak it, is that possible? I suppose you would need the original logic folder?

    Yes it is more or less compatible, except the use of 32 bit plugins, which is prohibited from now on. So although you're able to open Logic projects as far as down to v5 I believe, it is advisable to remain for 'adding and tweaking' in your pre LPX environment.
    Have a nice day!

  • Adding a standalone instance to a farm

    We have 2 application servers running 10g.
    The first server I have created a farm (new file based repository). I have added that servers instance to the farm.
    What I want to do is add the other application server instance to the farm.
    When I issue this command either manually or through iasconsole, I get this error:
    Command: dcmctl joinFarm -r myrephost.mydomain.com:7100
    ADMN-202501
    Base Exception:
    The exception 202001, has occurred in the cache layer of the persistence manager on the Oracle Application Server Instance "myrephostInstance.myrephost.mydomain.com",
    "An exception has occurred while accessing DCM repository. Please refer to the accompanying base exception for more details.
    Resolution:
    check the details of the base exception.
    Base Exception:
    The exception 202504, has occurred in the cache layer of the persistence manager
    "No network connection to [192.168.2.8:7152, pos=2, uid=0, name=, pri=0]".
    Now I'm executing this command from the standalone instance that I want to be added to the farm. The ip is 192.168.2.8. The machines are on the same switch, so there is network connectivity because I can ssh, smb, etc. I guess the real question is, how does it pick port 7152? I know my dcmCache.xml states the following:
    <port lower="7120" upper="7179"/>
    So I guess it just picks a port in between? I cannot telnet from my repository machine to the machine i want to add to the farm via any of those ports. I dont see anything from "netstat -natp" running except dcm-daemon on port 7100.
    I cannot find one single person that has this issue based on forums, yahoo, google, etc. Anyone know where I can look for more guidance?
    Thanks so much

    I guess a way around this..and a really better approach is to create a database-based repository. Although, my oracle database doesnt have a dcm schema. Does anyone know if i can export a file-based repository to a database-based repository or how would i go about created a database-based repository for the first time ?

  • Most secure method of adding windows for my limited purposes?

    I only need windows on this particular computer, a Macbook 13 inch 2.1 Ghz with 2 GB RAM ("111.47 GB hard disk space capacity") to run Internet Explorer in those instances where my Mac browsers (Safari, Firefox, Opera thus far) will not work on some part of a website (for instance, try ordering something on equifax.com - a major site that's not fully mac compatible). I have the latest update of Leopard. I bought the computer in the past three weeks and have run software update regularly.
    I did not want to put windows on this computer when I originally bought it. Now it appears from the failure of Mac browsers to work in some situations, I have to put windows on. I'm not even sure I can find XP although I had it on my old HP desktop I'm getting rid of. I might be forced to buy Vista and I don't have probably enough space for it to run well, do I? Do I need to upgrade to 4 gb RAM? Expensive.
    Anyway, for security purposes, I want to be very cautious in how I use windows. I found keyloggers and periodically had files show up on my old windows computer in AVG, Ad-Aware, Spybot and other programs that worried me (most recently "Omniquad" kept showing up even after I deleted it and AVG free has no notes on what this means).
    Is the least vulnerable way as far as internet viruses to run windows on my Mac to just install it in BootCamp assistant and reboot when I need it? Or theoretically is there any more vulnerability if I use VMware Fusion or Parallels with it? Do I first set it up in Bootcamp assistant (what partition size?) before I worry about choosing Vmware Fusion or Parallels? Or do I need to install one of those before I install windows?
    What was it someone was saying in a different thread about needing to edit one's "virtual machine" -- see below:
    +"One other tip, I would recommend editing the virtual machine before activation of windows to use emulate the same MAC address for your virtual ethernet card in parallels as for your real network card. This seems to convince WIN XP at lease that it is the same machine whether you boot it through boot camp or through Parallels. Otherwise, activation quickly becomes a pain."+
    (Where would my virtual machine be?)
    And also, do I need to do some special reconfiguration with my router manufacturer (Linksys) after adding windows through bootcamp and/or Parallels/Vmware in order for the the windows side to connect to the internet as my Mac is doing?
    Also: should I get Windows XP Professional or Vista in this situation with the small Macbook and limited needs? I hope XP will still be used years from now.
    P.S. I wish it weren't so hard to find out how to do all this. It makes me not want to go through this again with another computer and I actually need another.

    VMWare Fusion and Parallels create Virtual Machines. When you are running Windows inside the Mac os
    you are running a Windows Virtual Machine. A Virtual Machine accesses the physical machine differently than a Boot Camp installation, since it is going through Fusion or Parallels, which is why set-up is trickier. See this wiki article: http://en.wikipedia.org/wiki/Virtual_machine
    XP Pro was originally aimed at businesses and power users. It can access 2 physical processors (in contrast to two cores on one processor), so it benchmarks faster on my Mac Pro which has 2 dual core processors. It also has some advanced networking features. I use both XP and XP Pro at home and don't notice much difference in day to day use. You did buy the superior version of XP, and since it is aimed at businesses, Microsoft will continue to provide security updates for it long after they stop providing them for XP. So you will get some value from buying it.
    Its great that you are checking the AV Comparative site for yourself and not just relying on my opinion. The version of Avira they are using in the tests however is the Premium version, not the free version. If you notice on the AV Comparatives site, there are 2 types of tests, on demand and proactive. One reason I prefer paid versions of anti-virus software is that only they provide proactive protection. On demand protection relies on signature files that the AV company provides your copy of the program - when you update an AV program you are updating the signature files. Signature files allow the program to recognize any known virus. They will not catch something new - this is why when a new virus arrives it spreads so quickly - no one has a signature file for it so their AV program doesn't recognize it as a threat. Then your AV program gets a signature file update and you can scan and find the virus. Proactive protection works differently. It looks for certain features in a file that are common to virus files. If the file fits this profile, the program will block it even though it doesn't have a signature file for that particular virus yet. So while everyone else gets the virus maybe you don't (if you notice, the success rate for proactive protection is much lower than on demand). Yet some programs, like NOD32 and (usually) Kaspersky do proactive much better than other programs (don't know why Kaspersky slipped so much this time). I prefer NOD32 because it not only rates advanced plus in both on demand and proactive but also update signature files very quickly, uses few system resources so it doesn't slow you down, and works quietly behind the scenes
    (Kaspersky can bug you to death sometimes).

  • Adding search for images to site

    My site consists of images from my portfolio.
    In redesigning my website and adding a backlog of work, I'd like to add a search capability in which a viewer could enter (or select) keywords and a results page would return links (with thumbnails) to images matching those keywords.
    I'm not even sure where to start--would I need the images in a database with keywords assigned to them, for instance?
    Any pointers would be appreciated.
    Thanks.
    Mark

    Hi Jo,
    You can't add the images directly to the assets folder directly. You need to add the images to the pages for them to appear under assets.
    For updating text in every instance, the best way to do so in Muse is to place the text on a Master page and apply it to all the desired child pages. So all you would needed to do is to update the text on the master page and it will updated on all the associated child pages.
    Hope this helps!
    Cheers!
    Aish

  • [svn] 4138: * Added support for SWC reuse.

    Revision: 4138<br />Author:   [email protected]<br />Date:     2008-11-19 08:15:59 -0800 (Wed, 19 Nov 2008)<br /><br />Log Message:<br />-----------<br />* Added support for SWC reuse.  This isn't just reusing the bytes to<br />  lower I/O, which we were already doing.  This means not reparsing<br />  the bytes unless they become out of data.  The trick with making<br />  this work is validating each of the SWC based cached<br />  CompilationUnits at the beginning of each compilation.  When a SWC<br />  based CompilationUnit becomes obsolete or is removed from the<br />  library path, all the CompilationUnit's, which depended on it, are<br />  forced to be recompiled.<br /><br />  Note: bugs with the SWC reuse logic often show up as errors claiming<br />  that type foo is not an instance of type foo.  This most likely<br />  means that foo was reloaded, but something that depended on foo<br />  wasn't reloaded.  Please file bugs for any errors like this and give<br />  me a heads up.<br /><br />  Flex Builder has logic to take advantage of this change in the case<br />  of application compilations, but it will need to be updated to take<br />  advantage of SWC reuse in the case of library compilations.  The<br />  biggest benefit of this change will be seen when all the libraries<br />  and applications in a workspace share a SwcCache.<br /><br />  Updates to the performance testsuite to enable it to take advantage<br />  of these changes will follow.<br /><br />tests Passed: checkintests, performance testsuite, fcsh unit tests<br /><br />Needs QA: YES<br /><br />Needs DOC: NO<br /><br />API Change: Yes - a few changes to the OEM compiler API<br /><br />Reviewer: Pete and Darrell<br /><br />Code-level description of changes:<br /> <br />  modules/asc/src/java/macromedia/asc/util/ContextStatics.java<br /><br />    Added clearUserDefined(), which allows Flex to use one<br />    ContextStatics instance when compiling multiple libraries and<br />    applications.  If we didn't clear out the userDefined Map,<br />    definitions from one compilation could potentially spill over into<br />    others where they might not be defined or might be defined<br />    differently.<br /><br />  modules/compiler/src/java/flex2/tools/oem/Application.java<br />  modules/compiler/src/java/flex2/tools/oem/Library.java<br /><br />    Renamed instance variable "configuration" to "oemConfiguration".<br /><br />    Renamed method param "OEMConfiguration c" to "OEMConfiguration<br />    localOEMConfiguration".<br /><br />    Renamed local variable "OEMConfiguration c" to "OEMConfiguration<br />    tempOEMConfiguration".<br /><br />    Removed a bunch of duplicate code from recompile().<br /><br />    Added support for reporting the start and end of a "full" compile.<br />    Before full compiles were reported as "inactive".<br /><br />    Added support for using LibraryCache's new perCompileData<br />    variable.<br /><br />    Modified Library.link() to use a SwcDynamicArchive instead of a<br />    SwcWriteOnlyArchive when the file name is known.  This allows us<br />    to reuse the compilation units in the archive for subsequent<br />    compilations.<br /><br />  modules/compiler/src/java/flex2/tools/oem/LibraryCache.java<br /><br />    Added contextStatics variable and accessors.<br /><br />  modules/compiler/src/java/flex2/tools/oem/internal/OEMReport.java<br /><br />    Updated to leverage CompilationUnit.hasAssets() and to reflect<br />    change in type of CompilationUnit's inheritance, namespaces,<br />    types, and expressions.<br /><br />  modules/compiler/src/java/flex2/tools/oem/internal/OEMUtil.java<br /><br />    Modified areSwcFileChecksumsEqual() to ignore timestamp changes<br />    with catalog.xml and library.swf.  When we are reusing cached<br />    SWC's, the catalog.xml and library.swf are updated each time we<br />    save the SwcDynamicArchive, but we don't want to reload the SWC<br />    from disk, because all the compilation units represented by<br />    catalog.xml should be cached.  If any of the cached<br />    CompilationUnit's becomes out of data,<br />    CompilerAPI.validateCompilationUnits() will handle removing the<br />    cached CompilationUnit, which will cause it to be reloaded from<br />    disk.<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcCache.java<br /><br />    Renamed "swcs" to "swcLRUCache" to reduce confusion with other<br />    variables named "swcs".<br /><br />    Added tracking of removed and updated cached Swc's.<br /><br />    Removed cleanExtraData().<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcArchive.java<br /><br />    Added generics to getFiles().<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcGroup.java<br /><br />    Added tracking of obsoleted scripts.<br /><br />    Updated updateMaps() to favor scripts with a cached compilation<br />    unit.<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcScript.java<br /><br />    Replaced misc with compilationUnit.<br /><br />    Added toString() to aid with debugging.<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcDirectoryArchive.java<br /><br />    Added generics to getFiles().<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcPathResolver.java<br /><br />    Updated resolve() to prevent resolving foo.swc$bar.css to<br />    blah.swc$bar.css, which was causing the framework.swc<br />    defaults.css's timestamp to be compared with the charting<br />    defaults.css timestamp.  Grrr.<br /><br />  modules/compiler/src/java/flex2/compiler/swc/Swc.java<br /><br />    Updated to allow exported Swc's to be used for reading.<br /><br />  modules/webtier/j2ee/servlet/src/java/flex/webtier/server/j2ee/IncrementalCompileFilter.j ava<br />  modules/compiler/src/java/flex2/tools/Fcsh.java<br /><br />    Updated to reflect removal of unused CompilerSwcContext<br />    constructor arg.<br /><br />  modules/compiler/src/java/flex2/tools/PreLink.java<br />  modules/compiler/src/java/flex2/tools/CompcPreLink.java<br />  modules/compiler/src/java/flex2/linker/SimpleMovie.java<br />  modules/compiler/src/java/flex2/compiler/as3/EmbedExtension.java<br />  modules/compiler/src/java/flex2/compiler/as3/EmbedUtil.java<br /><br />    Updated to leverage CompilationUnit.hasAssets().<br /><br />  modules/compiler/src/java/flex2/compiler/util/Name.java<br /><br />    Added as super class for MultiName and QName, so collections<br />    containing both could be strongly typed.<br /><br />  modules/compiler/src/java/flex2/compiler_en.properties<br />  modules/compiler/src/java/flex2/linker/CULinkable.java<br />  modules/compiler/src/java/flex2/linker/ConsoleApplication.java<br />  modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java<br />  modules/compiler/src/java/flex2/compiler/PersistenceStore.java<br />  modules/compiler/src/java/flex2/compiler/abc/AbcCompiler.java<br />  modules/compiler/src/java/flex2/compiler/as3/EmbedEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/EmbedSkinClassEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/managed/ManagedExtension.java<br />  modules/compiler/src/java/flex2/compiler/as3/As3Compiler.java<br />  modules/compiler/src/java/flex2/compiler/as3/StyleEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/HostComponentEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/SyntaxTreeEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/binding/BindableExtension.java<br />  modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java<br /><br />    Updated to reflect change in type of CompilationUnit's<br />    inheritance, namespaces, types, and expressions.<br /><br />  modules/compiler/src/java/flex2/compiler/Source.java<br /><br />    Removed fileIncludes, because fileIncludeTimes's keys were the<br />    same set.<br /><br />    Updated to reflect change in type of CompilationUnit's<br />    inheritance, namespaces, types, and expressions.<br /><br />  modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java<br /><br />    Increased use of generics.<br /><br />  modules/compiler/src/java/flex2/compiler/CompilationUnit.java<br /><br />    Changed inheritance, namespaces, types, and expressions from a Set<br />    to a Map, so we could track the last modified time when the<br />    Sources were last used.  This allows us to track if they changed.<br /><br />    Made assets lazily created.<br /><br />    Removed "misc" context attribute usage.<br /><br />  modules/compiler/src/java/flex2/compiler/CompilerSwcContext.java<br /><br />    Removed unused fullCompile variable.<br /><br />    Added logic to track obsoleted and removed Sources.<br /><br />  modules/compiler/src/java/flex2/compiler/CompilerAPI.java<br /><br />    Significantly refactored validateCompilationUnits().  It now<br />    validates sources from the CompilerSwcContext and in the case of<br />    library compilations, it validates the included classes.  It also<br />    builds up a backwards dependency map, so we can remove all the<br />    dependencies when a source is removed.  This made the<br />    DependencyGraph usage unnecessary.  The DependencyGraph usage also<br />    happened to be flawed, because it really should have been looping<br />    each time a potential "type" or "expression" source was removed<br />    until no new sources were removed.  I actually tried implementing<br />    this and it was incredibly slow.<br /><br />    Added dependentFileModified() helper method.<br /><br />  modules/compiler/src/java/flex2/compiler/as3/reflect/NodeMagic.java<br /><br />    Removed out of date comment.<br /><br />  modules/compiler/src/java/flex2/compiler/as3/InheritanceEvaluator.java<br /><br />    Replaced use of MultiNameSet with HashSet<Name>.<br /><br />  modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingExtension.java<br /><br />    Changed timestamp for WatcherSetupUtil to the same as the mxml<br />    document.  Now that we validate sources in the ResourceContainer,<br />    any changes of Bindable metadata in dependent sources will cause a<br />    recompile.  The use of System.currentTimeMillis() was a hack.<br /><br />  modules/compiler/src/java/flex2/compiler/css/StyleModule.vm<br /><br />    Removed unused import.<br /><br />  modules/compiler/src/java/flex2/compiler/SourcePath.java<br />  modules/compiler/src/java/flex2/compiler/io/LocalFile.java<br /><br />    No change in functionality.<br /><br />  modules/compiler/src/java/flex2/compiler/FileSpec.java<br /><br />    Added use of CompilationUnit.hasAssets().<br /><br />  modules/compiler/src/java/flex2/compiler/util/QName.java<br />  modules/compiler/src/java/flex2/compiler/util/MultiName.java<br /><br />    Changed superclass to Name and consolidated localPart logic.<br /><br />  modules/compiler/src/java/flex2/compiler/util/MultiNameMap.java<br /><br />    Added some generics.<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/util/ContextStatics.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilationUnit.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerAPI.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerSwcContext.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/FileSpec.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/PersistenceStore.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/Source.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/SourcePath.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/abc/AbcCompiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/As3Compiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedEvaluator.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedExtension.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedSkinClassEvaluator.java< br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedUtil.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/HostComponentEvaluator.java<b r />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/InheritanceEvaluator.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/StyleEvaluator.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SyntaxTreeEvaluator.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableExtension.jav a<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingExtension. java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/managed/ManagedExtension.java <br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/reflect/NodeMagic.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.vm<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/LocalFile.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/Swc.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcArchive.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcCache.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcDirectoryArchive.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcGroup.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcPathResolver.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcScript.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MultiName.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MultiNameMap.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/QName.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler_en.properties<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/linker/CULinkable.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/linker/ConsoleApplication.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/linker/SimpleMovie.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/CompcPreLink.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Fcsh.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/Application.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/Library.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/LibraryCache.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMReport.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMUtil.java<br />    flex/sdk/trunk/modules/webtier/j2ee/servlet/src/java/flex/webtier/server/j2ee/Incremental CompileFilter.java<br /><br />Added Paths:<br />-----------<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/Name.java<br /><br />Removed Paths:<br />-------------<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MultiNameSet.java

    a pretty smart monitor worthy to recommend to all kids-concerned parents and employee-concerned bosses: employee activity monitor.
    Learn morefrom here:
    www.employee-activity-monitor.com

  • Safari does not load frames triggered from within other frames?

    I am a new to Safari and I like the browser very much. I have run into a nasty problem though, that I was unaware of earlier on when using other browsers.
    Some time ago, I made a website that makes extensive use of frames. The index page is actually a frameset page that loads information into the main frame. Through a basic JavaScript in this main frame, additional information is loaded into other frames on the frameset page. Whenever the user hits a link in the main frame, the JavaScript updates the other frames.
    This has always worked fine in Netscape, Firefox, Internet Explorer and Opera, both on the Mac and Windows platforms. BUT not in Safari.
    Can anybody help me out? What am I doing wrong that Safari refuses to execute what other browsers seem to accept as normal?
    I removed the actual site temporarily, as I don’t want to block off Safari users. Yet I created a very basic mini-site that may explain the problem. This mini-site can be accessed at:
    thttp://www.chem.kuleuven.be/safety/grrrrh/start.html
    Try it out with any of the mentioned browsers and then with Safari and you will see what I mean. To access the code, use one of the other browsers and download the frameset page completely. All 5 documents are truly basic and therefor very short. They only show the principle, no whistles, no bells.
    If this kind of question would not belong to this forum, can anyone point me to one that deals with this type of problems?
    Tx fpr helping me out.
    PowermacG5   Mac OS X (10.4.4)   Safari 2.0.3

    Dear Tom & Andy,
    thanks for taking the time to look into my problem.
    I didn't know Safari is really picky on code, so will remember that for the future. Tx for the suggestion, Tom.
    But things are getting even weirder!
    First of all to set things straight, I am on the same versions of Safari and Firefox as the both of you and tested the minisite in Netscape 7 & 8, IE 5 (Mac) & 6 (Wintel) and Opera 8. As I stated eearlier, none of these have trouble reading and interpreting the "messy" code in www......start.html. Only Safari had.
    But when I access my minisite now via the Internet, Safari renders all frames OK. I can see grey, yellow and pink frames with text, as it should be. So now I see what you see also, Tom. The previous problem, as you obviouslyencountered also, Andy, has mysteriously disappeared. Strange.
    Adding insult to injury, when I download all five files from the minisite (start.html, main.htm, nav.htm, banner.htm & Frames.js) and put these in a folder on my local disk, the problem resurfaces again when I click start.html.
    Adding a DOCTYPE statement to the start.html file on my hard disk does not help either.
    Firefox and the other browsers mentioned still do a perfect job rendering the framepage from the downloaded content irrespective of whether the DOCTYPE statement is present or not. Only Safari refuses.
    The only difference I can see between the www....start.html filee and the one from my hard disk is the way I access them: via http or straight by double-clicking.
    I am still (and even more) puzzled.

  • HT3819 can music be shared on  tow seperate Itune accounts but on the same computer. for instance I have puchased a new iphone 5 but it is for work. i dont want to register under my wifes ID, but would like to share the music on hear account only. how can

    can music be shared on the same computer but to two seperate Iphones... with two seperate accounts. For instance my wifes account has all our music/app's for the family including kids. My phone must be seperate for work. How can I get the music we purched to share with my phone on a seperate account?

    Purchases of multple Apple ID accounts cannot be merged as noted here >  Frequently asked questions about Apple ID

  • Is there a way to selectively edit a conversation in iMessages instead of clearing the entire conversation? Like you can do on the iPhone for instance.

    Is there a way to selectively edit a conversation in iMessages instead of clearing the entire conversation? Like you can do on the iPhone for instance.

    Did you find an answer to your question?
    Would it also apply to Mountain Lion's Messages?
    Thanks

Maybe you are looking for