My Animation stops for 1-2 frames when sound is used.

Hello, I'm making an animation on Macromedia Flash Professional 8.
I have 3 layers, Sound, BackGround, and Main.
When I play the animation, and it reaches the sound that is supposed to play, the animation
first freezes, then the sound plays and it happens again when it reaches the next sound, tho nothing gets out of sync.
Is there a way for me to send you guys the animation so you can find the problem?

You may want to ask in the Flash Pro forum.
This is likely caused by something in your Actionscript.

Similar Messages

  • Urgent: Gif animation shows only the last frame when reloaded

    I use ImageIcon to show gif animations on screen. I want to use only non-looping gif animation files.
    Always when I show a gif animation for the first time it runs correctly through all the frames.
    However when reloading later the same gif animation only the last frame appears. I want to see all the frames of the animation, not only the last frame.
    So for the first showing of the animation this works well:
         icon = new ImageIcon("first_animation.gif");
           label = new JLabel();
           label.setIcon(icon);Then I show another animation and also it works well:
           icon2 = new ImageIcon("second_animation.gif");
           label.setIcon(icon2);Now I would like to show the first animation again but only the last frame of that first animation appears on screen:
    label.setIcon(icon);And even this alternative way to refresh does not work:
           icon = new ImageIcon("first_animation.gif");
           label.setIcon(icon);
    How can I reload the first animation again so that it shows all the frames not only the last frame???
    I have tried for ex. commands updateUI(); and setImageObserver but they don't seem to help.
    I am only a novice so...
    Please I would really appreciate your detailed advice what lines I should rewrite in my code and how?
    Thank you very much!!

    By flagging your question "urgent", you are implying that either your question is more important than other people's questions, or your time is more valuable than mine (or someone else's answering questions here). Both are not true.

  • Is there a way to keep an animation playing for a mouseout event when you start a new one?

    I have some buttons that on mouseover they animate scaling up and on mouseout they scale back down. This is working great except the scenario when a user mouse's over one button then immediately mouse's out to the next button the animation on the first button abruptly stops and the animation starts on the current button. Is there a way to keep the animation playing for the first button AND have the animation play work for the second button?
    I have uploaded a quick demo to illustrate what I mean. Also I've uploaded the project file if anyone can find a solution. Thanks!
    Dropbox - edgeAnimateButtonSample.zip

    You need to create two symbols for these two buttons, so that both can play simultaneously.
    I have created a sample for you @ https://www.dropbox.com/s/e59agt7mr8r785l/newedgeAnimateButtonSample.rar?dl=0
    hth,
    Vivekuma

  • Want to stop for opening multiple frames ????

    Dear i am working on an application .
    in that there is a frame ok in that frame there is a button.
    so when u click on that button a new frame will open ok now the problem is that.
    suppose u click 5 times on that button so that button will open 5 same type of frames.
    so i dont want to open more then 1 frame so pl help me .i cant find out how to stop to open more then 1 frame.
    here is a code of 1st frame . which have a button ok
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.border.*;
    public class bookdata implements ActionListener
         JFrame frame;
         JLabel label;
         JPanel panel , panel2 , panel3;
         JButton but1,but2,but3,but4,but5,but6;
         Color cc;
         BoxLayout bak;
         ImageIcon icon;
         FlowLayout flo;
         public bookdata()
              icon = new ImageIcon("book/book.jpg");
              frame = new JFrame("Book Database");
              //frame.setResizable(false);
              frame.setIconImage(new ImageIcon("book/logo.gif").getImage());
              Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
              int x = (d.width - 550)/2;
              int y = (d.height - 500)/2;
              frame.setBounds(x,y,400,300);
         public void main1()
              JLabel label = new JLabel(icon);
              flo = new FlowLayout();
              panel3 = new JPanel();
              but1 = new JButton("NEW BOOK");
              but2 = new JButton("EDIT");
              but3 = new JButton("DELET");
              but4 = new JButton("SHOW");
              but5 = new JButton("LONE");
              but6 = new JButton();
              but1.addActionListener(this);
              panel = new JPanel();
              bak = new BoxLayout(panel,BoxLayout.Y_AXIS);
              panel.setLayout(bak);
              // 1st 220 is for R
              // 2nd 177 is for G
              // 3rd 162 is for B
              // 4th 255 is for Alpha
              cc = new Color(51,51,255);
              panel2 = new JPanel();
              panel2.setLayout(flo);
              panel2.setBackground(cc);
              panel2.add(label);
              JSeparator hh = new JSeparator(SwingConstants.VERTICAL);
              SpringLayout layout = new SpringLayout();
              panel3.setLayout(layout);
              panel3.add(but1);          // pp1
              panel3.add(but2);          // pp2
              panel3.add(but3);          // pp3
              panel3.add(but4);          // pp4
              panel3.add(but5);          // pp5
              //ActionListenet Calling
              layout.putConstraint(SpringLayout.WEST,  but1, 15,SpringLayout.WEST,  panel3);          // pp1
             layout.putConstraint(SpringLayout.NORTH, but1, 25,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  but2, 15,SpringLayout.WEST,  panel3);          // pp2
             layout.putConstraint(SpringLayout.NORTH, but2, 55,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  but3, 15,SpringLayout.WEST,  panel3);          // pp3
             layout.putConstraint(SpringLayout.NORTH, but3, 85,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  but4, 15,SpringLayout.WEST,  panel3);          // pp4
             layout.putConstraint(SpringLayout.NORTH, but4, 115,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  but5, 15,SpringLayout.WEST,  panel3);          // pp5
             layout.putConstraint(SpringLayout.NORTH, but5, 145,SpringLayout.NORTH, panel3);
              layout.putConstraint(SpringLayout.WEST,  label, 60,SpringLayout.WEST,  panel3);
             layout.putConstraint(SpringLayout.NORTH, label, 100,SpringLayout.NORTH, panel3);
              frame.getContentPane().add(panel);
              panel.add(panel2);
              panel.add(panel3);
              frame.setSize(600,500);
              frame.setVisible(true);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public void actionPerformed(ActionEvent e)
              Object obj = e.getSource();
              if(obj == but1)
                   newbook nebook = new newbook();
    }

    Dear i am working on an application .
    in that there is a frame ok in that frame there is a
    button.
    so when u click on that button a new frame will open
    ok now the problem is that.
    suppose u click 5 times on that button so that button
    will open 5 same type of frames.
    DO U WANT TO COME AGAIN ON THE PARENT FRAME.IF NOT THAN
    parentFrame.setVisible(false);
    if yes then ................
    so i dont want to open more then 1 frame so pl help
    p me .i cant find out how to stop to open more then 1
    frame.
    here is a code of 1st frame . which have a button
    ok
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.border.*;
    public class bookdata implements ActionListener
         JFrame frame;
         JLabel label;
         JPanel panel , panel2 , panel3;
         JButton but1,but2,but3,but4,but5,but6;
         Color cc;
         BoxLayout bak;
         ImageIcon icon;
         FlowLayout flo;
         public bookdata()
              icon = new ImageIcon("book/book.jpg");
              frame = new JFrame("Book Database");
              //frame.setResizable(false);
    frame.setIconImage(new
    ew ImageIcon("book/logo.gif").getImage());
    Dimension d =
    = Toolkit.getDefaultToolkit().getScreenSize();
              int x = (d.width - 550)/2;
              int y = (d.height - 500)/2;
              frame.setBounds(x,y,400,300);
         public void main1()
              JLabel label = new JLabel(icon);
              flo = new FlowLayout();
              panel3 = new JPanel();
              but1 = new JButton("NEW BOOK");
              but2 = new JButton("EDIT");
              but3 = new JButton("DELET");
              but4 = new JButton("SHOW");
              but5 = new JButton("LONE");
              but6 = new JButton();
              but1.addActionListener(this);
              panel = new JPanel();
              bak = new BoxLayout(panel,BoxLayout.Y_AXIS);
              panel.setLayout(bak);
              // 1st 220 is for R
              // 2nd 177 is for G
              // 3rd 162 is for B
              // 4th 255 is for Alpha
              cc = new Color(51,51,255);
              panel2 = new JPanel();
              panel2.setLayout(flo);
              panel2.setBackground(cc);
              panel2.add(label);
    JSeparator hh = new
    ew JSeparator(SwingConstants.VERTICAL);
              SpringLayout layout = new SpringLayout();
              panel3.setLayout(layout);
              panel3.add(but1);          // pp1
              panel3.add(but2);          // pp2
              panel3.add(but3);          // pp3
              panel3.add(but4);          // pp4
              panel3.add(but5);          // pp5
              //ActionListenet Calling
    layout.putConstraint(SpringLayout.WEST,  but1,
    1, 15,SpringLayout.WEST,  panel3);          // pp1
    layout.putConstraint(SpringLayout.NORTH, but1,
    but1, 25,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  but2,
    2, 15,SpringLayout.WEST,  panel3);          // pp2
    layout.putConstraint(SpringLayout.NORTH, but2,
    but2, 55,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  but3,
    3, 15,SpringLayout.WEST,  panel3);          // pp3
    layout.putConstraint(SpringLayout.NORTH, but3,
    but3, 85,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  but4,
    4, 15,SpringLayout.WEST,  panel3);          // pp4
    layout.putConstraint(SpringLayout.NORTH, but4,
    but4, 115,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  but5,
    5, 15,SpringLayout.WEST,  panel3);          // pp5
    layout.putConstraint(SpringLayout.NORTH, but5,
    but5, 145,SpringLayout.NORTH, panel3);
    layout.putConstraint(SpringLayout.WEST,  label,
    l, 60,SpringLayout.WEST,  panel3);
    layout.putConstraint(SpringLayout.NORTH, label,
    abel, 100,SpringLayout.NORTH, panel3);
              frame.getContentPane().add(panel);
              panel.add(panel2);
              panel.add(panel3);
              frame.setSize(600,500);
              frame.setVisible(true);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)
         public void actionPerformed(ActionEvent e)
              Object obj = e.getSource();
              if(obj == but1)
                   newbook nebook = new newbook();

  • How to fix for maximizing minimizing frames when screen resolution changes

    Hi, all
    I guess this must be an old question, but please help me.
    Thanks

    To occupy maximum space for JFrame
    Toolkit toolkit = Toolkit.getDefaultToolkit();
    frame.setSize(toolkit.getScreenSize().width, toolkit.getScreenSize().height);(or)
    frame.setExtendedState(JFrame.MAXIMIZED_BOTH);

  • Increasing the speed for a certian frames in Flash Cs5 using Action Script 3

    I have 60 frames I want to increase the fps value for frames from 20 to 30, and the remaining frames fps value should remain the same
    Using Action Script 3 or Action Script 2
    Thank you and regards

    I have found a script online
    Q: How can I speed the frame rate or slow it down when the movie is playing? For example, I would like to slow the frame rate from the default of 20 fps to 15 fps from frame #80 to frame #150. Then frame rate should speed back up to 20 fps after frame #151, (fps = frames per second).
    A: One way is to use “interval”. An example of changing the speed of the movie from frame #80 to frame #150 is shown below.
    Create a key frame at frame #80 and place this script:
    var fps:Number = 80;
    var intervalID:Number = setInterval(this, “advanceFrame”, 1000/fps);
    stop();
    function advanceFrame() {
    clearInterval(intervalID);
    gotoAndStop(_currentframe+1);
    if (_currentframe<151) {
    intervalID = setInterval(this, “advanceFrame”, 1000/fps);
    } else {
    play();
    I have changed the values from 80 to 20 and currentframe value to 30
    I get syntax error
    at :
    intervalID = setInterval(this, “advanceFrame”, 1000/fps);
    and
    var intervalID:Number = setInterval(this, “advanceFrame”, 1000/fps);
    In flash cs5

  • Is Low MTU (ie 320) for VoIP over Frame-relay can be used to avoid serialization delay for large data packets?

    In order to provide voice quality for VoIP, is FR fragmentation equivalent to lowering the MTU size for the serial subinterface of a Frame relay subinterface?
    Is there any isues like stop communications, using Low MTU ?

    If the router belongs to any of the
    platform listed below, then use
    FRF12 for you fragmentation. The MTU size
    lowering also works but this can cause a high over
    head as it can't be specified on a per dlci level.
    With multiple dlci i.e. subinterfaces use per dlci fragmentation.. this helps reduce the overhead of changing the MTU size of the physical interface.
    Snip config example.( __Must be configured on both side of the termination___)
    PHONE 3333312---ROUTERA ----DLCI 100----ROUTERB ---PHONE 2111123
    ROUTER A
    dial-peer voice 1 voip
    destination-pettern 2T
    session target ipv4:10.10.10.2
    int ser 0/0
    encap frame-relay
    frame-relay traffic-shaping
    no ip address
    interface serial0/0.1 point-to-point
    ip add 10.10.10.1 255.255.255.252
    frame-relay interface-dlci 100
    class voice
    map-class frame-relay voice
    frame cir 64000
    frame bc 640
    frame mincir 64000
    frame-relay ip rtp priority 16384 16383 48
    frame fragment 80
    frame fair-queue 64 256 0
    ROUTER B
    dial-peer voice 3 voip
    destination-pettern 3T
    session target ipv4:10.10.10.1
    int ser 0/0
    encap frame-relay
    frame-relay traffic-shaping
    no ip address
    interface serial0/0.1 point-to-point
    ip add 10.10.10.2 255.255.255.252
    frame-relay interface-dlci 100
    class voice
    map-class frame-relay voice
    frame cir 64000
    frame bc 640
    frame mincir 64000
    frame-relay ip rtp priority 16384 16383 48
    frame fragment 80
    frame fair-queue 64 256 0
    This should help if your router is
    c2600, c3600, mc3810, c7200, c1750
    all running the right level of IOS.
    12.1(5)T and above should work well.

  • What Strategies are there for updating a table when you're using a multi-table view to display it.

    I'm using a view and am able to create a grid that allows editing of one of the columns. Let's call the table where the column is updated "DepartmentFeeDetail." The view has several joins but up till now the column was editable.
    Today I needed to join DepartmentFeeDetail with itself to pick up the debit side of a debit/credit pair. I want to show the gl account number for both
    the debit and credit on the same row. I also need to update the value for both debit and credit.
    I can no longer edit the column to no surprise. When updating using MSSQLMS I get the following error:
    View or function 'MyTestView' is not updatable because the modification affects multiple base tables.
    What should my strategy be in lightswitch? The grid is populated by a query that includes my lynq expressions in DepartmentFeeRateQuery_PreprocessQuery. The query may return 1000+ rows. I need to allow the accountant to edit either a single row's column
    or enter a value in a field outside the grid and click a button "Apply fee rate to entire page."
    All this was working fine until the requirement to show the debit side gl account number and to change the debit side value somehow.
    I've tried adding a property to DepartmentFeeDetail but the "Is Computed" property wouldn't allow me to uncheck it. Is there a way to add an editable property for each grid row and initialize it to the
    current value of the column returned by the view? I could then update a collection when one of the fields changes. If they change the global value and press "Apply fee rate to entire page"
    I can update the collection as well.
    Scott Mitchell

    What I do is instead of using a View I use a updatable
    WCF RIA Service.
    This is an example of an updateable method:
    public void UpdateQuestionDetailForUser(QuestionDetailForUser objQuestionDetailForUser)
    // Get the current user
    string strCurrentUserName = System.Web.HttpContext.Current.User.Identity.Name;
    // We are under Forms Authentication so if user is blank then we
    // are debugging and we are TestUser
    if (strCurrentUserName == "")
    strCurrentUserName = "TestUser";
    // Check for an existing Answer for this Question for this User
    var objSurveyAnswer = (from SurveyAnswers in this.Context.SurveyAnswers
    where SurveyAnswers.SurveyQuestion.Id == objQuestionDetailForUser.QuestionId
    where SurveyAnswers.UserName == strCurrentUserName
    select SurveyAnswers).FirstOrDefault();
    if (objSurveyAnswer != null)
    try // This is an update ****
    // Set values
    objSurveyAnswer.Choice = Convert.ToInt32(objQuestionDetailForUser.SelectedChoice);
    objSurveyAnswer.Comment = objQuestionDetailForUser.Comments;
    // Update LightSwitch Database
    this.Context.SaveChanges(
    System.Data.Objects.SaveOptions.DetectChangesBeforeSave);
    catch (Exception ex)
    throw new Exception("Error inserting QuestionId " + objQuestionDetailForUser.QuestionId, ex);
    else // This is an Insert ****
    // Query the GetAllQuestionsForUser method because it calculates if a Question
    // is Active or not for the QuestionId being inserted
    // If it is not in the collection, do not allow the insert
    var objUserQuestion = (from QuestionForUser in this.GetAllQuestionsForUser()
    where QuestionForUser.UserName == strCurrentUserName
    where QuestionForUser.QuestionId == objQuestionDetailForUser.QuestionId
    select QuestionForUser).FirstOrDefault();
    if (objUserQuestion != null)
    try
    // Get the Survey Question
    var objSurveyQuestion = (from SurveyQuestions in this.Context.SurveyQuestions
    where SurveyQuestions.Id == objQuestionDetailForUser.QuestionId
    select SurveyQuestions).FirstOrDefault();
    // Create a SurveyAnswer object
    SurveyAnswer objNewSurveyAnswer = this.Context.CreateObject<SurveyAnswer>();
    // Set values
    objNewSurveyAnswer.UserName = strCurrentUserName;
    objNewSurveyAnswer.Choice = Convert.ToInt32(objQuestionDetailForUser.SelectedChoice);
    objNewSurveyAnswer.Comment = objQuestionDetailForUser.Comments;
    objNewSurveyAnswer.SurveyQuestion = objSurveyQuestion;
    // Update LightSwitch Database
    this.Context.SurveyAnswers.AddObject(objNewSurveyAnswer);
    this.Context.SaveChanges(
    System.Data.Objects.SaveOptions.DetectChangesBeforeSave);
    catch (Exception ex)
    throw new Exception("Error inserting QuestionId " + objQuestionDetailForUser.QuestionId, ex);
    else
    throw new Exception("Error inserting Answer. Answer is not marked Active.");
    Unleash the Power - Get the LightSwitch 2013 HTML Client / SharePoint 2013 book
    http://LightSwitchHelpWebsite.com

  • Non repeating frame - when/how to use

    Hi,
    How do I use a non repeating frame on it's own.
    I have one query in which I have selected 3 fields.
    In the paper layout, I have placed 3 fields in a non repeating frame.
    When I run the report, I get a REP-1213 error - Filed 'xxx' at frequency below its group.
    When I place the 3 fields ina repeating frame, it works, because the repeating frame property inspector allows me to enter the group and the non repeating frame does not.
    So, my question is, when and how does one use a non repeating frame.
    I need to understand the principle behind it.
    Thank you
    i

    You mainly use regular frames to group objects together or prevent them from being overwritten. Check the help on About Frames.

  • My magic mouse stops working on windows 7 (when i'am using it)

    Hi,
    My magic mouse stops working, when iam using it, when i tested it on my macbook it works fine, i have a Trust bluehtooth 3.0 USB adapter.
    so it stops working after 15 till 20 seconds an after 10 seconds it works fine again. is this the bootcamp that i have installed or what
    Thank

    Error "...Installer Database is Corrupt..." when you install Adobe Creative Suite 4 or point product

  • TS1741 how can I use the remote app for my Apple TV when I am using the Apple TV away from home!?

    I'm traveling and using the Apple TV at the hotel but the remote app is not working cause I can't turn on home sharing from my p&amp;c, cause its not here

    Most hotels tend to require a login to the network via browser, which the ATV doesn't have. You won't be able to access the network for any functions if that's the case.
    You may want to contact someone at the hotel to clarify.

  • My entire iCloud mail system is messed up. I have worked on this for days. It works sometimes after I restart my computer and then just stops for no reason. In addition when the mail stops it refuses to let me reboot my iMac. Any ideas?

    I'm praying somebody here has an idea to help me. iCloud has suddenly gone nuts on my iMac. It works only when it wants to work and then stops for no reason. When it stops I am no longer able to click the mail icon and open any mail even the old stuff that was there. No changes were made to my computer. This all started out of the blue. When the mail stops working it will not close out to allow me to restart my computer. It won't even allow a forced quit. No changes were made to my machine. My iPhone still get mail but only after I click the mail icon. It does not pull mail in and show how many new emails I have like it did before. I have a me.com email if that helps. Any ideas would be truly appreciated.

    Stewart
    This forum is for questions regarding the LabVIEW Datalogging and Supervisory Control Module. You will have more luck posting this question in the general LabVIEW forum.
    Good luck

  • How do I optimize "Waiting for the next frame"

    When running my swf file in release build, the first time I start the browser after cleaning the browser cache, the .swf will appear in less than a second.  If I attach scout, I can see it is around .7 seconds to finish.
    However, after this run all subsequent times I load the page, it takes ~3 seconds.
    When I look at scout, I see almost identical CPU and memory use , but it is spending ~2.3 seconds "Waiting for the next frame".  (almost an extra 700ms per frame).
    There is no requirement for animation, all of the content is very static.   I'd just like to render it as fast as possible.
    I know it's not related to caching the .swf file because I have tried turning off the caching (by adding a random parameter) and verified using Httplogger that it is always downloading a new .swf file.  (I turned back on caching).  So I'm kind of not sure what to do next...
    What things can I try to optimize this?  Are there places I can read about this issue?
    (P.S.  >>  I notice it spends a lot more time "Waiting for the next frame" when I build a debug version.  Don't know if that's relevant...)
    Thanks!

    There's nothing you can do about "Waiting for next frame" - this is simply the time when Flash Player has finished doing everything it needs to do for the frame, and waiting for the OS to wake it up again. This depends on the framerate you set in your swf - roughly speaking, the waiting time is the budget (1/framerate), minus the time Flash Player spends doing actual work.
    You can find more information here, about understanding how the data you see in Scout relates to how Flash Player works:
    http://www.adobe.com/devnet/scout/articles/understanding-flashplayer-with-scout.html
    btw, you shouldn't look at performance in a debug swf - you'll get wildly misleading results.

  • Battery drain when not in use

    Occasionally, the battery in my 3rd generation iPad rins down to near nothing in a very short time, even though I am not using it.  The Ipad has not been turned off, but there are no apps open.  The WiFi is on, but cell data turned off.  Sometimes, when I have set it down for a few hours, I'll pick it up and it is particularly warm and the battery is near dead.  Other times, it seems to hold a charge for several days. When I am using it, the battery drain seems to be normal. Is there something under the hood, as it were, that I am missing? Is there something I have left running that isn't apparent?
    Thanks,

    Look in the notifications. there's a ton defaulted to on that you may not need.
    Also look to background app update and background app refresh. those also run in the background and can effect your battery.
    You may also want to shut down any programs/apps that are running that you may not need. Double tape the home button. You'll see the previews for all running apps on the screen. Flick the preview up and off the screen to close the app. Tap on the home screen preview or single tap the home button to exit the mode.

  • Key frames switch to SMOOTH when they started as linear for multi key frame video animation ?

    When i create a series of animated moves on a freeze frame or pic...the second key frame which begins a "hold" ...always changes to smooth from linear after I add a few additional key frames and moves..  I use the key frame button on top left of viewer to add the key frames...I have tried adding the key frames in the inspector but smae results..2nd key frame changes to smooth after I add 4 additonal key frames and moves.  why?

    thanks for the reply Steve. I will battle through with this project and show the end result, but you may celebrate a birthday or six before I finish.But I will finish. It is part of a project I am creating from a recent stay on the Abrolhos Islands off the coast of Geraldton Western Australia. It is isolated like few places in the world, pristine and protected. We have friends who are proffessional fisherman and are allowed to stay there on shacks during the limited fishing/rock lobster fishing season.I have some really great photos and video to make use of.

Maybe you are looking for

  • How can I share Quicken and other apps with another user on the same iMac?

    I would like to share some apps including Quicken with anoter user on the same iMac. I have put the Quicken app and the .QFX file in /usrs/share and changed the permissions to R/W on both files but when I log in as the other user and run Quicken it d

  • Workflow Question: Audio Documentaries

    Hello there, I am trying to figure out the most efficient workflow for 2 types of audio pieces that will end up in a podcast: 1) The first type is one long interview (an hr) that will be extensively edited (e.g., sentences and words rearranged; "ums"

  • Deleting Resources

    I'm trying to a delete a resource from Tidal Client Side and getting below message (Windows Master) Unable to delete record. It may be in use! (The DELETE statement conflicted with the REFERENCE constraint "FK__reslock__resmst___3C34F16F". The confli

  • Slow loading CS6

    Suddenly for no apparent reason CS6 is taking up to 10 minutes to load.  I have been using it for 2 years with no problems.

  • Optical digital to RCA converter.

    Hello, everyone. I have noticed the Apple TV comes with an optical digital audio port. I would like to connect the Apple TV to wireless headphones I have. They come with a trasmitting base that only has two types of connectors on the back. They are (