Partial fix to hang in moving to 32 bit plu-in Nik editing

I have discovered a helpful - although still time consuming and bothersome- problem solver to RAW images with numerous adjustments simply hanging Aperture with spinning beach ball of death when I try to relaunch in 32 bit mode for filtering in plug-ins:
if hanging: force quit
open aperture
select a RAW image with NO edits
edit that image in plug in (relaunch 32 bit mode)
cancel save within plug
select image of interest with edits
select edit in plug in
wait (often up to 5 min!!) and image will finally open in plug in. . . .
If others have a better method, please share.
Anxiously awaiting NIk 64 bit!
Systems are :
MacPro 8 core
iMac 27" 3.33
New MacBook Pro
all with 10.6.4 and Ap 3.0.3 and 8 GB RAM minimum (except laptop has 4 GB)
problem (and work around) occurs, and works, on all machines. . . .

It seems that this is the good old "I think it's 64bit" error. It tries to install 64bit components on your 32bit system. This specifically comes down to some DLLs on your system being missing or the wrong version, possibly even a hardware driver returning some false info (processor controlelr etc.) I'd check Windows Update and verify the SP2 is installed correctly. Also make sure your MSVC 2008 runtime and possibly .NET 1.1 are isntalled correctly. Verify in your device manager that the CPU is detected correctly and Windows isn't running in some sort of compatibility mode. if there came a specific set of drivers with your motehrboard, installing them alone might fix a lot of things, as then you actualyl may also see Windows Update install some components for the first time that may be missing currently...
Mylenium

Similar Messages

  • [svn:osmf:] 17499: Partial fix for FM-990: prevent RTE when attempting smoothing for an image where a policy file was not available

    Revision: 17499
    Revision: 17499
    Author:   [email protected]
    Date:     2010-08-27 11:05:22 -0700 (Fri, 27 Aug 2010)
    Log Message:
    Partial fix for FM-990: prevent RTE when attempting smoothing for an image where a policy file was not available
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-990
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/ImageElement.as

    Revision: 17499
    Revision: 17499
    Author:   [email protected]
    Date:     2010-08-27 11:05:22 -0700 (Fri, 27 Aug 2010)
    Log Message:
    Partial fix for FM-990: prevent RTE when attempting smoothing for an image where a policy file was not available
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-990
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/ImageElement.as

  • Griffith Movie Collection Manager and IMDB - partial fix. IMPROVED 30

    Griffith seems to be no longer maintained but I've yet to find a proper replacement. So, to fix the IMDB plugin problems it seems I have only myself to count on.  Today, I've looked at the plugin and fixed, or partially fixed the following problems :
    - Director : fixed
    - Screenplay : fixed
    - Cameramen : fixed (with a small problem.  You'll see)
    - plot : fixed
    - cast : fixed (with big whitespace problem) 30.10.2013 fixed with just one spare space at start of line
    I will continue to look and improve and try to solve problems.
    The complete code of PluginMovieIMDB.py follows.  Where I've made changes, the original code line is commented and begins with "#benel 25.10.2013" (or any other chabge date).  Changes were made to the line right after it.
    (This message has also been posted in the old Griffith forum)
    # -*- coding: UTF-8 -*-
    __revision__ = '$Id$'
    # Copyright (c) 2005-2013 Vasco Nunes, Piotr Ożarowski
    # This program is free software; you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation; either version 2 of the License, or
    # (at your option) any later version.
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU Library General Public License for more details.
    # You should have received a copy of the GNU General Public License
    # along with this program; if not, write to the Free Software
    # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
    # You may use and distribute this software under the terms of the
    # GNU General Public License, version 2 or later
    import gutils, movie
    import string, re
    plugin_name = 'IMDb'
    plugin_description = 'Internet Movie Database'
    plugin_url = 'www.imdb.com'
    plugin_language = _('English')
    plugin_author = 'Vasco Nunes, Piotr Ożarowski'
    plugin_author_email = '[email protected]'
    plugin_version = '1.14'
    class Plugin(movie.Movie):
    def __init__(self, id):
    self.encode = 'utf-8'
    self.movie_id = id
    self.url = "http://imdb.com/title/tt%s" % self.movie_id
    def initialize(self):
    self.cast_page = self.open_page(url=self.url + '/fullcredits')
    self.plot_page = self.open_page(url=self.url + '/plotsummary')
    self.comp_page = self.open_page(url=self.url + '/companycredits')
    self.tagl_page = self.open_page(url=self.url + '/taglines')
    def get_image(self):
    tmp = gutils.trim(self.page, 'id="img_primary"', '</a>')
    self.image_url = gutils.trim(tmp, 'src="', '"')
    def get_o_title(self):
    self.o_title = gutils.regextrim(self.page, 'class="title-extra"[^>]*>', '<')
    if not self.o_title:
    self.o_title = gutils.regextrim(self.page, '<h1>', '([ ]|[&][#][0-9]+[;])<span')
    if not self.o_title:
    self.o_title = re.sub(' [(].*', '', gutils.trim(self.page, '<title>', '</title>'))
    def get_title(self): # same as get_o_title()
    self.title = gutils.regextrim(self.page, '<h1>', '([ ]|[&][#][0-9]+[;])<span')
    if not self.title:
    self.title = re.sub(' [(].*', '', gutils.trim(self.page, '<title>', '</title>'))
    def get_director(self):
    self.director = ''
    #benel 25.10.2013 parts = re.split('<a href=', gutils.trim(self.cast_page, '>Directed by<', '</table>'))
    parts = re.split('=ttfc_fc_dr."', gutils.trim(self.cast_page, '>Directed by&', '</table>'))
    if len(parts) > 1:
    for part in parts[1:]:
    director = gutils.trim(part, '>', '<')
    #benel 25.10.2013 self.director = self.director + director + ', '
    self.director = self.director + director[:-1] + ', '
    self.director = self.director[0:len(self.director) - 2]
    def get_plot(self):
    #benel 25.10.2013 self.plot = gutils.regextrim(self.page, '<h5>Plot:</h5>', '(</div>|<a href.*)')
    self.plot = gutils.regextrim(self.page, '<h1 class="header">Plot Summary</h1>', '(<div class="odd" id="plotSynopsis">|<a href.*)')
    self.plot = self.__before_more(self.plot)
    #benel 25.10.2013 elements = string.split(self.plot_page, '<p class="plotpar">')
    elements = string.split(self.plot_page, '<p class="plotSummary">')
    if len(elements) > 1:
    self.plot = self.plot + '\n\n'
    elements[0] = ''
    for element in elements:
    if element <> '':
    self.plot = self.plot + gutils.strip_tags(gutils.before(element, '</a>')) + '\n\n'
    def get_year(self):
    self.year = gutils.trim(self.page, '<a href="/year/', '</a>')
    self.year = gutils.after(self.year, '>')
    def get_runtime(self):
    self.runtime = gutils.regextrim(self.page, 'Runtime:<[^>]+>', ' min')
    def get_genre(self):
    self.genre = string.replace(gutils.regextrim(self.page, 'Genre[s]*:<[^>]+>', '</div>'), '\n', '')
    self.genre = self.__before_more(self.genre)
    def get_cast(self):
    self.cast = ''
    #benel 25.10.2013 self.cast = gutils.trim(self.cast_page, '<table class="cast">', '</table>')
    self.cast = gutils.trim(self.cast_page, '<table class="cast_list">', '</table>')
    if self.cast == '':
    #benel 25.10.2013 self.cast = gutils.trim(self.page, '<table class="cast">', '</table>')
    self.cast = gutils.trim(self.page, '<table class="cast_list">', '</table>')
    self.cast = string.replace(self.cast, ' ... ', _(' as '))
    self.cast = string.replace(self.cast, '...', _(' as '))
    self.cast = string.replace(self.cast, '</tr><tr>', "\n")
    #benel 30.10.2013 V
    self.cast = string.replace(self.cast, ' ', "")
    self.cast = string.replace(self.cast, '\n', "")
    #benel 30.10.2013 ^
    self.cast = re.sub('</tr>[ \t]*<tr[ \t]*class="even">', "\n", self.cast)
    self.cast = re.sub('</tr>[ \t]*<tr[ \t]*class="odd">', "\n", self.cast)
    self.cast = self.__before_more(self.cast)
    def get_classification(self):
    self.classification = gutils.trim(self.page, '(<a href="/mpaa">MPAA</a>)', '</div>')
    self.classification = gutils.trim(self.classification, 'Rated ', ' ')
    def get_studio(self):
    self.studio = ''
    tmp = gutils.regextrim(self.comp_page, 'Production Companies<[^>]+', '</ul>')
    tmp = string.split(tmp, 'href="')
    for entry in tmp:
    entry = gutils.trim(entry, '>', '<')
    if entry:
    self.studio = self.studio + entry + ', '
    if self.studio:
    self.studio = self.studio[:-2]
    def get_o_site(self):
    self.o_site = ''
    def get_site(self):
    self.site = "http://www.imdb.com/title/tt%s" % self.movie_id
    def get_trailer(self):
    self.trailer = "http://www.imdb.com/title/tt%s/trailers" % self.movie_id
    def get_country(self):
    self.country = '<' + gutils.trim(self.page, 'Country:<', '</div>')
    self.country = re.sub('[ ]+', ' ', re.sub('[\n]+', '', self.country))
    def get_rating(self):
    pattern = re.compile('>([0-9]([.][0-9])*)(<[^>]+>)+[/](<[^>]+>)[0-9][0-9]<')
    result = pattern.search(self.page)
    if result:
    self.rating = result.groups()[0]
    if self.rating:
    try:
    self.rating = round(float(self.rating), 0)
    except Exception, e:
    self.rating = 0
    else:
    self.rating = 0
    def get_notes(self):
    self.notes = ''
    language = gutils.regextrim(self.page, 'Language:<[^>]+>', '</div>')
    language = gutils.strip_tags(language)
    language = re.sub('[\n]+', '', language)
    language = re.sub('[ ]+', ' ', language)
    language = language.strip()
    color = gutils.regextrim(self.page, 'Color:<[^>]+>', '</div>')
    color = gutils.strip_tags(color)
    color = re.sub('[\n]+', '', color)
    color = re.sub('[ ]+', ' ', color)
    color = color.strip()
    sound = gutils.regextrim(self.page, 'Sound Mix:<[^>]+>', '</div>')
    sound = gutils.strip_tags(sound)
    sound = re.sub('[\n]+', '', sound)
    sound = re.sub('[ ]+', ' ', sound)
    sound = sound.strip()
    tagline = gutils.regextrim(self.tagl_page, 'Taglines for', 'Related Links')
    index = string.rfind(tagline, '</div>')
    if index > -1:
    taglines = string.split(tagline[index:], '<hr')
    tagline = ''
    for entry in taglines:
    entry = gutils.clean(gutils.after(entry, '>'))
    if entry:
    tagline = tagline + entry + '\n'
    else:
    tagline = ''
    if len(language)>0:
    self.notes = "%s: %s\n" %(_('Language'), language)
    if len(sound)>0:
    self.notes += "%s: %s\n" %(gutils.strip_tags(_('<b>Audio</b>')), sound)
    if len(color)>0:
    self.notes += "%s: %s\n" %(_('Color'), color)
    if len(tagline)>0:
    self.notes += "%s: %s\n" %('Tagline', tagline)
    def get_screenplay(self):
    self.screenplay = ''
    #benel 25.10.2013 parts = re.split('<a href=', gutils.trim(self.cast_page, '>Writing credits<', '</table>'))
    parts = re.split('=ttfc_fc_wr."', gutils.trim(self.cast_page, '>Writing Credits', '</table>'))
    if len(parts) > 1:
    for part in parts[1:]:
    screenplay = gutils.trim(part, '>', '<')
    if screenplay == 'WGA':
    continue
    screenplay = screenplay.replace(' (written by)', '')
    screenplay = screenplay.replace(' and<', '<')
    #benel 25.10.2013 self.screenplay = self.screenplay + screenplay + ', '
    self.screenplay = self.screenplay + screenplay[:-1] + ', '
    if len(self.screenplay) > 2:
    self.screenplay = self.screenplay[0:len(self.screenplay) - 2]
    def get_cameraman(self):
    self.cameraman = ''
    #benel 25.10.2013 tmp = gutils.regextrim(self.cast_page, 'Cinematography by&nbsp;<[^>]+', '</table>')
    tmp = gutils.regextrim(self.cast_page, 'Cinematography by', '</table>')
    #benel 25.10.2013 tmp = string.split(tmp, 'href="')
    tmp = string.split(tmp, 'ttfc_fc_cr')
    for entry in tmp:
    entry = gutils.trim(entry, '>', '<')
    if entry:
    #benel 25.10.2013 self.cameraman = self.cameraman + entry + ', '
    self.cameraman = self.cameraman[:-1] + entry + ', '
    if self.cameraman:
    self.cameraman = self.cameraman[:-2]
    def __before_more(self, data):
    for element in ['>See more<', '>more<', '>Full summary<', '>Full synopsis<']:
    tmp = string.find(data, element)
    if tmp>0:
    data = data[:tmp] + '>'
    return data
    class SearchPlugin(movie.SearchMovie):
    PATTERN = re.compile(r"""<a href=['"]/title/tt([0-9]+)/[^>]+[>](.*?)</td>""")
    PATTERN_DIRECT = re.compile(r"""value="/title/tt([0-9]+)""")
    def __init__(self):
    # http://www.imdb.com/List?words=
    # finds every title sorted alphabetically, first results are with a quote at
    # the beginning (episodes from tv series), no popular results at first
    # http://www.imdb.com/find?more=tt;q=
    # finds a whole bunch of results. if you look for "Rocky" you will get 903 results.
    # http://www.imdb.com/find?s=tt;q=
    # seems to give the best results. 88 results for "Rocky", popular titles first.
    self.original_url_search = 'http://www.imdb.com/find?s=tt&q='
    self.translated_url_search = 'http://www.imdb.com/find?s=tt&q='
    self.encode = 'utf8'
    def search(self,parent_window):
    if not self.open_search(parent_window):
    return None
    return self.page
    def get_searches(self):
    elements = string.split(self.page, '<tr')
    if len(elements):
    for element in elements[1:]:
    match = self.PATTERN.findall(element)
    if len(match) > 1:
    tmp = re.sub('^[0-9]+[.]', '', gutils.clean(match[1][1]))
    self.ids.append(match[1][0])
    self.titles.append(tmp)
    if len(self.ids) < 2:
    # try to find a direct result
    match = self.PATTERN_DIRECT.findall(self.page)
    if len(match) > 0:
    self.ids.append(match[0])
    # Plugin Test
    class SearchPluginTest(SearchPlugin):
    # Configuration for automated tests:
    # dict { movie_id -> [ expected result count for original url, expected result count for translated url ] }
    test_configuration = {
    'Rocky Balboa' : [ 10, 10 ],
    'Ein glückliches Jahr' : [ 3, 3 ]
    class PluginTest:
    # Configuration for automated tests:
    # dict { movie_id -> dict { arribute -> value } }
    # value: * True/False if attribute only should be tested for any value
    # * or the expected value
    test_configuration = {
    '0138097' : {
    'title' : 'Shakespeare in Love',
    'o_title' : 'Shakespeare in Love',
    'director' : 'John Madden',
    'plot' : True,
    'cast' : 'Geoffrey Rush' + _(' as ') + 'Philip Henslowe\n\
    Tom Wilkinson' + _(' as ') + 'Hugh Fennyman\n\
    Steven O\'Donnell' + _(' as ') + 'Lambert\n\
    Tim McMullan' + _(' as ') + 'Frees (as Tim McMullen)\n\
    Joseph Fiennes' + _(' as ') + 'Will Shakespeare\n\
    Steven Beard' + _(' as ') + 'Makepeace - the Preacher\n\
    Antony Sher' + _(' as ') + 'Dr. Moth\n\
    Patrick Barlow' + _(' as ') + 'Will Kempe\n\
    Martin Clunes' + _(' as ') + 'Richard Burbage\n\
    Sandra Reinton' + _(' as ') + 'Rosaline\n\
    Simon Callow' + _(' as ') + 'Tilney - Master of the Revels\n\
    Judi Dench' + _(' as ') + 'Queen Elizabeth\n\
    Bridget McConnell' + _(' as ') + 'Lady in Waiting (as Bridget McConnel)\n\
    Georgie Glen' + _(' as ') + 'Lady in Waiting\n\
    Nicholas Boulton' + _(' as ') + 'Henry Condell\n\
    Gwyneth Paltrow' + _(' as ') + 'Viola De Lesseps\n\
    Imelda Staunton' + _(' as ') + 'Nurse\n\
    Colin Firth' + _(' as ') + 'Lord Wessex\n\
    Desmond McNamara' + _(' as ') + 'Crier\n\
    Barnaby Kay' + _(' as ') + 'Nol\n\
    Jim Carter' + _(' as ') + 'Ralph Bashford\n\
    Paul Bigley' + _(' as ') + 'Peter - the Stage Manager\n\
    Jason Round' + _(' as ') + 'Actor in Tavern\n\
    Rupert Farley' + _(' as ') + 'Barman\n\
    Adam Barker' + _(' as ') + 'First Auditionee\n\
    Joe Roberts' + _(' as ') + 'John Webster\n\
    Harry Gostelow' + _(' as ') + 'Second Auditionee\n\
    Alan Cody' + _(' as ') + 'Third Auditionee\n\
    Mark Williams' + _(' as ') + 'Wabash\n\
    David Curtiz' + _(' as ') + 'John Hemmings\n\
    Gregor Truter' + _(' as ') + 'James Hemmings\n\
    Simon Day' + _(' as ') + 'First Boatman\n\
    Jill Baker' + _(' as ') + 'Lady De Lesseps\n\
    Amber Glossop' + _(' as ') + 'Scullery Maid\n\
    Robin Davies' + _(' as ') + 'Master Plum\n\
    Hywel Simons' + _(' as ') + 'Servant\n\
    Nicholas Le Prevost' + _(' as ') + 'Sir Robert De Lesseps\n\
    Ben Affleck' + _(' as ') + 'Ned Alleyn\n\
    Timothy Kightley' + _(' as ') + 'Edward Pope\n\
    Mark Saban' + _(' as ') + 'Augustine Philips\n\
    Bob Barrett' + _(' as ') + 'George Bryan\n\
    Roger Morlidge' + _(' as ') + 'James Armitage\n\
    Daniel Brocklebank' + _(' as ') + 'Sam Gosse\n\
    Roger Frost' + _(' as ') + 'Second Boatman\n\
    Rebecca Charles' + _(' as ') + 'Chambermaid\n\
    Richard Gold' + _(' as ') + 'Lord in Waiting\n\
    Rachel Clarke' + _(' as ') + 'First Whore\n\
    Lucy Speed' + _(' as ') + 'Second Whore\n\
    Patricia Potter' + _(' as ') + 'Third Whore\n\
    John Ramm' + _(' as ') + 'Makepeace\'s Neighbor\n\
    Martin Neely' + _(' as ') + 'Paris / Lady Montague (as Martin Neeley)\n\
    The Choir of St. George\'s School in Windsor' + _(' as ') + 'Choir (as The Choir of St. George\'s School Windsor) rest of cast listed alphabetically:\n\
    Jason Canning' + _(' as ') + 'Nobleman (uncredited)\n\
    Kelley Costigan' + _(' as ') + 'Theatregoer (uncredited)\n\
    Rupert Everett' + _(' as ') + 'Christopher Marlowe (uncredited)\n\
    John Inman' + _(' as ') + 'Character Player (uncredited)',
    'country' : 'USA',
    'genre' : 'Comedy | Drama | Romance',
    'classification' : False,
    'studio' : 'Universal Pictures, Miramax Films, Bedford Falls Productions',
    'o_site' : False,
    'site' : 'http://www.imdb.com/title/tt0138097',
    'trailer' : 'http://www.imdb.com/title/tt0138097/trailers',
    'year' : 1998,
    'notes' : _('Language') + ': English\n'\
    + _('Audio') + ': Dolby Digital\n'\
    + _('Color') + ': Color\n\
    Tagline: ...A Comedy About the Greatest Love Story Almost Never Told...\n\
    Love is the only inspiration',
    'runtime' : 123,
    'image' : True,
    'rating' : 7,
    'screenplay' : 'Marc Norman, Tom Stoppard',
    'cameraman' : 'Richard Greatrex',
    'barcode' : False
    Hope this helps someone ...
    Ben
    Last edited by ben-arch (2013-10-30 15:38:11)

    The beauty of open source. Maybe ask the maintainers of griffith AUR packages to apply your patch.

  • [svn:osmf:] 15607: Partial fix #2 for FM-719.

    Revision: 15607
    Revision: 15607
    Author:   [email protected]
    Date:     2010-04-20 12:37:41 -0700 (Tue, 20 Apr 2010)
    Log Message:
    Partial fix #2 for FM-719.  This fix ensures that when seeking in and out of the child of a parallel element, that the play state is updated according to the play state of the composition.  For example, if there are two parallel children of duration 10 and 20 seconds, and the parallel element is playing, and you seek from 15 to 5, then the shorter child should resume playback.  (And similar for when paused.)  Bug detected when verifying the (soon to be checked in) fix for FM-719, and seeking in and out of the section of video where the image should be displayed.  Added unit tests for these cases as well.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-719
        http://bugs.adobe.com/jira/browse/FM-719
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/ParallelSeekTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestParallelElementWithSeekTrait.as

  • [svn:osmf:] 14007: Partial fix for FM-383: ProxyElement needs to dispatch traitRemove/ traitAdd event pairs when the proxy adds or removes a trait that also exists on the proxied element .

    Revision: 14007
    Revision: 14007
    Author:   [email protected]
    Date:     2010-02-05 11:54:43 -0800 (Fri, 05 Feb 2010)
    Log Message:
    Partial fix for FM-383:  ProxyElement needs to dispatch traitRemove/traitAdd event pairs when the proxy adds or removes a trait that also exists on the proxied element.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-383
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/media/MediaElement.as
        osmf/trunk/framework/OSMF/org/osmf/proxies/ProxyElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/proxies/TestProxyElementAsDynamicProxy.as

  • Partial update occassionally hangs during wget - admin-op-update

    Since we upgraded our ITL and MDEX Windows servers to 2008 R2 Enterprise, once in a while our Partial updates will hang during the wget admin-op-update process. When this happens, the lock is not released and the next Partial update fails to start because of the lock. Each time, I have to release the lock, and then everything is fine until it happens again (about once a week, different times).
    We are on MDEX version 6.1.3.
    I don't see any errors in the logs; the partialupdate.out file shows the line:
    Starting shell utility 'wget_-http-127-0-0-1-17000-admin-op-update-,
    then the next line is the start of the next partial update:
    Loading beanshell.imports .......
    which finally ends in :
    Dec 22, 2012 1:30:08 PM sun.reflect.NativeMethodAccessorImpl invoke0
    INFO: Starting partial update script.
    Dec 22, 2012 1:30:08 PM sun.reflect.NativeMethodAccessorImpl invoke0
    WARNING: Failed to obtain lock.
    Any ideas as to why this is happening?
    Thanks

    Wget does not get shipped with platform services any more.
    Copy the Wget utility to platformservices/6.2.x/bin.

  • [svn] 4376: Partial fix to allow Array child of IVisualElementContainer to leverage includeIn (to avoid regression when

    Revision: 4376
    Author: [email protected]
    Date: 2008-12-22 11:22:17 -0800 (Mon, 22 Dec 2008)
    Log Message:
    Partial fix to allow Array child of IVisualElementContainer to leverage includeIn (to avoid regression when
    Ryan changes Group's default property type to Array from Object).
    Bugs: SDK-18522
    QE Notes: None
    Doc Notes: None
    Tests: checkintests, States
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18522
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/StatesModel.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/ValueInitializer.ja va

    Your CSS is unnecessarily verbose and redundant - many styles are simply restatements of the default.  Nevertheless, try changing this -
    .twoColFixRtHdr #container {
    width: 1000px; /* this overrides the text-align: center on the body element. */
    font-family: Arial, Helvetica, sans-serif, Verdana;
    font-size: 10px;
    font-style: normal;
    line-height: 14px;
    font-weight: 400;
    color: #000000;
    background-attachment: scroll;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    to this -
    .twoColFixRtHdr #container {
    width: 1000px; /* this overrides the text-align: center on the body element. */
    font-family: Arial, Helvetica, sans-serif, Verdana;
    font-size: 10px;
    line-height: 14px;
    color: #000000;
    background-color: #FFFFFF;
    margin:0 auto;
    (the missing styles are unnecessary)
    and see what happens.
    - The links I have set up appear to be clicking through but to old pages or no page at all - I presume this is only happening though because I don't have any pages loaded up to the live link above?
    Yes - that's the case.

  • Partial fixed asset transfers

    Hi Experts,
    In partial fixed asset transfers, why do we need to indicate whether it is a prior-year acquisition or current year acquisition? Why cannot the system pick this information?
    Really appreciate your insight in this regard.
    Thanks in advance,
    Em Jay

    Hi Alex,
    Thanks for your reply. But I need more clarification, here the assets need to have new cost centers updated in their master data.
    Will ABUMN help in this case? I mean this is master data change in assets so how can we change it by transfer?
    Thanks

  • [svn:fx-trunk] 7716: Partial fix for SDK-21182.

    Revision: 7716
    Author:   [email protected]
    Date:     2009-06-10 08:59:13 -0700 (Wed, 10 Jun 2009)
    Log Message:
    Partial fix for SDK-21182. We now set the default compatibility version to the current version and thus the compatibility version string will no longer be null by default (but would be the current version if no override was set). This also means the compiler now matches the ActionScript FlexVersion class.
    This change does not address the issue of revision/minor/major-version fallback in order to select the next most appropriate defaults-x.y.z.css file for any given version.
    Also updated flex-jars eclipse project classpath to reflect recent Batik jar consolidation.
    QE: Yes, if we didn't previously, please change any negative test cases that were checking for --compatibility-version=4 as this is still valid (and is the default).
    Doc: No
    Checkintests: Pass
    Reviewer: Paul
    Bugs:
    SDK-21182 - Fix logic surrounding compatibility version and SWC default.css selection during PreLink
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21182
        http://bugs.adobe.com/jira/browse/SDK-21182
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java

  • [svn:fx-3.x] 7715: Partial fix for SDK-21182.

    Revision: 7715
    Author:   [email protected]
    Date:     2009-06-10 08:54:33 -0700 (Wed, 10 Jun 2009)
    Log Message:
    Partial fix for SDK-21182. We now set the default compatibility version to the current version and thus the compatibility version string will no longer be null by default (but would be the current version if no override was set). This also means the compiler now matches the ActionScript FlexVersion class.
    This change does not address the issue of revision/minor/major version fallback in selecting the next most appropriate defaults-x.y.z.css file for any given version.
    Also updated flex-jars eclipse project classpath to reflect recent Batik jar consolidation.
    QE: Yes, please change any negative test cases that were checking for --compatibility-version=3 as this is now valid.
    Doc: No
    Checkintests: Pass
    Reviewer: Paul
    Bugs:
    SDK-21182 - Fix logic surrounding compatibility version and SWC default.css selection during PreLink
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21182
        http://bugs.adobe.com/jira/browse/SDK-21182
    Modified Paths:
        flex/sdk/branches/3.x/development/eclipse/java/flex-jars/.classpath
        flex/sdk/branches/3.x/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.j ava

  • Moving from 32-bit to a 64-bit OS how will this impact ebs upgrade process

    we are planning to upgrade from ebs 11.5.10.2 to r12.1 .3
    My concern is since we will be moving from 32-bit to a 64-bit OS how will this impact our upgrade process?

    Hi;
    we are planning to upgrade from ebs 11.5.10.2 to r12.1 .3
    My concern is since we will be moving from 32-bit to a 64-bit OS how will this impact our upgrade process?I assume your EBS single machine. EBS r11 is not certified wiht 64 bit OS.So you need to upgrade first than migrate it 64 bit
    See:
    32bit to 64 bit migration-EBS-Linux
    EBS r12 migrate 32-bit to 64-bit.
    32 bit to 64 bit 11i migrate
    Migrattion of E-Business Suite.
    Regard
    Helios

  • Thunderbird hangs when moving messages to sent and other folders

    Now and then (sometimes once a week - sometimes multiple times per day) Thunderbird looses the ability to move messages to folders. Typical symptoms are:
    Send a message - message sends fine - then it hangs forever with the dialog box saying that it is copying the message to the sent folder. (I have allowed this to sit for hours - it never completes.)
    If I cancel copying it to Sent, it wants to copy to Drafts - but it hangs doing that too.
    Filters that move messages don't work.
    The mail archiving feature doesn't work. (no error message no hang - simply does nothing.)
    Junk controls mark messages as junk but don't move the messages to the junk folder.
    All of the above can be remedied by simply shutting down Thunderbird and restarting it. Then it will be fine for anywhere from 5 hours to 20 days before this occurs again.
    I am using a pop account with local folders. All of these moves are local to my PC. I have only been using Thunderbird for a few months so all of my folders have small numbers of messages. My drafts folder typically has zero messages (and the file is zero bytes) and it still can't copy to it.
    I am running Windows 7 64 bit - installed about 3 months ago, Thunderbird 24.6.0. (The problem occurred with the previous version of Thunderbird as well.) Lots of available disk space.
    Some non-default settings: Thunderbird is set to use a global inbox (local folders) and the local folders have been relocated from the default location to my user directory on drive D: TB is set to not check for email automatically or on startup. There are two accounts.
    I'm using the enigmail, quicktext and allow-html-temp extensions. Though I have typically not used any of these around the time that it starts hanging. Since it can take weeks to appear, it's difficult to run safe mode or extension-less for such long periods.

    No.
    I recently had a period of about a month without it. And another time it was once a day for 3 days. (People in other threads have said it happens to them multiple times per day.) Right before the long period without the problem I had an enigmail update and I thought that that might have cured it since it worked for so long, but then it came back.
    I was going to try the 31x series but early comments about it made me put that off. I'm still on 24.6. I browse the release notes now and then and see no mention of fixes for this and I've read a few other threads on the problem but haven't yet seen anyone claim that he found a fix that worked for a significant amount of time.
    By the way, my first indication that this had occurred again was that I checked for email and all my spams stayed in my inbox. So I restarted TB, ran the junk controls, and they all moved to the junk folder. There is no consistency on which folder is being accessed when the problem is first seen. And there is never any need to rebuild anything to get it working again. TB just occasionally looses the ability to move messages in general. Once it happens, you can't move any message anywhere. Until you restart TB and the all is fine again. Until next time. All of this in on POP so this is just moving data around local files.

  • Finder hangs when moving files around in Flash Drive

    Hello Apple Community! I just wanted to ask a question and a solution to my experience on OS X.
    Recently, I started to experience Finder hanging on me when I move around files from in and out my flash drive.
    What's happening in the picture was me trying to move the ebook into the 'cmpsci3' folder, but Finder hangs from the point.
    I moved the Finder window and the icon just stays there.
    There is nothing really wrong with the movement of files; the moving does work. The problem is that the small file operations
    window disappeared and Finder just hangs there.
    I tried two solutions already:
         1. Remove the com.apple.Finder.plist file from ~/Library/Preferences
         2. Repair disk permissions on both OS X drive and USB03FD (my flash drive).
    Unlucky for me, the problem isn't fixed. I tried to tackle the problem myself and sometimes I see two Finder processes running
    in the Force Quit Applications dialog. I followed the instructions from this threadTwo Instances of Finder Running, but that does
    not work either.
    I looked around and saw that making a new user would fix the problem. I would like the community's advice on how to fix this problem
    before I do anything drastic.
    Thanks for reading and helping me out!

    I decided to go the long way and move everything where I wanted it to be.  I moved everything around in Bridge, I then synchronized the folder to reflect how it should.  So far so good!
    Thank you all for your help and interest, I really appreciate everything!
    I do have one more question now, I will also start a new thread to see what else I can get, but again thank you!
    I have syncroniced the folder after making the changes, and due to the problem I was having last time I did it again just to double check.  It said there were over2k photos missing so I clicked sync, let it do its thing.  And just to tripple check I ran it again and it is saying the same thing, missing over 2k photos.  What does this mean?

  • ITunes hanging after moving library to wifi drive

    I have MacBook Pro (bought Feb 2011, upgraded to Lion), Airport Extreme and a new external hard drive connected through Airport Extreme. Today, I moved my library to the remote drive and imported a HUGE collection into iTunes (some 25+ GB of songs). While importing 1655th song out of 4200+ songs, iTunes hanged and I had to 'force quit' the process. Since then, iTunes just keeps hanging everytime I start the program.
    Connectivity to the wifi drive is not a problem, as I am sitting practically right next to it.
    While trying several things, I upgraded iTunes to the latest version (10.4.1), but the issue continues.
    Do I just leave the MacBook next to AE to give itunes a chance to sync the huge collection? Is the collection corrupted and needs to be made again (how do I do that)?
    Please help!!
    Thanks
    Harmeet

    Move it all back to the C: drive to exactly where it was before, and follow these directions to fix it.
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive

  • How do I fix my hang up problem

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    every since I updated my Flash player to adobe10.045 fox fire has been hanging up loading most web site and or page. It can take as long as 5 hour to get a page loaded completely I have followed all of you suggestions on how to correct this problem I have even uninstalled and reinstall firefox twice. with no change in results. After a reinstall fire fox many load correctly for a few hours but if I shut off the comp. when I log back on I am back to the start of slow loading and total hang up to the point I must use Windows task master to shut done Fire Fox
    == This happened
    ==
    Every time Firefox opened
    == April 30, 2010
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Microsoft .NET Framework Assistant
    1.2.1
    true
    {20a82645-c095-46ed-80e3-08825760534b}
    Java Quick Starter
    1.0
    true
    [email protected]
    Modified Preferences
    Name
    Value
    browser.history_expire_days
    3
    browser.history_expire_days.mirror
    3
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage_override.mstone
    rv:1.9.2.3
    extensions.lastAppVersion
    3.6.3
    general.useragent.extra.microsoftdotnet
    ( .NET CLR 3.5.30729)
    network.cookie.prefsMigrated
    true
    network.http.proxy.version
    1.0
    places.last_vacuum
    1274235964
    privacy.cpd.downloads
    false
    privacy.cpd.formdata
    false
    privacy.cpd.history
    false
    privacy.sanitize.migrateFx3Prefs
    true
    privacy.sanitize.timeSpan
    0
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-Default Plug-in
    *Shockwave Flash 10.0 r45
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *MetaStream 3 Plugin r4
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object

    Hello Dorothy.
    This kind of issues are, unfortunately, more common and the we'd like. Thankfully, 99% of the cases are very easy to solve. However, you do need to diagnose what your exact problem is. Do this:
    #run Firefox in safe-mode to disable all extensions and plugins. If this fixes your issues, be them with RAM or CPU usage, then you know it's a problem with plugins or extensions. Proceed to number 2. If safe-mode doesn't fix the issues, then read bellow, after this list;
    #update all extensions and plugins in your Firefox. If this doesn't solve the issues, proceed to the following number;
    #disable all extensions and plugins in your Firefox (not running safe-mode). Being certain that, as in safe-mode, the problems you're having have gone away, enable one plugin at a time. You should be certain that you WANT that plugin to be enabled, so keep your overall number of plugins as low as possible. When you encounter the problems, you know you've found a problematic plugin, so disable it for good. Keep enabling all plugins (except problematic ones) until you've gone through them all.
    #enable one extension at a time. Again, be certain that you WANT that extension to be enabled, so keep your overall number of extensions as low as possible. When you encounter the problems, you know you've found a problematic extension, so disable it for good. Keep enabling all your extensions (except problematic ones) until you've gone through them all;
    #you're done! You've fixed your problems with problematic add-ons.
    Ok, if disabling all extensions and plugins through safe-mode didn't work to bring Firefox's CPU and RAM usage to good levels, then you have different issue. The most likely scenario is that you have a third party software running on your computer that is messing with Firefox. Do as follows:
    #do a virus/malware check on your computer. If this doesn't fix it, proceed;
    #disable all software running in the background that you don't want to have running in the background (in windows, this is done by pressing WINDOWS+R in your keyboard, typing "msconfig" (without the commas) and pressing enter. Now, under the "Startup" tab, you can uncheck the software you don't want, and reboot your system for changes to take effect. If you're unsure of what software you want running, ask someone with more experience). If this doesn't fix your issues with Firefox, proceed;
    #check your firewall/antivirus/security suite for enabled functions/features that you don't want and/or may be conflicting with Firefox. You'll find that these features are most likely tied to Internet Security features, such as link scanners or URL checkers and the like. If you're not sure they are conflicting with Firefox, simply try to disable them to see whether or not that's true. As long as you don't browse the web with your antivirus completely off and your firewall completely turned off, there should be no problems. If this doesn't solve the issues, proceed to the following number;
    #check your operating system security options, mainly advanced options that are not configured by default. While it's very unlikely that this may be the cause of the problem (after all, it's the last item on the list), it's remotely possible. If this doesn't work, proceed to the following point;
    #clean up your OS registry, using appropriate software. If this doesn't do it, I'm out of ideas. Except make sure you've followed my instructions correctly.

Maybe you are looking for