Add domain to allowedHTMLDomains.txt without restart

Hi,
I need to add a new domain to allowedHTMLDomain.txt and it should take effect without restart of FMS.
Is there a way to do it.
Is there a way FMS will rescan this txt file every few minutes to effect the additions or subtractions of domains.
I need a solution without restart as i dont have to cut the feed to other domains.
PS

Hi,
I am sorry for the delay.
I suggest you try to run this command below:
Icacls c:\folder name
/grant system:f /t
More information for you:
Icacls
http://technet.microsoft.com/en-us/library/cc753525.aspx
Best Regards,
Amy Wang
While this grants system to the current structure, the SYSTEM access is applied to "This Folder Only" and I need it to apply to "This Folder, Sub folders and Files"
Is there a command switch for this?

Similar Messages

  • I have Office 2012 for Mac.  I want to add Outlook without restarting a trial of Office 2012. How can I do it?

    I have Office 2012 for Mac.  I want to add Outlook without restarting a trial of Office 2012. How can I do it?

    To help with nomenclature: iOS is the operating system for iPads, iPhones and iPods.  OS-X is the operating system for Macs (versions are 10.xxx with the latest being Mountain Lion (10.8.5 is the current patch level)).
    Now, to answer your question:  MS Office for the Mac does not give you the ability to individually install, or remove, components like the Windows version.  It is an all or nothing proposition.  So, Outlook should already be there.  If not, you will need to reinstall the entire package.

  • Is that any way to ON- OFF Firfox's Add On without restart it ?

    We have multi user computer, so I wonder '''Is that any way to ON- OFF Firefox's Add On without restart it ?''' for more privacy.

    Currently add-ons require Firefox to be restarted in order to disable/re-enable add-ons.
    Starting with Firefox 4 it will be possible to create add-ons that do not need Firefox to be restarted, though add-ons will have to be specifically created to use that feature.

  • Issue with allowedHTMLdomains.txt in Live App

    Hi,
    My Purpose is to record live streams on server side and play recorded files later.
    What i have done is -
    1. Copied All files of applications/live in some safe location.
    2. Copied all files from samples/applications/live to applications/live folder. (Deleted main.far from live folder)
    3. Restricted SWF and HTML to mydomain in these files - allowedHTMLdomains.txt and allowedSWFdomains.txt
    4. In main.asc i added these line in the end
    var mystream;
    var intervalID;
    application.onConnect = function(clientobj)
      return true;
    application.onPublish = function(clientObj,streamObj){
    trace("In app pub:");
    mystream = Stream.get(streamObj.name);
    mystream.onStatus = function(info)
         trace("mystream onstatus:"+ info.code);
    mystream.record();
    trace("Got it via FMLE = " + streamObj.name);
    application.onUnpublish = function(clientObj,streamObj){
    mystream.record(false);
    5. Then i restarted FMS and tried streaming using FLash Media Encoder. I was able to live stream and then i stopped it.
    6. A FLV File was recorded in application/live folder with the stream name that i used in encoder.
    Now the issues i have, i am able to view live video on my domain as well as some other domain, that means allowedHTMLdomains.txt and allowedSWFdomains.txt did not worked. Another issue is that i am not able to view recorded video after i stopped encoder but i was able see live video before stopping. i am using jwplayer to view the video and using flashvars streamer(rtmp://xx.xx.xx.xxx/live) and file(abc) to view the live and recorded video.

    I am getting another issue now.
    i was able to record with this app when i changed fms.ini
    i added this line in fms.ini
    LIVE2_DIR = /opt/adobe/fms/applications/webroot/live_recorded
    also changed Application.xml in new app and changed this line <Streams>/;${LIVE2_DIR}</Streams>
    After this i was able to record files using my previously mentioned code. But i want to record live videos in same app in streams/intancename/ folder or streams/_definst_ folder 
    i also created streams/_definst_ folder in inside myapp folder with 777 permissions
    after this i changed fms.ini again and changed LIVE2_DIR = /opt/adobe/fms/applications/webroot/live_recorded to LIVE2_DIR = /opt/adobe/fms/applications/myapp
    But now there is no recording. Please help me what i am doing wrong.
    Again i am pasting my code of main.asc here with was a copy of samples/appplications/live folder-
    * application.onAppStart:
    *                    is called when application load. It contains Live (out of the box)
    * application specific initializations.
    application.onAppStart = function()
        // Logging
        trace("Starting Live Service...");
        //  Turning on the Authentication by default
        this.HTMLDomainsAuth =    true;
        this.SWFDomainsAuth =    true;
        // Populating the list of domains which are allowed to host HTML file
        // which in turn may embed a SWF that connects to this application
        this.allowedHTMLDomains = this.readValidDomains("allowedHTMLdomains.txt","HTMLDomains");
        // Populating the list of domains which are allowed to host a SWF file
        // which may connect to this application
        this.allowedSWFDomains = this.readValidDomains("allowedSWFdomains.txt","SWFDomains");
        // Logging
        if(this.HTMLDomainsAuth){
            trace("Authentication of HTML page URL domains is enabled");
        if(this.SWFDomainsAuth){
            trace("Authentication of SWF URL domains is enabled");
        trace("...loading completed.");
    *  application.validate:
    *                 function to validate a given URL by matching through a list of
    * allowed patterns.
    * Parameters:
    *     url:        contains the input url string.
    *     patterns:    Array; an array of permmited url patterns.
    * return value:
    *             true; when 'url domain" contains a listed domains as a suffix.
    *              false; otherwise.
    application.validate = function( url, patterns )
        // Convert to lower case
        url = url.toLowerCase();
        var domainStartPos = 0; // domain start position in the URL
        var domainEndPos = 0; // domain end position in the URL
        switch (url.indexOf( "://" ))
            case 4:
                if(url.indexOf( "http://" ) ==0)
                    domainStartPos = 7;
                break;
            case 5:
                if(url.indexOf( "https://" ) ==0)
                    domainStartPos = 8;
                break;
        if(domainStartPos == 0)
            // URL must be HTTP or HTTPS protocol based
            return false;
        domainEndPos = url.indexOf("/", domainStartPos);
        if(domainEndPos>0)
            colonPos = url.indexOf(":", domainStartPos);
            if( (colonPos>0) && (domainEndPos > colonPos))
                // probably URL contains a port number
                domainEndPos = colonPos; // truncate the port number in the URL
        for ( var i = 0; i < patterns.length; i++ )
            var pos = url.lastIndexOf( patterns[i]);
            if ( (pos > 0) && (pos  < domainEndPos) && (domainEndPos == (pos + patterns[i].length)) )
                return true;
        return false;
    *     application.onConnect:
    *                 Implementation of the onConnect interface function (optional).
    *  it is invoked whenever a client connection request connection. Live app uses this
    *  function to authenticate the domain of connection and authorizes only
    *  for a subscriber request.
    application.onConnect = function( p_client, p_autoSenseBW )
        // Check if pageUrl is from a domain we know.   
        // Check pageurl
        // A request from Flash Media Encoder is not checked for authentication
        if( (p_client.agent.indexOf("FME")==-1) && (p_client.agent.indexOf("FMLE")==-1))
            // Authenticating HTML file's domain for the request :
            // Don't call validate() when the request is from localhost
            // or HTML Domains Authentication is off.
            if ((p_client.ip != "127.0.0.1") && application.HTMLDomainsAuth
                    &&  !this.validate( p_client.pageUrl, this.allowedHTMLDomains ) )
                trace("Authentication failed for pageurl: " + p_client.pageUrl + ", rejecting connection from "+p_client.ip);
                return false;
            // Authenticating the SWF file's domain for the request :
            // Don't call validate() when the request is from localhost
            // or SWF Domains Authentication is off.
            if ((p_client.ip != "127.0.0.1") && application.SWFDomainsAuth
                    &&  !this.validate( p_client.referrer, this.allowedSWFDomains ) )
                trace("Authentication failed for referrer: " + p_client.referrer + ", rejecting connection from "+p_client.ip);
                return false;
                // Logging
            trace("Accepted a connection from IP:"+ p_client.ip
                            + ", referrer: "+ p_client.referrer
                            + ", pageurl: "+ p_client.pageUrl);
        }else{
            // Logging
            trace("Adobe Flash Media Encoder connected from "+p_client.ip);
        // As default, all clients are disabled to access raw audio and video and data bytes in a stream
        // through the use of BitmapData.draw() and SoundMixer.computeSpectrum()., Please refer
        // Stream Data Access doccumentations to know flash player version requirement to support this restriction
        // Access permissions can be allowed for all by uncommenting the following statements
        //p_client.audioSampleAccess = "/";
         //p_client.videoSampleAccess = "/";  
        this.acceptConnection(p_client);
        // A connection from Flash 8 & 9 FLV Playback component based client
        // requires the following code.
        if (p_autoSenseBW)
            p_client.checkBandwidth();
        else
            p_client.call("onBWDone");
        p_client.setBandwidthLimit(74000, 74000);
            application.acceptConnection(p_client);
    * Client.prototype.getPageUrl
    *                 Public API to return URL of the HTML page.               
    Client.prototype.getPageUrl = function() {
        return this.pageUrl;
    * Client.prototype.getReferrer
    *                 Public API to return Domain URL of the client SWF file.               
    Client.prototype.getReferrer = function() {
        return this.referrer;
    * FCPublish :
    * FME calls FCPublish with the name of the stream whenever a new stream
    * is published. This notification can be used by server-side action script
    * to maintain list of all streams or also to force FME to stop publishing.
    * To stop publishing, call "onFCPublish" with an info object with status
    * code set to "NetStream.Publish.BadName".
    Client.prototype.FCPublish = function( streamname )
        // setup your stream and check if you want to allow this stream to be published
        if ( true) // do some validation here
        {      // this is optional.
            this.call("onFCPublish", null, {code:"NetStream.Publish.Start", description:streamname});
        else
            this.call("onFCPublish", null, {code:"NetStream.Publish.BadName", description:streamname});
    * FCUnpublish :
    * FME notifies server script when a stream is unpublished.
    Client.prototype.FCUnpublish = function( streamname )
        // perform your clean  up
        this.call("onFCUnpublish", null, {code:"NetStream.Unpublish.Success", description:streamname});
    * releaseStream :
    * When FME connection to FMS drops during a publishing session it will
    * try and republish the stream when connection is restored. On certain
    * occasions FMS will reject the new stream because server is still
    * unaware of the connection drop, sometimes this can take a few minutes.
    * FME calls "releaseStream" method with the stream name and this can be
    * used to forcibly clear the stream.
    Client.prototype.releaseStream = function(streamname)
         s = Stream.get(streamname);
         s.play(false);
    * application.readValidDomains
    *             Function to read Allowed domain file
    * Parameters:
    *         fileName:
    *             name of the file in the application directory
    * which contains one valid domain name per line. This file can contain
    * comments followed by a '#' as the very first charector in that line.
    * a non-comment entry with a space is considered as an error case.
    * returns
    *         an array in which each entry contains a domain name
    * listed in the file.
    application.readValidDomains = function( fileName , domainsType )
        var domainFile = new File(fileName);
        var domainsArray = new Array();
        var index = 0;
        var lineCount = 0;
        var tempLine;
        domainFile.open("text", "read");
        // Read the file line-by-line and fill the domainsArray
        // with valid entries
        while (domainFile.isOpen && ! domainFile.eof() )
            tempLine = domainFile.readln();
            lineCount++;
            if( !tempLine  || tempLine.indexOf("#") == 0)
                continue;
            tempLine = tempLine.trim();
            if(tempLine.indexOf(" ")!=-1)
                trace("undesired <space>, domain entry ignored. "+fileName+":"+(lineCount+1));
            else
                domainsArray[index] =  tempLine.toLowerCase();
                index++;
                if(tempLine == "*")
                    switch (domainsType){
                        case "HTMLDomains":
                            trace ("Found wildcard (*) entry: disabling authentication for HTML file domains ")    ;
                            application.HTMLDomainsAuth =    false;       
                            break;
                        case "SWFDomains":
                            trace ("Found wildcard (*) entry: disabling authentication for SWF file domains ")    ;
                            this.SWFDomainsAuth =    false;       
                            break;
                        default:
                            // Do nothing
                            break;   
        } // End while
        // Something is wrong! the domains file must be accessible.
        if( !domainFile.isOpen){
            trace("Error: could not open '"+fileName+"', rejecting all clients except localhost. ");
        else
            domainFile.close();
        return domainsArray;
    * String.prototype.trim:
    *             Function to trim spaces in start an end of an input string.
    * returns:
    *         a trimmed string without any leading & ending spaces.
    String.prototype.trim = function () {
        return this.replace(/^\s*/, "").replace(/\s*$/, "");
    var mystream;
    application.onPublish = function(clientObj,streamObj){
    mystream = Stream.get("mp4:"+streamObj.name+".f4v");
        if (mystream)
                    mystream.record("record",600);
                    mystream.play(streamObj.name,-2,-1);
    application.onUnpublish = function(clientObj,streamObj){
    mystream.record(false);

  • Problem with Firefox 10.0.2, Flash Player 11.1.102.62 and allowedHTMLdomains.txt

    Hi all,
    I have a Flash Media Streaming Server 4.0 running for more than a year now.
    I protect the access to my server through the "allowedHTMLdomains.txt and allowedSWFdomains.txt feature"  (amongst other things...).
    We noticed that with Firefox 10.0.2 (last version) and Flash Player 11.1.102.62 (last version) our customers can't connect anymore.
    In the admin console we can read things like :
         Authentication failed for pageurl: http://my.domain.com, rejecting connection from XXX.XXXXXX.XXX
    If i try from the same computer with another browser, i get
      Accepted a connection from IP:XXX.XXX.XXX.XXX, referrer: http://my.domain.com/myPlayer.swf, pageurl: http://my.domain.com/myWebPage.php
    In the logs i have lines like that :
         --> connection error :
    connect
    session
    2012-03-01
    12:51:17
    CET
    XXX.XXX.XXX.XXX
    XXX.XXX.XXX.XXX
    6629
    2
    19
    _defaultRoot_
    _defaultVHost_
    vod
    _definst_
    0
    401
    XXX.XXX.XXX.XXX
    rtmpte(HTTP-1.1)
    2
    rtmpte://my.streamer.com/vod
    rtmpte://my.streamer.com/vod
    http://my.domain.com/myPlayer.swf
    WIN 11,1,102,62
    4702112566065840495
    3073
    3106
    normal
    http://my.domain.com/myWebPage.php
         --> connection successful:
    connect
    session
    2012-03-01
    14:31:20
    CET
    XXX.XXX.XXX.XXX
    XXX.XXX.XXX.XXX
    6629
    2
    19
    _defaultRoot_
    _defaultVHost_
    vod
    _definst_
    0
    200
    XXX.XXX.XXX.XXX
    rtmpte(HTTP-1.1)
    2
    rtmpte://my.streamer.com/vod
    rtmpte://my.streamer.com/vod
    http://my.domain.com/myPlayer.swf
    WIN 11,1,102,62
    4702113665527136624
    3073
    3073
    normal
    http://my.domain.com/myWebPage.php
    I can't find any significant difference...
    I didn't change anything in my configuration since the beginning, and the application was working without probleme with every version of Browser/FlashPlayer untill now.
    I suppose this is a bug, from Firefox or FlashPLayer or FlashMediaServer.
    Is there anyone from Adobe that could help me to solve this or "workaround" this, knowing that i must use the security features.
    Thank you very much for your help!
    Sam

    Ok for the timeline.
    For your workaround : it was already the case : i had only domains in my allowedDomains.
    I'll have to turn off this feature, and after the update of the flash player, hope that not too many people will stuck to the old flash player version...
    Thx for your help anyway!

  • Script GUI Add Domain

    Hi,
    I'm not very good programming, that's way I'm asking if anyone has a Script GUI in Powershell to Add a computer to a domain.
    I've downloaded "PowerShell Studio 2014" to try do this, but I don't have a backround in programming.
    My objective is to have a TextBox that capture the Serial Number of the computer (to be used as Computer Name).
    A Dropdown or ComboBox listing differents OU.
    A button to add domain
    A buton to rename.
    If possible on exit reboot the computer.
    Cláudio Gonçalves

    Hi Claudio,
    making sure I get this right:
    You wish to create a small form, that is used to rename a computer and join it to a domain, then restart the computer so the changes take effect. Maybe as part of a deployment scenario?
    Note:
    I'll skip the assigning OU part. If you have trouble with basic Forms this is not the place to mess with that.
    Step 1: Designing what is really needed
    Considering what your user has to be able to do, there is only one information he really has to provide (unless there are multiple domains to choose from). This information can be passed by placing a Textbox element on your form.
    There is only one process without variation as you describe it, so we need a single button.
    Step 2: Connecting GUI with code
    When you select an element in the form designer, you'll see its properties on the right side. You can mostly ignore these for now, but there is one we need: In the category "Design" the property "name". Check out the name of the textbox you just placed,
    we'll be needing it right away (by default PSS2014 will name the first textbox "textbox1", however feel free to rename it if you feel like doing so).
    When you doubleclick on the button you placed, you menu will switch to code view, showing a code segement (a scriptblock) named "$button1_Click" (unless you changed the name of the button object in the designer). Everything you write down into that block
    will be executed when your user clicks on the button of the form.
    Step 3: Filling the logic
    Now all that's left is to fill in the logic you need. You have all the form objects available as variables that are named just like the form objects were named (see step 2). If you kept the default names, the variable
    $textbox1 contains your textbox. It has a property named "text", which just happens to be whatever is written in the textbox, thus you can get the user-input by reading this property ($textboy1.Text).
    Now all you need to do is add a logic that does what you want:
    Rename Computer
    Join Domain
    Reboot computer (Hint: Restart-Computer is a seriously cool command)
    Cheers,
    Fred
    Ps.: I know not whether a form is the most efficient way to solve this, me not knowing your precise circumstances, but learning forms basics can't ever really hurt :)
    There's no place like 127.0.0.1

  • Can not add Domain User to Local Admin Group Win8.1

    Hello, 
    I am trying to add a domain user to the local admin account on a Win8.1 Enterprise computer. When I click the check name button it asks me to enter network credentials even though I am signed in to the computer with a domain admin account. When I try to
    type in any of my domain admin accounts it says "The Username or Password is incorrect". Even though I used that same account to login with. I can successfully ping all 3 of my DCs from the computer and have tried putting my second DC as the primary
    DNS and my third DC as the primary DC and same problem. I have checked for Active Directory errors on the DC and everything says it is running fine on the DC in server manager. I have this problem on multiple computers. Some of the computers it will work on
    but 90% of them it won't allow me to add the local user to the local admin group. 
    DCs are running Win Server 2008 R2 Enterprise. 
    Any help would be greatly appreciated. 
    Thank You

    I would suggest you to use Restricted Group(via GPO) to add domain users/group to a local admins group 
    1)Create a new group in Active Driectory
    Create a new group in Active Driectory that you wish to add to every workstations local administrator group. DO NOT add any users to this group at this time.
    2.
    Create a new GPO
    Create a new group policy object and link it to the desired OU. Make sure that the GPO you are using covers the OU that the WORKSTATIONS you are wanting to give users local administrative rights over.
    3.
    Edit the newly created GPO
    Navigate within the newly created GPO to Computer Configuration -> Policies -> Windows Settings -> Security Settings --> Restricted Groups
    4.
    Add your new Active Directory group to the Restricted Group
    Right-click the Restricted Groups folder and select "Add Group" to add your new Active Directory group to the Restricted Group. In the Group field, type the name of the newly created Active Directory group and click "OK"
    5.
    Add the Restricted Group to the local administrator group
    In the Restricted Group Properties windows click "Add" under the section titled "This group is a member of:" Type "Administrators" (without the quotes and yes it is plural), in the Group Membership window and click "OK"
    6.
    Wait for GPO updates to apply to the workstations
    Once your users receive their updated group policy settings every workstation within the OU you specified will have your new Active Directory group as a member of the local administrators group. If you need to force the GPO update on a specific workstation,
    run "gpupdate /force" in a command window on that workstation.
    7.
    Add a user or group of users to the Active Directory Restricted Group
    When you are ready, or in a position where you need to provide local workstation admin rights you can simply add the users or group of users to the Active Directory group that you created for use with Restricted Groups within your Active Directory Management
    Console.

  • Force iMovie's media browser to refresh albums in iPhotos without restart of iMovie

    Is there a way, while in iMovie, to force the media browser to refresh without restarting iMovie?
    Often I will add an image to the album in iPhoto and command tab back to iMovie to use it. Yet, it is not there unless I close out of the app. Is there a way to refresh the media browser?

    iMovie can take a age to load once you have filled it up with a load of video hence why a refresh feature would be great.
    Im regularily importing music into itunes mid edit and having to shut down and restart iMovie which is frustrating as you loose where you are and can sometimes boil a kettle whilst waiting for it.
    I havent investigated a direct import into iMovie yet which might be easier.

  • Restaring Essbase OK without restarting other services

    I'm on Hyperion Planning S 9.3.1 and I need to stop and start my essbase service and wondered if that can be done without restarting all the other related services. I have the restart order list for when I restart the Workspace/Rpts/WA/Planning/HSS services but am wondering where Essbase fits in this list.

    Thanks for both replies! Things had gotten frozen up earlier today and I was hoping a quick essbase restart would have cleared it up. Before I got to that pretty much had to restart all my services to get things going again.
    Over the last couple months, when our network gets over utilized it seems to be freezing up our environment. Weird thing is we have five MSAD sources (about 500 users). We have users from TN to MI to AK using our central servers.
    When our network gets over utilized between two locations in MI (our HQ and a plant across the state) I go into HSS and pull properties for users and it nearly hangs or is real slow. Then this seems to ultimately effect my logging into EAS, the Excel Add-In and eventually the Workspace with an ID from either of those sites.
    I can click the 'test' in HSS for each of those MSAD configurations and get successful test's but it's slow. Our TN connectivity and performance doesn't seem to be bothered during these events either which is weird. But since I'm hosed with two sets of our user base I have to restart which effects everyone.
    I'm not sure where to dig into this further to identify the root cause of how this is happening or how HSS to Essbase. We've been on 9.3.1 for almost 2 years now and periodically have had to restart services but it's becoming more common and our IT had basically said our network is always going to be over utilized at time (which I understand) but I don't want to have to restart everything every time that happens. Any tips or areas/setting I might look at to make the environment more resistent to network instability?

  • Deployment without restarting the server

    If we change java files,why we need to restart the server,I am using JBoss-2.2.1_Tomcat-3.2.1.Can we deploy the java file without restarting the server?Thanks in Advance

    Yes we may
    All u need to do is change
    TOMCAT: %WEBSERVER_HOME%\conf\context.xml
    JBOSS: %WEBSERVER_HOME%\server\default\deploy\jbossweb-tomcat55.sar\context.xml
    file from
    TOMCAT:
    =======
    <!-- The contents of this file will be loaded for each web application -->
    <Context >
        <!-- Default set of monitored resources -->
        <WatchedResource>WEB-INF/web.xml</WatchedResource>
        <!-- Uncomment this to disable session persistence across Tomcat restarts -->
        <!--
        <Manager pathname="" />
        -->
    </Context>To
    <!-- The contents of this file will be loaded for each web application -->
    <Context reloadable="true" >
        <!-- Default set of monitored resources -->
        <WatchedResource>WEB-INF/web.xml</WatchedResource>
        <!-- Uncomment this to disable session persistence across Tomcat restarts -->
        <!--
        <Manager pathname="" />
        -->
    </Context>JBOSS :
    ======
    <!-- The contents of this file will be loaded for each web application -->
    <Context cookies="true" crossContext="true">
       <!-- Session persistence is disable by default. To enable for all web
       apps set the pathname to a non-empty value:
       <Manager pathname="SESSIONS.ser" />
       To enable session persistence for a single web app, add a
       WEB-INF/context.xml
       -->
       <Manager pathname="" />
       <!-- Install an InstanceListener to handle the establishment of the run-as
       role for servlet init/destroy events.
       -->
       <InstanceListener>org.jboss.web.tomcat.security.RunAsListener</InstanceListener>
    </Context>to
    <!-- The contents of this file will be loaded for each web application -->
    <Context reloadable="true"  cookies="true" crossContext="true">
      <!-- Session persistence is disable by default. To enable for all web
       apps set the pathname to a non-empty value:
       <Manager pathname="SESSIONS.ser" />
       To enable session persistence for a single web app, add a
       WEB-INF/context.xml
       -->
       <Manager pathname="" />
       <!-- Install an InstanceListener to handle the establishment of the run-as
       role for servlet init/destroy events.
       -->
       <InstanceListener>org.jboss.web.tomcat.security.RunAsListener</InstanceListener>
    </Context>

  • Can firefox change audio device preference without restarting?

    I use my PC as a home theatre as well as for day to day usage, and have multiple audio devices.
    For most usage, I route the sound through on-board audio (realtek) but for watching movies, I run it through the ATI HDMI output to the TV.
    Currently, in order to watch a movie, I have to shut down Firefox, change windows prefered audio device, then restart Firefox.
    Can I change the device preferences somehow within Firefox without restarting it?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • I have a band video that I want to edit. In iMove 09, I could clip to crop or add a transition or both without altering the audio. In iMovie 11, the audio lower or drops out when I clip for and use a transtion. Is there a setting to preven this?

    I have a band video that I want to edit. In iMove 09, I could clip to crop or add a transition or both without altering the audio. In iMovie 11, the audio lower or drops out when I clip for and use a transtion. Is there a setting to preven this?

    Thanks for that info! Even in my time answering questions on iMovie Discussion Group, I never had a good understanding of when and how Optimize Movie came into play. I always would import as Optimized and Large Size and figured that was good enough. But knowing you got much, much more flexibility doing it the way you describe gives me a much better understanding of the different routes you can take into the Event Library.

  • How to create backup file on itunes for ipod touch 4g game apps data? Is there a way to do it? I want to try an app on my friend's computer, but you can't add apps on another computer without having your own ipod's data being deleted. Thx for any help!

    How to create backup file on itunes for ipod touch 4g game apps data? Is there a way to do it? I want to try an app on my friend's computer, but you can't add apps on another computer without having your own ipod's data being deleted. Thx for any help!
    I want to know how to create a backup file (because I'm pretty new with itunes, and it's hard to use it for me still), how to store my app data/media/videos, etc. And how I can retrieve them back when I'm done with the app I tried on my friend's computer.
    If anyone can help, it'd be great! Thank you so much!

    Sure-glad to help you. You will not lose any data by changing synching to MacBook Pro from imac. You have set up Time Machine, right? that's how you'd do your backup, so I was told, and how I do my backup on my mac.  You should be able to set a password for it. Save it.  Your stuff should be saved there. So if you want to make your MacBook Pro your primary computer,  I suppose,  back up your stuff with Time machine, turn off Time machine on the iMac, turn it on on the new MacBook Pro, select the hard drive in your Time Capsule, enter your password, and do a backup from there. It might work, and it might take a while, but it should go. As for clogging the hard drive, I can't say. Depends how much stuff you have, and the hard drive's capacity.  As for moving syncing from your iMac to your macbook pro, should be the same. Your phone uses iTunes to sync and so that data should be in the cloud. You can move your iTunes Library to your new Macbook pro
    you should be able to sync your phone on your new MacBook Pro. Don't know if you can move the older backups yet-maybe try someone else, anyways,
    This handy article from Apple explains how
    How to move your iTunes library to a new computer - Apple Support''
    don't forget to de-authorize your iMac if you don't want to play purchased stuff there
    and re-authorize your new macBook Pro
    time machine is an application, and should be found in the Applications folder. it is built in to OS X, so there is nothing else to buy. double click on it, get it going, choose the Hard drive in your Time capsule/Airport as your backup Time Machine  and go for it.  You should see a circle with an arrow on the top right hand of your screen (the Desktop), next to the bluetooth icon, and just after the wifi and eject key (looks sorta like a clock face). This will do automatic backups  of your stuff.

  • Can't add a new audio track without any settings

    Can anyone tell me were faced with the same problem. Doing audio post production in Logic Pro X, the latest version, the project is big, At some stage the work I was faced with the fact that you can't add a new audio track without any settings, no matter what inserts I track with duplicate settings of one of the tracks and it begins to sound with this track. I don't add a new audio track with duplicate settings. I add a new one, and I still opens the track with some sort of settings. What is it? This is a glitch or I'm somewhere that we have not considered? Duplicates the configuration of one of the tracks collected in group 1, which I did for editing convenience. Duplicates and also automation and if the new track am I doing something then this machine is transferred to the existing track from this group.

    Everything works in full 'Logic Pro X' mode. It's just a glitch in my project. The problem while you decide this: I insert a new track and it reset and set the output.

  • Add Item to a delivery without reference to a sales order

    Hello everybody,
    I'm trying to add an item to an existing delivery via VL02n without reference to a sales order but every time the following error message appears: "You cannot add this item to the delivery".
    What settings do i need in order to that? (material type, delivery type, item category group,..etc..)
    Could anyone help me?
    Thank for your attention.
    Regards,
    A.

    Hi!
    Its not feasible to add a new line item without reference, becuase in one of the user exits such a code would have been written to prevent adding line item without refernec.
    This is done to ensure that a standard availabilty check, pricing and infostructure updates are done. Otherwise, after billing the report of Profitabilty will not come correct and will lead to more problems.
    So my suggestion would be not to add the line item withour referencing to the sales order.
    SAP provides the way of unreferincing through a seperate delivery type called LO. So if you want to create a delivery without refernce, you can use delivery type LO or some Z version of it.
    Hope this helps,
    Abhishek

Maybe you are looking for