From the RAM limit to the CORE limit...

I was thinking that Bidule (Plogue) is a good way to expand RAM Logic limit, but at the end it definetely shrinks to to be a way to add 2 or max 3 instruments to Logic possibilities (because of Rewire one core limit). If I use an Ivory and an Omnisphere plug I already get the Rewire core meter of Logic going near the top
(I have a 2x3 Intel Xeon Quad Core)
So, from the RAM limit to the CORE limit.....
And I think also that the hard criticised Spectrasonics Atmosphere and Trilogy plugins wrappers, now reveal very very useful for saving my Logic RAM expansion possibilities...
And about Logic 9..nothing mentioned on 64 bit support....

If file size is the biggest concern, once you've cleared out
all items
you don't need any longer, try:
1. Doing a Save As, then a Save As again. Often, for whatever
reason,
this finally gets rid of old, unused objects.
2. Create a new project and import the existing project's
slides. This
can have the same effect.
In my experience, the first is better for reducing file sizes
and the
second is better for getting rid of any playback anomalies.
Otherwise, a better approach for what you're doing, again in
my
experience, would be to cut up the audio outside of Captivate
into one
file per slide (using a tool like Audacity), import them all
into the
library, then add each individually. That's our standard
process and
we've yet to experience these huge, bloated CP files (knock,
knock).
Erik
luke@nesc wrote:
> I have been using Captivate to imbed an audio recording
of a presentation into
> the slides for said presentation. The audio is in the
form of one large mp3
> file. When adding the audio, I select the option to
distribute over many files,
> and line up all the slides to the correct part of the
audio. If i need to edit
> the slide times or audio (this happens frequently
because captivate seems to be
> rather buggy when splitting up the single audio track
into one for each slide)
> the resulting Captivate Project file rockets in file
size. ....
Erik Lord
http://www.capemedia.net
Adobe Community Expert - Authorware
http://www.adobe.com/communities/experts/
http://www.awaretips.net -
samples, tips, products, faqs, and links!
*Search the A'ware newsgroup archives*
http://groups.google.com/group/macromedia.authorware

Similar Messages

  • 13" late 2011 MacBook Pro has frozen after Yosemite installation. I can, however, boot from a clone of my MacBook Air that is on an external drive. Despite the fact that I can boot from the external, could it be the RAM that's the prob

    My daughter's 13" late 2011 MacBook Pro has frozen (null sign displays) after Yosemite installation. I can, however, boot from a clone of my MacBook Air that is on an external drive. I reinstalled Yosemite on the MBP HD, but it still hangs in mid install. Despite the fact that I can boot from the external, could it be the RAM that's the problem? I'd happily put 8 GB in if it seems probable that would solve the problem. I've tried all the suggested procedures that I've seen posted here. Disk Utility, and my older version of DiskWarrior indicate the HD is OK. I have DiskWarrior 5 on order.

    Boot the MBP with the OPTION key down.  If successful, you should see two HDD icons,  Select the recovery partition (on the right).
    From the 4 option menu select Disk Utility.
    Run Disk Utility>First Aid, Verify and Repair.
    If the disk cannot be repaired, it will have to be replaced.
    Ciao.

  • Is it possible to upgrade the graphics card on a mid 2012 MacBook Pro? And is it possible to upgrade the RAM without voiding the warranty?

    Hi I was wondering if it is possible to upgrade the graphics card on a MacBook Pro and the RAM without voiding the warranty? I have a gt 650m in my MacBook Pro, non retina, and to me, its not enough power for me, so i was looking around, and I found a retailer that would give me a nvidia gtx 660m for a decent price. Also, the ram needs to be at least 12gbs, to ensure that my computer would run fast.
    If you can help, please tell me,
    Thankyou.

    No, the video card cannot be exchanged - you have a pretty decent GPU there; not sure why you'd want to switch it out. You can upgrade the RAM to a maximum of 16GBs. Apple recommends upgrading in matching pairs, so I don't really think I'd try 4GB and 8GB stick.
    Both Crucial and OWC have memory available for the new Macs. Both are reputable dealers and know Macs well and I would only buy from these sources (and I would buy Crucial, were it me).
    Although your Mac didn't come with a users manual outlining the installation of the additional RAM, you can download the late 2011 model users guide as the models themselves are almost identical.
    Good luck - write back with any questions.
    Clinton

  • After closing large documents (drawings) the window closes but the process runs still in the background. I open the next document, the same procedure and after dowing this several times the RAM is full the system becoms very slow. what can i do???

    after closing large documents (drawings) the window closes but the process runs still in the background. I open the next document, the same procedure and after dowing this several times the RAM is full the system becoms very slow. what can i do???

    You can always shut it down manually via the Task Manager
    (CtrlShiftEsc)...
    On Mon, Sep 1, 2014 at 3:05 PM, frank koethen <[email protected]>

  • How to stop or reduce the RAM usage as the Wpf Datagrid is Continuosly being updated by background Worker?

    Hi,
    I am developing a packet sniffer application, I am getting a packets from adapter and am updating the information in the Wpf Datagrid using a Background worker. it is a continuous process. So if run this application for hours, after 5 or 6 hours I am getting
    a "Sytem.OutofMemoryException" as the RAM being full. Now my requirement is, the usage of RAM should have a some limit(suppose 750MB) for my application, once application reaches this, the usage of RAM should not increase and at the same time I should
    not get "OutofmemoryException". I mean application should free cached memory of starting Rows of DataGrid, means I should not display the initial Rows and I should display the latest entries. how can I achieve this?
    thanks,
    EDIT:
    Here I am using DataGrid.Items.Add() method to add the entries into the datagrid.
    How can I change my code to Observablecollection items now?

    You could remove entries from the ItemsSource collection of the DataGrid once the number of items reaches a certain threshold of items.
    If you for example use an ObservableCollection<T> as the ItemsSource of the DataGrid you could handle its CollectionChanged event and remove the oldest item when there are a total of say over 5000 (you may of course increase this value in your
    partiuclar application of you require to be able to display more than 5000 items in the DataGrid) items in it. This will make sure that there will never by any more than 5000 items kept in memory:
    const int MaxCount = 5000;
    public MainWindow()
    InitializeComponent();
    ObservableCollection<string> collection = new ObservableCollection<string>();
    collection.CollectionChanged += (ss, ee) =>
    if (collection.Count > MaxCount)
    collection.RemoveAt(0);
    yourDataGrid.ItemsSource = collection;
    Since there is no good way to determine exactly how much physical memory the objects in the ObservableCollection<T> occupy so you better choose a maximum
    number of items to be kept in memory (like MaxCount = 5000 in the sample code above) and then remove the oldest one when the number of items reach this maximum.
    Hope that helps.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question.

  • How do i make the ram preview render the whole thing not just part of it

    i have a super-fast modern desktop computer so ram isn't an issue. i want the green bar to cover the whole thing, not leave gray and blue spaces.
    unrelated but while i'm here: is there a way to increase just the gamma of just the in-program composition window since i like to keep my monitor dark for my eyes but always have to increase brightness when watching movies as a result.
    also is there a way to increase the text size of the ui besides increasing the text size for the whole windows 8.1?

    How much RAM does your super-fast modern desktop have? AND what is the size of your composition?
    If you're getting spaces between the green bar, your RAM Preview options may include skip frames.
    If you don't have enough RAM to cache a large (or long) video, you can lower the resolution that you're attempting to RAM Preview (in your comp window if you're using Auto, or in the RAM Preview options).  Unfortunately, it means that you'll be trading quality of the video playback for duration of frames played.
    You can adjust the exposure of the video in the comp or footage windows by using the Exposure Button
    Turn up the value to over/under expose the video, but it won't change the RENDER, just the way you look at it in the window.
    You can toggle the icon on/off if you have a certain value you like to keep it set to.
    Exposure Button & Value

  • My P75-A7200 laptop with bad ram - Is the ram soldered to the motherboard???

    Hello,
    I have a quesiton about my laptop and issues I've been having. 
    It has been blue screening a lot over  the past month or so and when I took it back to the store where I bought it for service, I was told that there was nothing that they could do to it since the ram was soldered to the mainboard and that it would have to be sent back to the factory for repair.
    I'm just trying to find out more about my laptop and hopefully avoid a costly repair if possible. I thought my laptop had 4 dimm slots, if so, where do I find the slots and can I replace the ram???
    Is it really soldered to the main board???
    Thanks for any help.

    the link but it doesn't talk about the 2 dimm slots under the keyboard that I was reading about earlier today.
    You must not have looked at the video! It's out of focus, but you can see that the RAM is replaceable and inserted in slots.
    That video is for a Satellite P75-A7200. As you can plainly see, the RAM is not under the keyboard. 
    Even the spec says there are four slots!.
    Memory
     Configured with 8GB DDR3L 1600MHz (max 32GB)
     4 main memory slots. Two slots are occupied.
    -Jerry

  • Are you able to increase the ram size in the 11" macbook air or do you have to buy it with the 4gb ram from the start?

    I have bought a macbook air 11" with 2gb ram.  I tested it out at the apple store and those products had only a 2gb ram and I did not have a problem with that.  Although I believe this size ram will work for me, I am curious about whether I can increase it at a later time if I choose to do so.

    The current MBA's memnory is not upgradeable.
    Whatever memory allocation it was built with, is the only memory you will be able to have.
    The only way to get 4 GB of ram is to return you air and buy another one with 4 GB.
    If you just bought it, you may want to think quickly about the return policy, if you anticipate ever wanting that 4 GB.
    But for many users, 2 GB will suffice.

  • Can anyone help me I have to macbook pro 13" and 15" retina display double the ram too but the 15"

    Hi I have a brand new logic board in this macbook and it's clean clean as a baby's bum yet it runs slowish can't figure out what to do anymore spent sleepless nights learning all about this macbook
    My 15" runs slow, when the internal fan goes on the laptop reallyh really slows down grrrrhhhhhh help?

    Hardware Information:
              MacBook Pro (Retina, Mid 2012)
              MacBook Pro - model: MacBookPro10,1
              1 2.3 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 512 MB
              NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software:
              OS X 10.8.5 (12F45) - Uptime: 0 days 3:27:41
    Disk Information:
              APPLE SSD SM256E disk0 : (251 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Untitled (disk0s2) / [Startup]: 250.14 GB (230.95 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Gatekeeper:
              Anywhere
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist Support
    User Login Items:
              None
    Internet Plug-ins:
              AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
              FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.214 - SDK 10.6 Support
              AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
              JavaAppletPlugin: Version: 14.6.0 - SDK 10.8 Check version
              QuickTime Plugin: Version: 7.7.1
    Audio Plug-ins:
              AirPlay: Version: 1.7 - SDK 10.8
              iSightAudio: Version: 7.7.1 - SDK 10.8
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.8
    3rd Party Preference Panes:
              Flash Player  Support
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                   2%          WindowServer
                   1%          fontd
                   0%          activitymonitord
                   0%          PluginProcess
                   0%          coreservicesd
    Top Processes by Memory:
              344 MB          PluginProcess
              254 MB          WebProcess
              106 MB          Safari
              57 MB          WindowServer
              41 MB          syncdefaultsd
    Virtual Memory Information:
              5.32 GB          Free RAM
              1.13 GB          Active RAM
              153 MB          Inactive RAM
              1.39 GB          Wired RAM
              749 MB          Page-ins
              0 B          Page-outs

  • Increase the RAM frequency in the BIOS Graphics

    My laptop graphics frequency is 900, while the 1250's you could r9 m290x graphics.
    Please frequencies from 900 to 1250 to increase the video RAM in BIOS, Graphics gx60 destroyer
    bios:http://www.msi.com/support/nb/GX60_Destroyer.html#down-firmware&Win8.1%2064
    Version :   BR44392.202

    I could increase my friends graphics program to change BIOS VBE 7.0.0.7b

  • What's the ram capacity of the original air?

    now that i've upgraded to lion my air is running much slower. i have 2x 1gb 667 MHz DDR2 SDRAM installed and wondered if i can, and should, upgrade to 2x 2gb.

    The original Air is limited to 2 Gigs.  The memory is not replaceable.
    Captfred

  • Will my Macbook 13" late 2006 take the RAM from a Macbook Pro 13" 2.4 Ghz Intel Core Duo?

    I have a macbook 13" late 2006 and i found it was cheaper to buy a 13" Macbook Pro 2.4 Ghz Intel Core Duo Ram, I was just wondering if the ram out of the pro model will fit my older model?

    Some basic guesses from http://www.everymac.com
    MacBook 13" Late 2006 is a MacBook2,1 and that uses PC2-5300 DDR2 667 MHz ram.
    MacBook Pro 13" did not use 2.4 GHz but the first of the 13" models was the MacBook Pro7,1 and that uses PC3-8500 DDR3 1066 MHz ram.
    Those are not compatible and cannot be used interchangeably.

  • Is this RAM compatible with the TS130?

    I found this RAM by doing a search with the stats of the RAM that comes with the TS130 and it's much cheaper, but I'm not sure if it will work. I noticed that this memory is simply DIMM instead of uDIMM, so I want to be sure before I buy it. Thanks!

    RAM you get must be designated for your age and type of model in question.  Getting a specific timing such as
    "....PC3 8500; the Amazon RAM is PC2 5300" is insufficient to guarantee compatibility.  First identify exactly what model you have according to Apple, then buy RAM from a vendor that says the RAM is for the age of model in question.  Here are tools to find your model and model age:
    https://discussions.apple.com/docs/DOC-6413
    And three vendors that sell by the age/model:
    http://www.datamem.com/ http://www.crucial.com/ http://www.macsales.com/
    There may be others.  Do not buy valueRAM or any RAM without a lifetime warranty.

  • Im getting errors when i do a mem test on my hp a6000f.....ive replaced the ram and still get errors

    im getting errors on mem test, Ive replaced the ram, still get errors. How do I disable the L2 cache....on hp a6000f, I dont see anywhere to do it while im in the BIOS/ CMOS setup
      I get error code : BIOME-1

    Here is what you should do to trouble shoot your problem.
    Open up the composition that is giving you problems
    Your error message tells you that you are having problems with the Shatter effect so select the layer with the shatter effect and turn the effect off
    Try a ram preview
    If the ram preview is successful add a solid to your comp
    Copy your shatter effect and paste it to the new solid you created
    Turn off all other layers
    Try a ram preview
    If the ram preview crashes go back to step 6 and reset shatter and try again
    If the ram preview is successful start adding the properties from your original shatter effect until you get a crash.
    If the ram preview works the first time you try step 6 then there is something wrong with the combination of shatter and the original layer it was applied to so remove shatter from that layer, pre-compose that layer moving all attributes to the new layer then paste the working shatter from the solid to the pre-comp, turn off the solid and try another ram preview.
    Do you kind of get the procedure here. When something is causing a crash first isolate that problem, try it on something simple, then try different things until you can reproduce the crash. Make sure you are saving copies of your project so you can easily go back.
    If you can't figure out what settings in Shatter are causing the crash then we need to know everything there is to know about your composition and see a screenshot or the project file. If it is the footage that is causing the crash then you need to transcode, recompress, or in some other way change the format of the footage. There is nothing we can surmise from the details you have given us that give us any clue why shatter is crashing. It usually does not. I can't think of the last time it caused a crash for me. The only possible thing I can think of that would be causing a crash is that the number of particles is causing your system to run out of memory.

  • Satellite E45t-A4300 - Does RAM upgrade void the warranty?

    I have a 2-week old E45t-A4300.  It comes with 6GB of RAM installed (2GB in one slot & 4GB in the other).   It is advertised as accepting up to 16GB of RAM. I purchased and want to install an 8GB DDR3L chip in one of the slots while keeping the 4GB RAM chip in the other, giving me a total of 12GB of RAM. However, I have just been told by a Toshiba technical support rep that adding RAM will void my warranty.  I've owned other laptops (Apple MacBooks and Acer) and was always been able to add RAM to them.  Is Toshiba taking the same path as the new MacBooks in which you can't add RAM? I initially called Toshiba support in order to learn how to open the bottom of the laptop in order to access to the RAM slots.  The rep said he couldn't tell me how to do so because opening the bottom would void the warranty.   There are no RAM access doors  (or HD access doors) on the bottom of the E45t.  Just 10 screws.  But removing themdoesn't free the bottom from the body of the laptop.   I would greatly appreciate any advice or comments.  

    Hi Peter, Would I be able to get a PM about the E45T-AST2N01? I'd like to do the following if possible: Add more RAM (probably another 8GB)Replace the WLAN card with an 802.11ac card"Upgrade" to Windows 7.  Are there Windows 7 64 bit drivers available outside the scant few posted on the website? I know this could void the warranty and stuff ... blah blah.  I just need to know where the slots are.  I can do the rest on my own. Thanks, Super

  • 3rd party RAM opposed to the RAM sold by Apple

    I'm looking to upgrade my RAM to 4GB and I've seen the $300 RAM sold by Apple and other RAMs for like $45-$60 everywhere else. My question is: Why the big price difference? I was doing a little research and I read that with the aluminum Macbooks, anything but the RAM Apple sells will lock up you computer and lead to constant crashes. Is this true, or can I save my $215 and get the 3rd party upgrade?

    just be careful when installing your new ram if you're not all too familiar with hardware installation.
    1. ground ground ground. ground yourself before touching the inside of your macbook and before handling the ram sticks. if you're not aware, you can bond yourself by touching any bare metal surface on the macbook.
    2. use a static free surface or use an insulating mat.
    3. handle the ram by the edges of the circuit board and avoid touching the chips or contact edge.
    4. observe the ram already in the macbook before removing... specifically take note of the depth the contact edge is inserted into the slot. when you install the new ram, make sure they are fully seated based on your observation of the old ram.
    i cant stress this enough, as most of the problems previously stated and the "symptoms" sound more like fried ram than incompatible ram. this is likely due to people not bonding themselves and accidentally zapping their new ram due to improper handling. granted, there's a lot of cases of poor quality ram causing some peoples' problems, but i'm willing to bet a significant ratio are due to careless or improper handling.
    if vendors like crucial, ramjet, and OWC were selling large batches of questionable ram, i'm sure they wouldnt sacrifice their reputation by continuing to sell product known to be bad. just stick with a reputable vendor and you'll be fine.
    i read all the same info as you did, and i purchased my upgrade from ramjet based on their claim that they test their ram in the actual computers and not on just a test bench. sure, i was already skeptical of most peoples' claims of "bad ram" but i chose to CYA at the same time and my upgrade has gone just fine.
    and no, i dont fear that "it'll go bad after a few weeks" because that's not how memory works. for those that had that happen to them, it's because they zapped their ram due to poor grounding/bonding practices.

Maybe you are looking for

  • How do you Shut Down your Mac?

    I just converted from Windows to Mac yesterday and today I'm trying to shut down my Mac, but there's no Start button! How can I get my Start Button back?

  • How do you use two scripts for a button?

    Hi all! I'm referring to my earlier question posted in this topic: Object not found with myContext.getParamIdForComponent In short: when I had the attribute 'jsObjectNeeded="true"'  on a button and that was for a script that would start a function va

  • JCO Error Message

    Hi, Background - We are trying to configure EP with SRM SUS. When we try to create a JCo connection, We are getting this error - com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed Connect_PM  TYPE=B MSH

  • RUL-05943 while trying to define Business Rule Service Component

    When I doubleclick the Business Rule Service Component wich I just dragged from the Service Components pallette to the composite I receive an error dialogue with the following information: After pressing Details: java.net.URISyntaxException: Illegal

  • Http Digest authenticatio

    Is http digest authentication supported by osb or soa suite.? Thanks