Can i run 2 diff elements on same puter.

Is it problematic to run 2 versions of elements on my computer.  I have elements 10 installed but really miss my old elements 2 want to put it on also.  Will they clash with each other.
Thanx in advance for any advice.

No clashes.  You'll be OK.
Ken

Similar Messages

  • Can't run multiple instances on same page!

    Hi,
    Since I got no response on the shadowbox forums after 2 weeks, I thought it's worth to post it here and hope someone can help me out.
    Note: This is also related on non-joomla pages. I've tested it on plain html as well (by Dreamweaver) and get the same issue.
    The following issue was posted by me on the shadowbox forums:
    I was wondering if the following is possible.
    I've tried almost everything where I can think of, but no luck.
    Searched many forums and googled a lot, but without success.
    I got feeling that I'm so close and missing some simple solution.
    So I'm stuck here, I'm not able to figure it out.
    This is what I want to achieve:
    My website is running on Joomla 1.5. And I'm using a Shadowbox extension.
    In an article I've put multiple SWF movies, like previews acting like buttons.
    So when clicking on a SWF button/movie, Shadowbox opens and plays a related FLV movie.
    To achieve this part I've followed the instructions at this site under FAQ > first paragraph.
    So far so good...
    Now the ugly thing is when putting multiple swf buttons on a single page, after clicking a random button Shadowbox always displays the same flv movie. I did some altering with ID's and such but had no luck.
    Even try to alter with the Shadowbox options and variables, flashVars and such (at this site under Options and Usage) but that worked out for me.
    The strange thing is when placing the buttons, let's say in an article belonging to a section and category and make the articles paginated, after clicking the swf button the related flv plays. Browsing to the next page and clicking the button, the related flv will play also. This is the way it should be. Unfortunately it doesn't work when multiple buttons are displayed on the frontpage or an single article regardless whether they belong to sections and categories or not.
    Even when a single code is placed in a single article and display 2 or more articles containg a different swf and a different related flv link only the last added flv plays with every random swf button/movie.
    This the code I'm using for each swf (actionscript behavior):
    FIRST INSTANCE SWF=====================================
    on (release) {
    getURL("javascript:openShadowbox
    ('http://test.cquence-multimedia.nl/images/cqmm_test.flv','flv','title')");
    SECOND INSTANCE SWF=====================================
    on (release) {
    getURL("javascript:openShadowbox
    ('http://test.cquence-multimedia.nl/images/WizardFinal_1.flv','flv','title')");
    ================================================
    This is the code I'm using in the article (2 instances on a single page):
    =======================================================
    <!-- FIRST INSTANCE -->
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="150" height="50" data="images/default_swf_button.swf">
    <param name="movie" value="images/default_swf_button.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="9.0.45.0" /> <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall" value="Scripts/expressInstall.swf" /> <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. --> <!--[if !IE]>-->                       
    <object width="150" height="50" data="images/default_swf_button.swf" type="application/x-shockwave-flash">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="9.0.45.0" />
    <param name="expressinstall" value="Scripts/expressInstall.swf" /> <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
    <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" border="0" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>
    </p>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    <script type="text/javascript">
    function openShadowbox(content, player, title, width, height, options){
    Shadowbox.open({
    content:"http://test.cquence-multimedia.nl/images/cqmm_test.flv",
    player:"flv",
    title:"SHADOWBOX FLASHBUTTON TEST FLV",
    width:"800px",
    height:"600px",
    </script>
    <!-- SECOND INSTANCE -->
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <object id="FlashID1" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="150" height="50" data="images/default_swf_button2.swf">
    <param name="movie" value="images/default_swf_button2.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="9.0.45.0" /> <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall" value="Scripts/expressInstall.swf" /> <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. --> <!--[if !IE]>-->        
    <object width="150" height="50" data="images/default_swf_button2.swf" type="application/x-shockwave-flash">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="9.0.45.0" />
    <param name="expressinstall" value="Scripts/expressInstall.swf" /> <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
    <a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" border="0" alt="Get Adobe Flash player" width="112" height="33" /></a>
    </div>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>
    <script type="text/javascript">
    swfobject.registerObject("FlashID1");
    </script>
    <script type="text/javascript">
    function openShadowbox (content, player, title, width, height, options){
    Shadowbox.open({
    content:"http://test.cquence-multimedia.nl/images/WizardFinal_1.flv",
    player:"flv",
    title:"SHADOWBOX FLASHBUTTON TEST BRIAN",
    width:"800px",
    height:"600px",
    </script>
    =======================================================
    This is the link to the page in question:
    http://test.cquence-multimedia.nl/index.php?option=com_content&view=article&id=9&Itemid=13
    Please, any suggestions would be great!
    Thanks in advance.
    Best Regards,
    John.

    Sorry...I still don't get it. What is it about Windows FUS that keeps iTunes from running running the process twice? It can run many other non-Apple windows apps in multiple user sessions (commercial apps, open source apps, audio/video apps, networked apps). I can even run two different virtual machines at the same time under two different user sessions.
    Why can iTunesHelper.exe run twice but iTunes.exe cannot? Why can I run Safari at the same time? Quicktime Player runs fine under multiple user sessions.
    Blaming it on Windows and/or FUS sounds like FUD. Can anyone give a valid technical reason? Semaphores? Mutexes? An admission (and explanation) that the Windows version is purposely crippled?

  • How can I set up Elements 12 to put my Nik Edits onto a seperate Layer

    How can I set up Elements 12 to put put my Nik edits onto a seperate Layer
    and would XXL help with its Smart Object Filters (Smart Filters
    Thankyou

    Also, just a note.   iMac PPC is about iMacs that were available up to early 2006.    iMac Intel is for iMacs that were made available early in to 2006 to present.  Forums for what you have in your profile include:
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard
    https://discussions.apple.com/community/ilife/iphoto
    https://discussions.apple.com/community/notebooks/macbook
    Please consider posting and reviewing those locations in the future when you have a question that pertains to one of those products.  You'll much more likely get a resposne then.   This is a user to user forum, and you have to seek knowledge in the areas that are most likely to have the topic of your interest.

  • Can not run two domains on same machine (JVM).

    Hi every body in news group,
    I have a problem with weblogic 6.x, I am trying to run multiple domains e.g examples,
    mydomain, mydomain1 on the same machine (JVM) at the same time, but I can not
    run all three at same time, I changed ports already on all domains, and every
    one has different ports, e.g 7001, 7002, 7003, but still when one domain is running,
    and I try to run other startup file by command prompt, it says, can not initialize
    JVM, can some one help me to understand, why I can not run different domains at
    one time, according to my knowledge, we can run multiple domains on one JVM, by
    giving them differnt ports. I will appreciate your help, looking forward to your
    response, thanks in advance.
    Cheers!
    Ghayyur

    This should work. Could you post the exact error message?
    Ghayyur Hassan wrote:
    Hi every body in news group,
    I have a problem with weblogic 6.x, I am trying to run multiple domains e.g examples,
    mydomain, mydomain1 on the same machine (JVM) at the same time, but I can not
    run all three at same time, I changed ports already on all domains, and every
    one has different ports, e.g 7001, 7002, 7003, but still when one domain is running,
    and I try to run other startup file by command prompt, it says, can not initialize
    JVM, can some one help me to understand, why I can not run different domains at
    one time, according to my knowledge, we can run multiple domains on one JVM, by
    giving them differnt ports. I will appreciate your help, looking forward to your
    response, thanks in advance.
    Cheers!
    Ghayyur

  • Can't run Legion or compile SAM

    Hi
    I got OpenSPARCT2_Arch.1.2.tar.bz2 to my Solaris 10/amd64. I tried compiling legion, and it compiles fine after little hackin in configure.opensparc. However, when I try to run it with 1c1t/legion.conf, it exits with this output:
    Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
    Legion version 0.1 compiled on 2010-01-31--21:04:06
    debug:save_state:trap_pc = 0x1ff0000000
    debug:save_state:format = legion
    debug:save_state:patch addr=0xfff0000200 with val=0x1ff0000000
    warning: maxtl set to non-standard value for this processor
    FATAL: virtual_disk not supported on this platform at line 90 of 1c1t/legion.confIt boot fine into obp if I comment disk section from that config file.
    Whe I try to compile SAM, it fails at make n2-cosim-pkg with this error:
    LD_LIBRARY_PATH= /opt/sunstudio12.1/bin/CC -G -KPIC -I/export/home/fronty/sparc/sam-t2/sam/build/amd64/inc -I/export/home/fronty/sparc/sam-t2/devtools/amd64/include/python2.4 -DPURE=0 -DARCH_X64 -DCOMPILE_FOR_COSIM -DMEMORY_MSYNC  -mt -xarch=amd64  -O5 -DNDEBUG -DSS_PRAY_MODE -c -o /export/home/fronty/sparc/sam-t2/sam/build/amd64/obj/bl/lib/ecc/src/BL_CKSyndrome.o bl/lib/ecc/src/BL_CKSyndrome.cc
    CC: Warning: -xarch=amd64 is deprecated, use -m64 to create 64-bit programs
    "bl/lib/ecc/src/BL_CKSyndrome.h", line 50: Error: The function "generateChipkillECC" must have a prototype.make n2 fails with:
    /opt/sunstudio12.1/bin/CC -w -mt -xO3 -xarch=amd64 -DARCH_X64 -DIO_THREAD=1 -DV4_NUM_DEVICE_COMPAT -mt -Kpic -I../../include -I../../system/blaze/include -I../../system/util/include -I/export/home/fronty/sparc/sam-t2/devtools/amd64/include/python2.4 -I/export/home/fronty/sparc/sam-t2/sam/include -DN2 -DMEMORY_SPARSE -DBITS=64 -DN2 -DMEMORY_SPARSE -DBITS=64 -DMODNAME=\"py\"   -c py_interface.cc -o /export/home/fronty/sparc/sam-t2/sam/build/n2/devices/py/py_interface.o
    CC: Warning: -xarch=amd64 is deprecated, use -m64 to create 64-bit programs
    "/opt/sunstudio12.1/prod/include/CC/Cstd/rw/traits", line 531: Error: The function "wcsstr" must have a prototype.I have Sun Studio 12 installed.
    Can anyone give some hints about this?
    Edited by: Front_slash on Jan 31, 2010 11:18 AM

    As well I can't run iTunes. Having installed it successfully once a few days ago, whenever I try to open it now I get the message "iTunes has encountered a problem and needs to close. We are sorry for the inconvenience"
    Very polite, but as helpful as skis in the desert.
    This is iTunes Version 7 and I also can't seem to reinstall Quicktime on its own. So far I have deleted and reinstalled the lot about six times.
    Any suggestions or even solutions?
    Further, is there any way to contact Apple themselves?
    iPod with Video   Windows XP Pro   Dell Inspiron 9400

  • Can you run multiple iPods on same computer?

    I have a "regular" ipod and have successfully loaded iTunes (dated 10-12-2005) on my pc. My husband just bought a shuffle but we cannot seem to run them on the same pc. Why not? iTunes just will NOT recognize the shuffle. I have successfully loaded the shuffle on our kids' pc; but all 2,000 songs are on my pc. I DON'T want to reload all of them. ANY suggestions? Comments?
    I did try to update the iTunes. Ran into other problem - iTunes wouldn't even start - had to uninstall/reinstall.
    Dell   Windows XP  

    I had the same problem with iTunes not recognizing my
    iPod Shuffle. What I did to fix the problem was to
    download the latest version of the iPod updater and
    select the restore option. It should reset the
    factory settings and flash the device with the latest
    software. I recommend trying to get iTunes to
    recognize the shuffle on its own, and then connecting
    the additional unit.
    Sounds great - but every time I load updater I cannot even start iTunes. VERY frustrated.

  • Can i have xml elements with same name but one is having attrbt..?

    Hi all,
    I am suppose to take input from one system into BPEL.That system is auto gererating xml file. But that file is strange. It has two xml element with
    same name but with completely different sequence. First one is having two comlexTypes while second is having 5 simple types.
    Now the difference is First element is having attribute while second is not.
    So is that file is correct.?
    thanks a lot.
    /mishit

    can you post the file? or load the file into JDeveloper and check the syntax or use XMLSpy for validation of the XML.

  • Can we run 2 sqls in same report??

    Hi All,
    Can any one help me with this issue of .....
    Can we run two independent SQL statements in a single Report.
    Example
    Select * from Dept;(As First Query).
    Select * from emp; (As Second Query).
    And can i have Grouping options in individual Queries above.
    Thanks in advance.....

    A report (.rdf) file can have multiple SQL queries. Each of these independant SQL queries can be on their own layout in any of the three Sections.
    If you want to have only one layout from the two SQL queries, then you will need to join the two queries (assuming that there is a relationship between the two queries).
    Each of these two queries can be grouped also.
    Regards,
    John

  • Can I run Photoshop Elements and Photoshop CS6?

    I have a Mac running 10.7.5 and have Photoshop Elements 6 and 9 installed.  I use these regularly but want to upgrade to Photoshop CS6.   Will it download/install and run alongside Elements 6 and 9?

    Yes.

  • Can't run organizer (Elements 11)

    Just upgraded from Elements 5.0 to 11 and Organizer locks up. I can run the editor, what can I do?

    Hold down your Shift key while launching the Organizer. This would open up the Catalog Manager.  Highlight your catalog at the bottom of the window, and choose "Repair" and then "Optimize".
    If that doesn't solve it, from the Catalog Manager, try creating a new catalog.
    If Organizer still fails to launch, try following steps -
    1.Delete the Organizer preferences. (Organizer preferences are located at %appdata%/Adobe/Elements Organizer/11.0/Organizer). Delete the "status.dat" and "psa.prf" file from this folder.
    2. Navigate to folder on your machine where application is installed. Right click "PhotoshopElementsOrganizer.exe" and run it as Administrator.
    Hope this would resolve your issue.

  • Can I run Photoshop Elements 11 on Windows and Mac OS?

    I have photoshop elements 11 for windows, but I want to buy an Imac. Is it possibel to get a free version for the Imac?

    Photoshop Elements comes in both versions for the same license.  So you just need to acquire the Mac version and install using your serial number to activate it.  You can download the trial version of the software thru the page linked below.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site or else the download will not work properly.
    Photoshop/Premiere Elements 11:
    http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l

  • Can we run 2 version of same full client on the same desktop

    Hi Friends,
    We are in the process of upgrading our Hyperion Planning environment from 9.3.0 to 9.3.1, Some our our users utilize the full client for Reporting Studio and Analytic Administrative Services Console on their desktop. While the upgrade is in process, the users will need to access both versions. So, with that in mind, is it possible to install and and run the 9.3.0 and the 9.3.1 version of the full client for Reporting Studio and Analytic Administrative Services Console on the same dekstop at the same time?
    Please suggest.
    Regards.

    Hi,
    You could use the java web client version of AAS then you wouldn't need to be concerned about running 2 clients.
    http://<aas machine>:10080/easconsole/console.html
    I am not totally sure but Financial Reporting studio may be backwards compatible to version 9.3.0
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can I run Premiere Elements 10 and Photoshop Elements 10 on my PC

    My computer has a dual core pentium E2140 processor running at 1.6 Ghz, 2 GB RAM and an NVidia GForce 8400GS graphics card with 512 MB.  Will Premiere Elements 10 run OK on it for SD video and will Photoshop Elements 10 run on it OK

    The specified components are good to install and use Photoshop Elements and Premier Elements 10.
    http://www.adobe.com/products/photoshop-premiere-elements/tech-specs.html

  • Can I run Photoshop Elements 2 on Windows 7?

    I just got a brand new PC:
    2nd Gen AMD Quad-Core A10-5700 Accelerated Processor at 3.4GHz
    4MB L2 Cache
    12GB PC3- PC3-10600 DDR3-1333 SDRAM memory 3x4GB
    and tried to install Photoshop Elements 2.0 on it. I have not installed other programs or files on it, it has 2T empty harddrive. The program installed fine, but wont launch because "scratch disks are full." In order to reasign the scratch diks I need to go through the preferences, but I cannot do so as the program wont open. A bit of a catch 22. Any solutions? Or is PE 2.0 not compatible with the new coputers? Than you for your help!

    Tevis11 HP would be the people who can give you the best advice on your computer configuration. That being said I believe your easiest, and less technical solution, would be to obtain Photoshop Elements 10.  Photoshop Elements 2 was released in 2002 and may not function on Windows 7 which was released in 2009.
    If you wish to try Photoshop Elements 10 you can locate it at http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en_us.

  • Can you run Orchestrator on the same SQL server as SCCM?

    500+ systems, and our SCCM data base is sizable. We're running SQL on a virtual server within our SAN. I can tell you just poking around on the server, I do feel its kinda slow and everything feels to kinda chug.... Might be better to just see if I can get approval on the spend for another license... I do know deep down thats the correct way to go. 
    Unless Orch is so light and hardly uses any resources that it can piggyback SCCM? The hard part is going to be to convince them to use something I am still learning to use. Ha! But I do have a book for it, so thats a step in the right direction. 

    So our current solution is MDT for deployments, and SCCM for software and updates deployment as well as software center self service.
    I'm wanting to bring in Orchestrator to start using playbooks to automate everything. I see that all of Software Center's add-on parts don't cost anything, but all require SQL Server. Well I already have that running for SCCM. So can I share between the two? SCCM is already kind of a big hog, but I have zero to little knowledge of Orchestrator... Would that be just a little more stress on the server or a lot more? Does Orchestrator really need its own server?
    This topic first appeared in the Spiceworks Community

Maybe you are looking for