2.1 EA1: Externally Modified files - Debugging.layout Editing.layout

Hi Team,
I'm working with 3 instances of SQL Developer 1. for Development Environment 2. Production Environment (different color theme red) 3. Userdefined Reports Session monitoring (yellow).
Now I always get a popup window "Externally Modified Files" with checkboxes for "Reload Selected Files" C:\....Debugging Layout, C:\...Editing Layout. When I deselect them and click ok I get the popup again every few minutes.
1. What does this mean...?
2. What to do to save my preferences changed in one instance so that the other instances are based on this settings on the next restart?
Thanks,
Juergen

There is a slightly simpler way to have 3 different settings directories without creating 3 different installs. You can create 3 shortcuts for the sqldeveloper.exe. In each one, give a program argument of -J-Dide.user.dir=<directory>. Each shortcut will then launch SQL Developer with a different settings directory so that you can have your distinct settings.
The -J argument on the command-line or in the program arguments of a shortcut just tells SQL Developer that the rest of the argument should be passed to Java and not handled by the launcher. It is equivalent to using the AddVMOption command in the conf file.
- John
SQL Developer Team

Similar Messages

  • SharePoint2013 referencing external JS file in page layout not working

    Hi,
    I have created a custom page layout. In that custom page layout I have many HTML markup and controls like Dropdowns, hyperlinks (hrefs) etc. 
    Clicking on hyperlink hides or shows a div. The HTML markup and controls shows up fine when I create a page from page layout.
    The issue I am having is the JavaScript to hide or show div is in external JS file, which I am referencing in the page layout as below:-
     <SharePoint:ScriptLink name="~sitecollection/Style Library/Scripts/my.js"
     runat="server" />
    But when I click on “hyperlinks (hrefs)” the script in external js file doesn’t fire.
    I also tried using
    <script src="../../mysite/Style%20Library/Scripts/my.js"></script>
    I even tried below:-
    <script type="text/javascript" language="javascript" src="</script">https://sharepoint.com/mysite/Style%20Library/Scripts/mys.js"></script>
    <SharePoint:ScriptLink id="ScriptExternalJs" runat="server" Name="~SiteCollection/Style Library/Scripts/my.js" OnDemand="false" LoadAfterUI="true" Localizable="false" ></SharePoint:ScriptLink>
    But nothing seem to be working, I am able to refer an external CSS file but
    not JS file within the pagelayout under "PlaceHolderAdditionalPageHead" section.
    Any idea what's wrongs?
    Thanks,

    Hi,
    Please try to use the following statement:
    <link id="Link1" href="<% $SPUrl:~SiteCollection/Style Library/Scripts/my.js%>" runat="server" type="text/script" />
    More information is here:
    http://microsoft-techies.blogspot.com/2014/03/how-to-add-styles-and-javascript-files.html
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • JavaScript alert in AS3 or AS2 to debug the external actionscript file

    Hi,
    Is there any way to debug the external AS file as i dont want to use "trace".
    I have an idea to use the input text field the check the variable/function is working right but this is not enough so is there any process in AS2 or AS3.
    Thanks in advance..

    my mistake ..i have used there dynamic textfiled.
    but i got a easy solution by using
    getURL ("javascript:alert('Testing');");
    but this is not the good solution
    is there any way to import the alert contolls in AS2
    like i have read somewhere
    import mx.controls.Alert;
    Please reply..

  • Has anyone else had problems uploading modifyed files to an external server

    Hi, My website bilyz.com has been running OK on two external servers, two different hosting providers, yet neither will allow me to upload modified files.
    Since both external servers will run my site OK this narrows the problem source down to my site construction (pre 2014 update) or to Muse software.
    The external servers will accept all my html files without a hitch but stalls at various images and not always the same image.
    Now I have totally rebuilt the site by stripping out all images, resizing them and remounting them into the slider widget but it doesn't make a difference.
    The external server technicians are at a loss to explain and after research have referred me back to Adobe Muse.
    Kind regards
    Bill Watters

    Thank you Aish
    As per your suggestion I published the unchanged site to Business Catalyst as bilyzcom.businesscatalyst.com and it uploaded without a fault. Then I made an alteration to the Gallery page where I changed one image in the slider and a small typo on the Design page. Then published again but this time I selected 'options' and clicked on 'modified files only' Result: The site uploaded perfectly and the altered pages showed the recent changes.
    So can we conclude that the source of the problem isn't in the Muse software?.
    However, If this problem only occurs with the external server since the update; it also stalls when uploading all files and with modified files so could it point to the recent Muse 2014 update?
    Yesterday I have also uninstalled my most recent version then re-installed it via the Creative Cloud File manager. . My copy is 2014.0.1.30 CL 785017
    I hope this gives you something to work on.
    I look forward to your reply.

  • 'Basic' external actionscript file/class usage

    Hey All,
    I'm a bit baffled by something that should, in my humble opinion, be a piece of cake...
    The setup is really easy. A simple application with a single textinput, a button and a text component.
    When the button is clicked a function is called that sets the text from the inputfield to the text component.
    code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
        <mx:Script>
            <![CDATA[
                public function click(inputText:String):void {
                    outPutTxt.text = inputText;
            ]]>
        </mx:Script>
        <mx:TextInput x="10" y="10" id="inputTxt"/>
        <mx:Button x="178" y="10" label="Button" id="Btn" click="{click(inputTxt.text)}"/>
        <mx:Text x="251" y="12" text="Text" id="outPutTxt"/>
    </mx:Application>
    As I said, really easy.
    What I want to do is put the function 'click' into an external actionscript file or class. And still be able to, from within the external file, modify the outPutTxt stuff.
    I'm aware that I could create a public bindable variable inside of the external file and then bind the outPutTxt to that variable, but I would really like to be able to 'simply' force the value...
    Is that possible? If yes: how plix
    If it's not possible, I'd like to know as well! And in that case, how would I then re-use the same instance of a class/file in multiple seperate components? Say I got a 'login' thingie where a user logs in (data stored externally in a seperate actionscript file/class) and I want to re-use that information on other pages... Or is this done automatically?
    Any and all comments/answers are higly appreciated!
    Pieter

    Hey Levancho,
    thanks for your answer!! Much appreciated.
    However, the code you proposed threw an error...
    Errormessage:
    ReferenceError: Error #1069: Property outPutTxt not found on controls.Control and there is no default value.
        at controls::Control/btnClick()[C:\...\FlexTest_03\src\controls\Control.as:13]
        at FlexTest_03/__Btn_click()[C:\...\FlexTest_03\src\FlexTest_03.mxml:11]
    So I tried something else where I bind the text in my OutPutTxt to a variable inside of the external class file.
    Code:
    Class:
    package controls
        public class Control
            [Bindable]
            public var outPutText:String = "";
            public function Control()
            public function btnClick(inputText:String):void {
                this.outPutText =  inputText;
    Mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
        <mx:Script>
            <![CDATA[
                import controls.Control;
                [Bindable]
                private var control:Control = new Control();
            ]]>
        </mx:Script>
        <mx:TextInput x="10" y="10" id="inputTxt"/>
        <mx:Button x="178" y="10" label="Button" id="Btn" click="{control.btnClick(inputTxt.text)}"/>
        <mx:Text x="251" y="12" id="outPutTxt" text="{control.outPutText}"/>
    </mx:Application>
    And this basically did what I wanted to do... so I just need to do some major binding between my application and the classes I'll be using for my business logic.
    Now for something else entirely...
    Is there a way for me to pass the instance of my class between flex components?
    Pieter

  • Can't save modified file to a folder in an image disk directly

    I have an image disk on an external drive (firewire) and if I try to save a modified file of an existing file or do a "save as" to a folder, I'm always sent to the root directly of the finder and I have to navigate myself all the way back to the destination folder, every time. MS Word is even worse. I get a message that I have the wrong path and then it sends me back to the root directory. When I get back to the destination folder, MS Word accepts it but shows the message again, anyway. This doesn't happen if I save to the image disk directly and not go into a folder.

    HI Owen,
    Perhaps your Quicken preference files are corrupted, it's not bad, and an easy fix. Locate this file or one that is similar: com.quicken.plist It should be here; MacintoshHD/Users/Library/Preferences. Open the Preferences folder, locate that file, drag it to the Trash, empty the Trash and reboot. It's ok to trash a pref file, your Mac will create a new one for you.
    Also, here's the link to the Quicken forums; http://www.quickencommunity.com/
    Carolyn

  • Find Change through external text file

    Hello folks
    I am bit pretty in InDesign scripting so could you please look into this.
    How can i change any particular text field in Indesign CS3 document from text file.
    I do have find change script but for each InDesign document specific text file is assigned.
    So each time i have to modify find change GREP property that is also repetetive of work. Is there any way to get find change information should be extract from external text file.
    Many Tanks in advance

    In the FindChangeByList script, you could customize the function myFindFile(myFilePath) {...} as to search the FindChangeList text file in the document location rather than the script location. That's an example. The question is: given a document, where will you have the corresponding FindChangeList?
    @+
    Marc

  • FAQ: How do I load an external SWF file into a parent SWF file?

    A ton of Flash users visit Adobe’s we site every month wondering  about how to load an external SWF file from within another SWF.
    Adobe's own TechNote on the subject attempts to answer the basic question, along with some common follow-up questions, including:
    How do I load more than one SWF?
    How do I load a SWF into a specific location in the display list?
    How do I resize the loaded SWF?
    How do I set its X and Y location?
    Here are some additional resources that elaborate on loading content and on working with the display list:
    Sample files for the above TechNote. A set of 3 FLA and 3 corresponding SWF files, including a parent SWF and 2 SWFs that the parent loads.
    Help > AS3 Developer’s Guide > Loading an external SWF file
    Help > AS3 Developer’s Guide > Loading display content dynamically
    Loading multiple external SWFs within a main SWF – CreativeCow.net forums
    Video tutorial: ActionScript 101 – Episode 6: Adding named objects to the Stage. By Doug Winnie. An example of how to add the loaded external asset to the Stage and modify its location or other properties.
    Video tutorial: Preloading in ActionScript 3.0.  By Lee Brimelow. A slightly more complicated example, showing how to  make the parent SWF display information about the progress of loading  the external SWF.
    Tutorial: Loading and unloading SWFs - FlashAndMath.com
    This article provides several examples of how to communicate between a parent SWF file and the loaded SWF:
    SWF to SWF Communcation via ActionScript 3.0 (by kglad)

    quote:
    Originally posted by:
    NedWebs
    You now seem to want to get rid of the swf once it has loaded
    and played itself thru. To do that you would need to have something
    in the swf itself that triggers its removal in its last frame. The
    following might work...
    MovieClip(this.parent).removeChild(this);
    Unfortunately I couldn't get this to work. I placed it on the
    last frame of the SWF to be called - is that right?
    I am not sure I am doing it correctly...

  • Using Flashvars to load external mp3 files

    I am trying to find a very good step by step tutorial on using "Flashvars" to load external mp3 files, I have been searching on google and the many I have found fall short in some way or another. From what I have been able to gather, I have tried using the code in red (commented out), which works, and modify it to use "Flashvars". The code that works, the mp3 file is hard coded, but my goal is to use "Flashvars" which I am attempting to do in the code following the code in red. I am also including the html code. Any help will be greatly appreciated.
    Thanks,
    David
    var soundReq:URLRequest = new URLRequest("mardi_gras2.mp3");
    var sound:Sound = new Sound();
    sound.load(soundReq);
    sound.addEventListener(Event.COMPLETE, onComplete);
    function onComplete(event:Event):void
        sound.play();
    var soundReq:URLRequest = new URLRequest(root.loaderInfo.parameters.audio);
    var sound:Sound = new Sound();
    sound.load(soundReq);
    sound.addEventListener(Event.COMPLETE, onComplete);
    function onComplete(event:Event):void
        sound.play();
    HTML CODE
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="550" height="400" id="mySoundvars" align="middle">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name="movie" value="mySoundvars.swf" />
       <param name="FlashVars" value="audio=mardi_gras2.mp3" />
        <param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />    <embed src="mySoundvars.swf" quality="high" bgcolor="#ffffff" width="550" height="400" name="mySoundvars" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" FlashVars="audio=mardi_gras2.mp3" />

    Ok waterlovinguy,
    I went back to my original code, and I got things to work... I think my whole issue was with the HTML CODE. So I decided to use the "SWFObject generator". I had never used it before, frankly I had never heard of it until I started my searches on "Flashvars".
    Thank you very much for all your assistance, PEACE,
    David
    Final Codes below
    var my_var:String = new String();
    my_var = root.loaderInfo.parameters.myflashvar;
    myText.text = my_var;
    var soundReq:URLRequest = new URLRequest(root.loaderInfo.parameters.audio);
    var sound:Sound = new Sound();
    var soundControl:SoundChannel = new SoundChannel;
    sound.load(soundReq);
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    stop_btn.addEventListener(MouseEvent.CLICK, stopSound);
    function playSound(event:MouseEvent):void
        SoundMixer.stopAll();
        soundControl = sound.play();
    function stopSound(event:MouseEvent):void
        soundControl.stop();
    HTML Code
                    <!>>
                    <!<![endif]>
                        http://www.adobe.com/go/getflashplayer
                        </a>
                    <!>>
                    </object>
                    <!<![endif]>
                </object

  • Relinking to modified file names is working in CS3 and not in CS2

    We are trying to remove a few characters identified as illegal(cannot be used in the file names in Windows) from the file names and then modify the InDesign layout files to relink to the modified file names. We are using the InDesign CS3 server to open up the application and work on the layout files using Java and CORBA mode(used CS3 SDK). First we remove the illegal characters from the file names. Next we will go through all the links in a layout file and will identify the links with illegal characters and relink it to the modified files. The relinking will happen to only those files which has a state NORMAL before the file names are modified. This approach works fine for the CS3 files but for CS2 after the file names got modified the link rolls back to the file path on the original m/c where the link was created and the relinking is not working.
    Have anyone did something similar to that, if so can you provide with some details on how to address this issue.
    Do let me know if you need any more specific information for providing your inputs to address this issue. Any inputs will be highly appreciated.
    Thanks

    Thanks. I got it resolved by saving the document by passing in a OptArg.makeFile() instead of OptArg.noFile(). I modified this based on what I read from Adobe Livedocs which said that any CS2 file opened in CS3 will be converted to CS3 and will be considered as a new document.

  • Testing SWF with external XML file, strange problem.

    Hi!
    My problem started after migration to 2.01. But I think it's
    not version problem.
    I have old project which uses external XML files ("
    http://www.mydomain.com/myxml.xml").
    When I teste project in "bin" folder it works perfect and SWF
    import data from XML.
    I created new Flex project and copied all scripts from old
    one. And my new app can't read external XML!!! (tested in "bin"
    folder):
    *** Security Sandbox Violation ***
    Connection to xmlURL halted - not permitted from
    file:///C:/myproject/bin/myproject-debug.swf
    BUT when I copy my new SWF to the old project "bin" folder
    then it WORKS! Strange!
    I found in Help "The Global Flash Player Trust directory" and
    I checked files: "flexbuilder.cfg", "flexbuilder.fbr" there are all
    my project paths (old and new).
    Thanks for help!
    newman

    You should your homework with Google and other search engines
    better ;)
    http://www.robrusher.com/1/2006/08/Flex-2-Error-with-XML.cfm

  • WebLogic Server 10.3.4 external config files

    Hey,
    i have a question. I have external configuration files, and i dont know where to place, or better how to add the path where the configurations files located to WebLogic Servers classpath ?
    I worked with JBOSS and there i added some lines in the start script. In glassfish there i can make it via administration gui.
    The files are *.cfg files and the error output is this:
    PATH_INSTANCIA:
    log4j:ERROR Could not read configuration file [nullCONFIG.cfg].
    java.io.FileNotFoundException: nullCONFIG.cfg (No such file or directory)
    Thanks in advance :)

    Hi Jack,
    You will have to add the folder where the config file is present to the WLS classpath. Modify the CLASSPATH in setDomainEnv.cmd/setDomainEnv.sh (Take a backup of these files - just in case :) ) to include the config file folder path.
    And restart the server and WLS should be able to pick the file.
    In your code you can have the line as follows
    Thread.currentThread().getContextClassLoader().getResource("filename")As you have already added the folder to the classpath, it will be able to get the reference to the file.
    Thanks,
    Patrick

  • Reading an external property file for adapter configurations (How-To)

    One thing that has bugged me is having to change an Adapter's property settings in the context file and then build and re-deploy the bundle to effect those changes. This really becomes a problem when you want to test a bundle in different server environments (Development, QA, Staging) and then finally deploy that same bundle to Production. Here at EnerNOC, all those environments have different message servers and database schema names, making it a real challenge to insure you're building the same bundle each time for the different environments.
    I played with a number of different ideas, but I wanted the solution to be Spring based. I finally settled on a rather simple solution to use external property files with the <util:properties/> tag of Spring, and then injecting the bean created from this into the adapters requiring different configurations.
    First, in the context file, I needed to add a new Spring namespace - http://www.springframework.org/schema/util:
    +<beans xmlns="http://www.springframework.org/schema/beans"+
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"*
    xmlns:osgi="http://www.springframework.org/schema/osgi"*
    xmlns:wlevs="http://www.bea.com/ns/wlevs/spring"*
    xmlns:util="http://www.springframework.org/schema/util"*
    xsi:schemaLocation="*
    http://www.springframework.org/schema/beans*
    http://www.springframework.org/schema/beans/spring-beans.xsd*
    http://www.springframework.org/schema/osgi*
    http://www.springframework.org/schema/osgi/spring-osgi.xsd*
    http://www.springframework.org/schema/util*
    http://www.springframework.org/schema/util/spring-util-2.5.xsd*
    http://www.bea.com/ns/wlevs/spring*
    http://www.bea.com/ns/wlevs/spring/spring-wlevs-v11_1_1_3.xsd">*
    Next, I defined a bean for my property file:
    +*<util:properties id="serverProperties" location="file:./applications/MyApplication/server.properties"/>*+
    And then finally, I modified my adapter to inject a Properties object and use that to define the other properties in the Adapter:
    +*<wlevs:adapter id="MyMessageAdapter" class="com.enernoc.cep.message.adapter.MyMessageAdapter" >*+
    +*<wlevs:instance-property name="properties" ref="serverProperties"/>*+
    +*<wlevs:listener ref="HAInputAdapter"/>*+         
    +*</wlevs:adapter>*+
    With this change, I can now build and deploy a bundle once to whatever servers I choose, and modify the server.properties file in each environment to make the necessary changes for message servers and databases. In a multi-server enviroment this becomes really handy as our deploy script needs to only create and push server.properties files and not new bundles.
    As a nice-to-have feature someday, it would be great if Oracle could enable their <wlevs:/> namespace to recognize the Spring PropertyPlaceholderConfigurer feature, so that we could use placeholder variables for property values of <wlevs:/> specific tags.
    Edited by: Jim Leary on Feb 28, 2011 4:11 PM
    Edited by: Jim Leary on Feb 28, 2011 4:14 PM
    Edited by: Jim Leary on Feb 28, 2011 4:15 PM
    Edited by: Jim Leary on Feb 28, 2011 4:16 PM
    Edited by: Jim Leary on Feb 28, 2011 4:17 PM
    Edited by: Jim Leary on Feb 28, 2011 4:18 PM
    Edited by: Jim Leary on Feb 28, 2011 4:19 PM

    Jim,
    You can use com.bea.wlevs.spring.support.ConfigurationPropertyPlaceholderConfigurer, which is based on org.springframework.beans.factory.config.PropertyPlaceholderConfigurer. For example,
    <bean class="com.bea.wlevs.spring.support.ConfigurationPropertyPlaceholderConfigurer">
    <property name="location" value="file:config/test.properties"/>
    </bean>
    <wlevs:adapter id="myAdapter" class="oracle.cep.sample.MyTestAdapter" >
    <wlevs:instance-property name="serverAddress" value="${serverAddress}"/>
    </wlevs:adapter>
    Manju.

  • Populating Tree with External XML File

    I want to use external files for populating Flex 3
    components. I have been successful using code very similar to that
    below for a data grid & for a combo box, but it won't work for
    a tree. Can you determine wh?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:HTTPService id="dp_Tree1" url="Tree1.xml" />
    <mx:Tree dataProvider="{dp_Tree1.lastResult.root.node}"
    creationComplete="dp_Tree1.send()" width="333"/>
    </mx:WindowedApplication>
    It's not working & I can't determine why. Attached is my
    xml file that I tested it with.

    Thanks a bunch folks, but my intent is to have as little code
    as possible. I want to help people who are not coders create
    designs using external xml files to populate controls. I was able
    to create very simple code with just two lines to populate a
    DataGrid from an external xml file:
    <mx:HTTPService id="dp_DataGrid1" url="DataGrid1.xml"
    />
    <mx:DataGrid
    dataProvider="{dp_DataGrid1.lastResult.component.rows}"
    creationComplete="dp_DataGrid1.send()" />
    And just two lines for a ComboBox:
    <mx:HTTPService id="dp_ComboBox1" url="ComboBox1.xml"
    />
    <mx:ComboBox
    dataProvider="{dp_ComboBox1.lastResult.component.rows}"
    creationComplete="dp_ComboBox1.send()" />
    Isn't it possible to populate a tree with two lines like as
    it is with a DataGrid & ComboBox?

  • IPhoto creates modified file

    I'm a lightroom user for the editing part of my photos.
    Now I've created smaller versions of my pictures and set them up in a special folder so I can have an easy way to transport them over to my mobile devices.
    My issue is that sometimes when I import photos (to iphoto), it creates a modified file which is quite a bit larger then what I want in iphoto. It's about 400% larger then the photo that I have imported to iPhoto. I have not asked the program to modify anything or create any kind of copies of my pictures. I have even made sure that iphoto doesn't copy the pictures I import. I don't want more copies. I have them in my "ipod-ipad" file and that is all I need.
    It's all very strange cause it no rime or reason to when it doesn't it. There is a few picture here and there that end up changed and with a modified file that is stored on my hard drive (all my originals are on an external hard drive).
    The only reason I discovered this is cause one pictures was cut to only show 2/3 of the actual picture.
    Does anyone know why iPhoto does this and is there a way I can stop it?
    Thank you
    Sophie

    By larger I mean file size. Say the original (I use that word loosely since it's not my original but it's the only original iPhoto knows exists) is 250kb the modifies file might be 950kb.
    It looks like the portrait photos all have a modified file but it's not exclusively the portrait pictures that have that. Some of the landscape photos have them as well. When I say revert back to original the color of the photo changes slightly. It's like iphoto has done modifications in the color as well (I have done that in Lightroom and since it is a published service maybe iphoto can sense that it has been changed).
    There is no flags anywhere so not sure what you mean by that.
    When I say the picture has been cut to 2/3 I mean that the left 1/3 of the picture has been cut out. Very strange. When I press revert to original, it goes back to what it should be.
    None of the pictures I've been looking at for this (haven't gone thru all of them) is ordinary jpeg (not RAW) taken with my iPhone.
    Thanks for you help
    Sophie

Maybe you are looking for

  • Report for Partial Invoice and pendinf Invoices

    Hi all, We need a report for Partial Invoices /Pending Invoices done w.r.t. Purchase Orders with PO document type as one of the selection option. We have tried ME80FN, please suggest if there is any other report available. thanks, Prashant Rathore

  • How to configure single web server instance to multiple application servers..

    Hi all, we are running single instance of IWS6.0 SP2 on solaris, we want to comfigure this single instance to multiple application servers(JRun). Can any one advise me whether it is possible to do. Thanks Raj

  • Requiring Password from sleep or Screen Saver

    I recently got a MacMini running OS 10.6 Before this, all my systems were running 10.5 In my old systems, I set it so once the system went to sleep, or went to the screen saver, you would have to enter the password to wake up (or stop the screen save

  • Extract graphics in separated fm files

    Hello, I am a beginner in ExtendScript and I need to outsource the graphics of my docs. I wish to create a file .fm for each graph found in the doc to be able to generate the images apart and not have to rebuild for each change of doc. I advance slow

  • How do you smooth skin texture?

    I can easily smooth skin texture in iPhoto by using the noise reduction slider. Use of this in Aperture seems to have no effect on the skin texture. I am using a trial version of Aperture 2.1 to see how it compares with Photoshop Elements 6. In PE I