Kvirc from SVN {NON-Standard-Install-Method} and Overcoming 2 Problems

Hello, everyone.  Firefishe here.
There are certain programs I like to compile from source code, outside of the normal arch hierarchy of PKGBUILD's.  One such program is the Internet Relay Chat client, "KVIRC".
I've been using kvirc for years, and I like to keep it as up-to-date as possible, just like Arch!
This is why I like to use the svn version, so I can update it quickly and uniformly.  I like--as a user--to contribute back to the project.  (I had one of my bug reports translated into an instant commit by the main project author, himself, once.  That made me feel quite good, so it really does help to do a few things like this now and again.
Okay, on to the main topic.
I'm writing this to alleviate a nagging problem that had been plaguing me for months in 2013.  Qt5 just wasn't compiling kvirc very well back then.  The fact is, the echoing strains of "qt5 is broken in kvirc" from the #kvirc channel on Freenode, resounded soundly throughout that entire year.  Qt5 was still a bit buggy, and not all the libraries (32bit or 64bit) were quite finished.
Move forward to (now) July, 2014!  I have now compiled kvirc successfully on my 64bit (with 32bit multilib installation) laptop, and kvirc is purring away with a current svn build of kvirc.
However, I ran into some issues, which I would like to share with you, below:
I usually go about compiling kvirc from svn like this: (I usually start from my /home/userNameHere directory.)
{arch@homedir}$ svn co https://svn.kvirc.de/svn/trunk/kvirc
{arch@homedir}$ cd kvirc
{arch@homedir}$ mkdir release
{arch@homedir}$ cd release
{arch@homedir}$ ccmake ..
[At this point, the 'ccmake ..' command invokes cmake-gui, an ncurses-like graphical user interface, with a list of menu items pertaining to various libraries and flags that can be set.  cmake-gui makes selecting these flags and libraries quite easy, and also gives a clear indication of what directories may not have been found (which will be discussed a bit later.) ]
Press the 'C' Letter Key -- (This runs the Configure Routine.  I sometimes do this twice, just to be sure it configured properly. I've had it miss a few times for unknown reasons.)
Press the 'G' Letter Key -- This 'Generates' Cmake files.
After the 'G' command, the system takes you back to the command prompt.
{arch@homedir}$ make ***WAIT A WHILE, COULD TAKE A BIT LONGER ON SLOWER SYSTEMS!***
{arch@homedir}$ sudo make install  (Or 'su -' to root, then do 'make install'; your preference.  I prefer using sudo.)
{arch@homedir}$ sudo ldconfig  (Or 'ldconfig' if still at root prompt #)
{arch@homedir}$ kvirc (or 'kvirc &' if you don't want the terminal window to hold onto the process.)
Kvirc should run at this point, but I ran into a couple of problems.  Once during the ccmake configuration (which prevented ccmake from configuring), and at the end, which prevented kvirc from running.)
The first had to do with two (2) packages that were not installed.  The were, as follows:
qt5-webkit
qt5-multimedia
I installed those files, then did the  'ccmake ..' portion.   That ran fine, as well as the 'make' and 'sudo make install' and 'sudo ldconfig' parts.
What didn't work was when I tried to run kvirc.  I got the following error:
{arch@homedirc}$ kvirc
kvirc: error while loading shared libraries: libkvilib.so.4: cannot open shared object file: No such file or directory
I remember, back when kvirc was wanting Qt4, and not Qt5, that if I didn't do the first 'sudo ldconfig' command before trying to run kvirc, it would give something similar.  However, since this compile run was wanting Qt5, and not qt4, I was puzzled.
Well, it turned out to be something quite simple.  This is a non-standard process of software installation on a new(er) arch system.  The 'uname -r' command on my system yields the following:  3.15.4-1-ARCH .  It is no surprise, then, that at this late date, Qt5 is complete (or at least more complete) than back in 2013 when I had the original problems, and had to select the 'WANTS-QT4' section during the 'ccmake ..' command.
**** Building kvirc this way places the kvirc binary in /usr/local/bin, and a certain 'libkvilib.so.4' library in /usr/local/lib ****.
This is to be expected from a standard source compile on most gnu/linux systems; and this *is* a standard compile, even though we're using the 'ccmake ..' command to do the preliminary configuration and cmakefile generation.)
The problem is, is that Arch is looking for libkvilib.so.4 in /usr/lib, and not /usr/local/lib.  So the following was, for me, the solution that got everything squared away:
I made a symlink in /usr/lib to /usr/local/lib/libkvilib.so.4, like this:
{arch@homedir}$ cd /usr/lib
{arch@homedir}$ sudo ln -s /usr/local/lib/libkvilib.so.4 libkvilib.so.4
After doing this, I did:
{arch@homedir}$ kvirc (or kvirc &)
And It Ran Beautifully! :-)
I hope you've enjoyed this HOWTO.  I know most people may just want to use the 4.2.x version of kvirc, currently residing safely in the standard repositories.  However, if you're like me, and want a bit of bleeding edge, Qt5 goodness with kvirc, I might suggest doing the above!
I can be reached at firefishe At gmail DOT com if anyone has any questions.
Last edited by Firefishe (2014-07-11 09:23:20)

Hi Dareen,
Looking at the information shared and also the error message ( Update Failed,Updates could not be applied.Please contact your Administrator if you wish to apply updates on your machine. Updates have been suppressed by the Administrator.If the problems persist, contact customer support for further assistance" ),
It suggests that the updates were to be managed by the Admin only. Lets try the following step and suggest if this was able to resolve the concern that you have or not.
1) Navigate to C:\Program Files (x86)\Common Files\Adobe\AAMUpdaterInventory\1.0 and you will find a .dat file ( AdobeUpdaterAdminPrefs.dat).
2) Please open the file in question and you will find a line item : <Suppressed>1</Suppressed> .
3) Please change the Value from 1 to 0 and save the file back in the same location.
post the above step, try the installation once again and share the end result please.
Cheers,
Kartikay Sharma

Similar Messages

  • Calling non standard servlet methods

    How can we call the non standard servlet methods like OPTIONS, HEAD, TRACE, etc.? Like to call the GET method of the servlet located on server xyz from some HTML page, we write the HTML form as follows :
    <form name="frmname" action="http://xyz.com/servlet/MyServlet" "method=get">
    So what should we write to call the other methods?
    Ankit.

    You can't do it directly from HTML, you need to open a connection over HTTP and then send the appropriate HTTP request. Not all web servers support these methods.

  • Non-standard HTTP methods in Servlet 2.4

    Hi,
    I have application Servlet 2.3 compatible and I want to migrate it to the Servlet 2.4 specification, but I faced a problem with non-standard HTTP-methods that my application uses (WebDAV HTTP methods).
    In the web-app_2_4.xsd there are only seven valid HTTP methods and my xml editor cannot validate web.xml because of the non-standard HTTP methods.
    Can someone help me to solve this issue?
    Regards,
    @n@stell_

    Hi,
    if you have an empty <http-method> element then all methods are constrained. Does this help?
    Matthew

  • When i try to make an itunes account it i cant find "none" by payemnt method and i dont have a credit card. any way to get around that?

    when i try to make an itunes account it i cant find "none" by payemnt method and i dont have a credit card. any way to get around that?

    Unless the instructions on this page are followed when creating an account : http://support.apple.com/kb/HT2534
    then credit card details will need to be entered before the account can be used to download any item from the store.
    If created the account (e.g. you're not in the process of creating it and are stuck on the payment screen) and you are being prompted to review it then you could see if this post by mountaingoatgirl lets you reviewit without needing to enter credit card details : https://discussions.apple.com/message/24303054
    If not then you will need to create a new account, and follow the instructions on that HT2534 page when creating it. If you want to use the same email address then you will need to replace it on that account first e.g. by logging into it via the Store > View Account menu option on your computer's iTunes or via http://appleid.apple.com
    Creating an account with 'none' via a computer's iTunes : https://discussions.apple.com/message/24321860

  • I have installed Lion and have problems to print PDF from prewiev.

    I have installed Lion and have problems to print PDF from prewiev. When trying to print Prewiev locks. Anyone out there with the same problem?

    Hello David and Nicole
    I just installed Lion on my iMac, which was purchased in 2007, and I cannot print from Preview; it keeps locking up and not responding. So, I have to force quit Preview. I have been sending error reports to Apple. I suggest everyone who has this problem, send error reports!
    I can print from other applications, like Pages, with my Canon Laserjet. I do not think it is a printer issue becasue I can print in other application.
    I took your advice and installed Adobe reader. Now I can print pdf's.
    Thanks
    Ed

  • Non-standard install problem

    I'm trying to upgrade to the newest Flash player for Opera on Windows XP but I can't get it to install properly. I think the problem is that Opera (9.4) is installed to a non-standard folder on my machine (.../Opera7) rather than the usual .../Opera folder and I'd rather not have to change it. Any ideas on how I can install to the correct location? Any help would be appreciated.

    If that didnt work try this below:
    1) Open up the Command Prompt as an Administrator (Go to All Programs > Accessories and Right Click on Command Prompt and then choose Run as administrator)
    2) Type cd C:\Windows\SysWOW64
    3) Type regsvr32 vbscript.dll (This registers VB Script with your computer.)
    4) Now install iTunes as you normally would by double clicking on the install program and wait for iTunes to finish installing.
    5) Type regsvr32 \u vbscript.dll (This unregisters VB Script with your computer.)
    THIS ONE COMES WITH A WARNING
    TRY BOTH OF THESE AT YOUR OWN RISK
    AND some thing below to consider about this second step, not the first post
    To enabled, VB Script a scripting language that has been responsible for more trojan and worms floating around the internet than any other on the face of this earth. All in order to install one of the earths most popular programs to get our daily audio fix. So we have to disable security measures built in to protect the operating system from malicious code and leave our selves wide open.This would be the equivalent to Microsoft telling Mac People to disable buffer overflow protection in order to install Microsoft Office for the Mac.

  • DMS 5.4 Lab (Demo) Non-Standard Install

    OBJECTIVE:
    Install 5.4 on lab equipment available.
    CURRENT STATUS:
    I have the software for v.5.4 (iso images, with demo licenses, below are exact versions),
    DMM-5.3.0.244.iso
    DMS-UPG-LATEST-5.4.0.736.iso
    IDEAL & UNLIKELY SOLUTION:
    Install ESXi and then create a VM, then install to the VM, or use something like this.
    POTENTIAL COMPROMISE:
    I have been advised to try and "Trick" the installer program, and install directly to the bare metal.
    QUESTIONS:
    Can anyone here advise me on what to try first, best options, and last ditch effort?
    Could I potentially get this to install on bare-metal, non-standard extra hardware (I've got 2 boxes sitting around, both are PRIME-NCS-APL-K9)
    Any additional advise or reference URL/Docs you might offer?
    REFERENCE URLs:
    DMS Install Guides (including 5.4):http://www.cisco.com/en/US/products/ps6681/prod_installation_guides_list.html
    PID VID PRIME-NCS-APL-K9 V01http://www.cisco.com/en/US/docs/wireless/ncs/appliance/install/guide/primencs_qsg.pdf
    HARDWARE REQUIREMENTS for DMM 5.4 VM:
    http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_4/dmm/vm/dmm54x_vm.html#wp44238

    Thank you Marco.
    I'm a bit curious though if anyone has gotten the OVA converted/imported to Hyper-V or Xen?  (wouldn't that be lucky?).  As it is, I've got the OVA DMM VM, and a demo license of ESXi and working on getting this up and running now in lab now, to see if it still works with InformaCast alerts.

  • Installing itunes and quicktime problem

    Alright i am having problems installing itunes and quicktime, itunes downloads fine but when the quicktime install gets to writing system registry values it says "Could not open key: HKEYLOCALMACHINE\Software\Classes\QuicktimePlayerLib.QuicktimePlayerApp\CLSID. Verify that you have sufficient access to that key, or contact your support personnel"

    "Could not open key: HKEYLOCALMACHINE\Software\Classes
    \QuicktimePlayerLib.QuicktimePlayerApp\CLSID. Verify that you have sufficient >access to that key, or contact your support personnel"
    Crikey. Haven't seen one of those for an eternity.
    Checking on a simpler possibility with it first. It can be produced if certain older versions of QuickTime were installed in a different administrative user accpount from the one in which you're currently attempting to install the newer version.
    Do you have other user accounts with full administrative rights on the PC? If so, can the install go through successfully from any of those?

  • Just installed Tiger and having problems

    I just installed 10.4.3 with an Archive and Install. Since then I have had a host of problems and tried a variety of fixes. Some have worked yet in general the machine freezes or slows down to an incredibly slow pace. And then I have to restart.
    What I have done:
    Initial Archive and Install
    * Office 2004 products not working, restart cpu, get blue screen
    * Start up in Safe mode and get rid of MIcrosoft Office Database Daemon in Start-up Items
    * Computer restarts but still sluggish have to Force Quit
    Other problems:
    Printing to Epson Printer
    * Get a message "the printer "(null)" could not be found in your list of printers.
    I don't have a printer "(null)"
    FYI - I am printing via Airport and have added the printer to the list and picked the driver.
    I switched to Mail and ical because of the Entourage problems.
    * Mail seems slow and when I am loading a simple no attachment message, I get a spinning wheel.
    * Mail Help window has disappeared.
    Safari/Firefox
    * Slower loading than 10.3.9. Spinning Wheel.
    What I have tried:
    * Fixed permissions
    * Booted from the Tiger disk and repaired the disk. No repairs were done.
    Each of these steps solved the problems immediately but as soon as I start multitasking between mail, Office 2004, Safari everything is slow and often ends up Force Quitting at least on program.
    What would you do next?
    1. Should I reinstall 10.4.3 from the disk with a Basic install? And then upgrade to 10.4.6 to see if that will fix my problems?
    2. Or should I do an Erase and Install? (which I am trying to avoid?)
    The majority my work is done in email and Office products. Thanks in advance for any help or advice that will get me out of this quandary.
    Powerbook G4 17"   Mac OS X (10.4.3)  

    Welcome to Apple Discussions!
    First see if upgrading Office to the latest release fixes issues. If not, verify that Spotlight has finished indexing by seeing if opening the Spotlight menu reveals that it is indexing or not. If it isn't finished indexing, wait for it to finish.
    If that does not solve issues, see this article on fixing font issues. Many have had trouble with whose fonts aren't working right:
    http://discussions.apple.com/thread.jspa?threadID=122011

  • The essential guide to DW cs4... by D. Powers: when from wamp to xampp+virtual host and having problems :(

    Following the book in chapter 2 I think Ivé followed everything correctly, but have encluded all the things I've edited below.
    I was using wamp with no problems but after trying to set up a virtual host and now using xampp im abit lost its probabsomething stupid but I can find the prob.
    (This post is abit long and dragged out so I used some colour to try ease the reading..)
    When I try to view a dynamic page in live view or in firefox I get the following error:
    **when using:
    <VirtualHost *:80>
    DocumentRoot c:/xampp/htdocs
    ServerName localhost
    </VirtualHost>
    result:
    Access forbidden!
    You don't have permission to access the requested object.     It is either read-protected or not readable by the server.
    If you think this is a server error, please contact the webmaster.
    Error 403
    thegoodlife
    2009/10/13 12:47:48 PM
    Apache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0
    *when using:
    <VirtualHost *:80>
    DocumentRoot c:/htdocs
    ServerName localhost
    </VirtualHost>
    result:
    Object not found!
    The requested URL was not found on this server.          If you entered the URL manually please check your     spelling and try again.
    If you think this is a server error, please contact the webmaster.
    Error 404
    thegoodlife
    2009/10/13 12:32:58 PM
    Apache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0
    This is what I've done, blue indicating where I have or was meant to edit, red being the relivant context. (hope it helps )
    1. Created a new folder called htdocs (C:\htdocs)
    2. Changed the pathname to:
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "C:/htdocs"
    and
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "C:/htdocs">
    3. Created vhosts folder; with a sub-folder called thegoodlife (C:\vhosts)
    4. entered new vhost:
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    # For example:
    #      102.54.94.97     rhino.acme.com          # source server
    #       38.25.63.10     x.acme.com              # x client host
    127.0.0.1 localhost
    127.0.0.1 dwcs4
    127.0.0.1 thegoodlife
    127.0.0.1 bin.errorprotector.com ## added by CiD
    5.It says uncomment the command by removing the #, (Supplemental configuation.), but this is the origional file; already uncommented?
    # Real-time info on requests and configuration
    Include "conf/extra/httpd-info.conf"
    # Virtual hosts
    Include "conf/extra/httpd-vhosts.conf"
    # Distributed authoring and versioning (WebDAV)
    Include "conf/extra/httpd-dav.conf"
    6.Set the permissions and changed the code as instructed, unsing (c:/xampp/htdocs) as advised.
    # You may use the command line option '-S' to verify your virtual host
    # configuration.
    <Directory C:/vhosts>
      Order Deny,Allow
      Allow from all
    </Directory>
    # Use name-based virtual hosting.
    ##NameVirtualHost *:80
    # VirtualHost example:
    # Almost any Apache directive may go into a VirtualHost container.
    # The first VirtualHost section is used for all requests that do not
    # match a ServerName or ServerAlias in any <VirtualHost> block.
    <VirtualHost *:80>
    DocumentRoot c:/xampp/htdocs
    ServerName localhost
    </VirtualHost>
    <VirtualHost *:80>
    DocumentRoot c:/vhosts/dwcs4
    ServerName dwcs4
    </VirtualHost>
    <VirtualHost *:80>
    DocumentRoot c:/vhosts/thegoodlife
    ServerName thegoodlife
    </VirtualHost>
    Then creating the site definition:
    local root forlder: C:\htdocs\thegoodlife\
    testing server folder: C:\vhosts\thegoodlife\
    URL prefix: http://thegoodlife/
    hope i've covered all area's where I could have gone wrong

    Just one more thing - the description of what i did while first Kernel appeared:
    Happened 2 days ago. Wasn't turning it off for like a day, only sleep mode by closing it. Worked fine all day, wasn't doing anything, except for checking mail 2-3 times and having windows 7 virtual machine opened but doing nothing, everything was going fine. Then closed it without turning off.
    Opened 3-4 hours later, everything was working fine for 30 minutes of checking mail, then Kernel appeared. After that pretty much everything i did is described in part 1-5.
    Note: all the time MBP was connected to internet via wifi, so updates to both MBP and virtual machine of all programs were possible.
    I only shared downloads and desktop folders, so windows couldn't have access to system folder of Mac Os.
    Hope this might help...Thanks again.

  • Changing of the standard port 1521 and afterward problems with Single Sign

    System / Host Environment
    Operating System: HP-UX 11i, Existing Oracle RDBMS Vers. 9.2 x, Listener on standard port 1521
    9iAS System Architecture: 9iAS Infrastructure and Middle tier (AS Instance) on the same machine
    Problem Environment:
    -Before and during the installation of 9iAS infrastructure the Listener of the existing Oracle RDBMS was stopped
    -The installation of 9iAS Infrastructure (db: IASDB) Version 9.0.2.0 works well
    -Afterwards the port 1521 of IASDB changed to 1525. For a detail description of IASB port changing please refer to Doc. ID: 211 929.1 AFTER CHANGE 'IASDB' LISTENER PORT
    -The installation of Patch Set 2 (Common Patch 2703110) follows (9iAS is now up to Release 9.0.2.2).
    -The Installation of 9iAS Middle tier (AS Instance) Version 9.0.3 follows
    Problem description:
    -During the installation of 9iAS Middle tier problems with Single Sign On occurs.
    The reason of this problems seems a communication problem between the Single Sign On login sequence and the IASDB. After a reset of the port changing (back to the standard port 1521) the installation of 9iAS Middle tier works well.
    Through this incorrect and problematic behaviour we have some notes and questions:
    -Well at first the description of the port changing in Doc. ID: 211 929.1 seems us incomplete. Some configuration still carry on the standard port 1521 and not the knew value of the port 1525.
    -So we want to know all configuration files and parts where we have to change the port value manually ?
    -What will happened to the Single Sign On function with this manually port changing. Does Single Sign On works later on correct or have we to change much more ?

    Currently, changing the listener port is not supported. It must stay on 1521. I believe this is to be fixed in a latter release (perhaps 9.0.4)

  • How Do I: Remove White Background From a Non-Standard Sized PDF?

    Hello. Been a little while since I was last here.
    My issue is pretty simple. I am creating a PDF in Acrobat Pro X from MS-Word 2007. My document is landscaped half-page sized (US), so dimensions are: 8.5" wide, 5.5" high.
    When I attempt to print to PDF, the dimensions come out correctly, but there is a white background which is the size of a landscaped 8.5" x 11" sheet. Against this background, the 8.5" x 5.5" area is situated (nearly) centered vertically, but "right-justified" horizontally (see image). I need to find out how to fix this.
    Here's what I know:
    In MS Word:
    For "Page Setup" (under Page Layout tab):
    - under Margins tab, orientation is landscape;
    - under Paper tab, "Paper size" is "Custom size", with Width 8.5", Height 5.5" ;
    - No changes under Layout tab.
    For "Preferences" (under Acrobat tab)
    - under Settings tab, "Conversion Settings" are a custom setting ("Advanced Settings"), with "Default Settings" of Width 8.5 inches and Height 5.5 inches.
    When I Print > Adobe PDF:
    For "Properties" in Print window:
    - Under Layout tab, "Orientation" is "Landscape" ;
    - Under Paper/Quality tab, "Paper Source" is custom with Width 8.5" and Height 5.5".
    - Under Adobe PDF Settings tab, "Default Settings" is "High Quality Print (Custom)" with (Custom) being the settings I set under Acrobat > Preferences.
    - Also under Adobe PDF Settings tab, "Adobe PDF Page Size" is custom with Width 8.5" and Height 5.5".
    The result is pictured above.
    The last thing I did before posting this was run Help > Repair Acrobat Installation in Adobe X. Any suggestions? You can't do worse than I have.

    If you want to remove a background and add a new one Photoshop Element for Mac makes it rather easy to do:
    OT

  • Non standard issues - QGM and Retrofit

    Quick question to all ALM experts - If we want to use retrofit after transports has been released in maintenance landscape and then if client realized that we need to have project landscape and retroft functionality. Is it feasible ? if yes definitely need manual changes, listing out objects etc?
    Also, in QGM if transports are released to QAS and if we do not want to continue with the transports? what alternative options we have like continuing the same transport until PRD and then create new transport to nullify the transport ? or manually tweeking the code and do changes
    I know above are not best practises but just want to know your thoughts on this if any.
    Any suggestions from your side?
    Thanks
    Sateesh.

    To clarify, you want to see this traffic go to the S170 but do not see any access logs is this correct?
    Are you using WCCP?  If so, you will need to configure WCCP to redirect port 44444.  But with all honesty, for 1 website that uses that port; you might want to consider to just let that traffic out the firewall since the WSA will likely not scan this traffic.
    -Vance

  • Upgrading from CS3 Web Standard to CS4 Web Premium problems

    So I got my CS4 Web Premium upgrade box in the mail yesterday.  I'll be starting a big project in about a week or so and figured I'd do the install and familiarize myself with the enhancements and play with PS, as it has been a while.  Anyway, I drop the first of the install disks into my XP Pro SP3 laptop and off I go.  I enter the serial number for the CS4 which checks good.  Hit next at which point it looks for a previous install of a CS product and does not find one.  No problem, I think to myself, as there is a space to enter the previous version's serial number.  Enter the serial for the previous version (CS3 Web Standard) which results in a no go in resolving the number.  The tool suggests I go back and install the trial version and then deal with the issue with Adobe support.  Has anyone else experienced this issue and if so could you please share your experiences and/or resolution path?

    I did my homework on this one and purchased the "Upgrade from Creative Suite 3.x" offering.  The CS3 works like a champ.  When I attempt to do the install of CS4 I get the error message when I enter the CS3 serial number.  Any thoughts, guidance or suggestions are welcomed.  I'm resistant to going the trial version route for fear that I'll not get resolution in time and have my project impacted.  I can probably get by with Fireworks, but PS is preferred and the driving reason for the upgrade.  Thanks!

  • Is there a better Cross Dissolve method and associated problem?

    I have been using Cross Dissolve for some time now.  I have searched and reviewed cross dissolve help in the forum without so far finding better information or a solution.
    My method:
    - razor at the point to be dissolved
    - drag the Cross Dissolve to the razor point
    - click the dissolve to select the length required
    - razor each end of the dissolve length
    - right click each razored section with a ripple delete
    - reapply the cross dissolve and reselect the length
    I find this works for me but could be simpler.  I ripple delete the razored sections because if I do not, the cross dissolves overlap previous sections prior and after the selected clips in the whole video sequence such that the effect appears not to work.  Ripple deleting ensures that the previous sections are within the selected clips.  There has to be a faster way.
    My problem:
    This happens after many successful cross dissolves in a Project as though I have run out of allowable times it can be used.  When I try to ripple delete the razored sections, the ripple delete does not work no matter what I do. 
    What can I do better or correctly to cross dissolve and how can I deal with untimely failed ripple deletes?

    I was not implying anything about your "experience" or otherwise although your method did actualy indicate a lack of editing experience..
    It was you that asked for a more simpler, faster  way to do one of the most fundamental editing functions.  A cross dissolve.
    I find this works for me but could be simpler.  I ripple delete the razored sections because if I do not, the cross dissolves overlap previous sections prior and after the selected clips in the whole video sequence such that the effect appears not to work.  Ripple deleting ensures that the previous sections are within the selected clips.  There has to be a faster way.
    I do not know how  or why you developed the method you described...
    My method:
    - razor at the point to be dissolved
    - drag the Cross Dissolve to the razor point
    - click the dissolve to select the length required
    - razor each end of the dissolve length
    - right click each razored section with a ripple delete
    - reapply the cross dissolve and reselect the length
    but it certainly is unique ....if somewhat cumbersome and time consuming.
    I only offered the advice that lead you to a "simpler , faster " way of doing a very simple function.
    Your post number 4.  Yes you have misinterpreted that setting. 
    Stephen kind of unintentionally mislead you by using the term Pre and Post roll  when he should have said " handles". (ie edit the clip  knowing you have additional frames either end to create a fade from.

Maybe you are looking for

  • Help needed with referencing single Excel cells and formatting resulting text

    In InDesign CS5 I am putting together a 20pp catalogue of about 200 products. The plan is to have the product information, SKU code, quantity etc fixed, but have the prices (there are two i.e. pack price and individual price) being linked to an Excel

  • How can I use OnBoard+Aditional audio cards at the same time? !!! BIOS PROBLEM !!!

    I want use both audio cards. The On-board audio + SoundBlaster Audigy. Because I have mp3 player mp3tunes ( from http://www.mp3tunes.nl ) that is able play on both audiocards at the same time. It is good for DJ. One audiocard is for pre-listen.  But

  • JBO-33001 in UIX

    Hi I am using Jdeveloper 10.1.2 and I am getting this error on one of the UIX page. I don't know what is wrong. The error is oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /abcfile/common/bc4j.xcfg in the classpath I got this

  • One Visual Admin (local) for all my SAP Systems

    Hi there, i have a little question. I have to administrate about 20 different SAP Systems. And it gets me on my nerves that i always have to go with putty on one of my systems.. set the DISPLAY variable and open the Visual Admin. So what i have done

  • Basics of ADF :: Bindings

    Hi, I am new to ADF and created some simple search and create pages using jDeveloper. However I am not getting cleared with the bindings and data control concepts as jDeveloper does all these things by itself. Is there a way to create a very simple p