RichEditableText: extend and some bugs

I have the following question for Flex 4.0.0.7219:
1. How can I assign a IFormatResolver to richtEditableText.textFlow.formatResolver?
The RichEditableText class does not handle format resolvers. So I need to assign it directly to textFlow like:
        override protected function commitProperties():void {
            super.commitProperties()
            textFlow.formatResolver = new CustomFormatResolver()
I think dispatching an event when the instance of textFlow changes was an improvement over this hack. The event also allows for perfomance improvements in custom components that use RichtEditableText.
2. Is supporting html import/export on the roadmap?
3. Bug 1: Export ignores spaces:
    <ns:RichEditableText
        id="spaceEditor"
        text=" hallo "
        />
        spaceEditor.export.toString() should render "...<span> hallo </span>..." but does "...<span>hallo</span>..."
Fix: Use XML.ignoreWhitespace = false; etc as describe in http://forums.adobe.com/thread/230089 . Though maybe the TLF team might fix it in their code: http://forums.adobe.com/message/2030394#2030394 .
4. Bug 2: Setting the content causes a second return.
5.1 Set e.g. <ns:RichEditableText content="hallo" /> (content=<TextFlow .... </TextFlow> has the same effect)
5.2 Click into the richEditableText and add a return on your keyboard.
5.3 Effect: there are 2 returns. The result of an export is "...<p><span></span></p><p><span></span></p>..." instead of "...<p><span></span></p>..."
5. Bug 3: richEditableText.autosize="true";richEditableText.percentWidth=100; is broken but there was a refactoring since 4.0.0.7219. So I hope the current build is working...
If somebody confirms the bugs, I'll file them.
Marc

Thanks Gorden, I created some work for you
1. Please file an enhancement request asking that this be made easier.
http://bugs.adobe.com/jira/browse/SDK-21838
2. TLF's TextFilter class supports importers and exporters for HTML_FORMAT, but I haven't tried them and don't know how robust they are.
I think the HTML export in TLF is not yet stable. The thing is that once
it is stable there is pretty much no way to insert the import
functionality into RichEditableText without rewriting most of the
component. In my opinion, it should be either integrated into
RichEditableText even at this early stage or RichEditableText should be
refactored to allow extending it in an easier way.
3. I'm aware of this bug but I'm not sure a bug has been filed for it. Could you please file one?
http://bugs.adobe.com/jira/browse/SDK-21834
4. Ditto with 3.
http://bugs.adobe.com/jira/browse/SDK-21836
5. I'm not aware of this. Please be sure to file a bug.
http://bugs.adobe.com/jira/browse/SDK-21837
BTW, there is a another major refactoring coming this week. Adobe's Platform API Review Board has reviewed all new Spark APIs and suggested a number of changes.
Thanks for the insight, I appreciate.
Marc

Similar Messages

  • [svn:fx-trunk] 10075: Cleanups from the spark text changes and some bug fixes for VideoElement.

    Revision: 10075
    Author:   [email protected]
    Date:     2009-09-08 18:01:58 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Cleanups from the spark text changes and some bug fixes for VideoElement.  Also some PARB changes for UIComponent.
    TitleBar: Changing the skin part type from Label to Textbase
    UIComponent: skipMeasure()->canSkipMeasurement() to be in line with GraphicElement.  This has been PARB approved.
    UIComponent: same with hasComplexLayoutMatrix...this replaces hasDeltaIdentityTransform.  This has been PARB approved.
    StyleProtoChain: cleanup around what interfaces to use
    TextBase: clean up code that?\226?\128?\153s no longer needed.
    VideoElement: Fixing 4 bugs:
    SDK-22824: sourceLastPlayed keeps track of what video file we?\226?\128?\153ve called play() with last.  This way if a user pauses the video and wants to start it up again at the same point, we can call play(null) on the underlying FLVPlayback videoPlayer.  However, anytime the souce changes, we want to null out sourceLastPlayed.  This was causing a bug when someone set the source to null and then reset it to it?\226?\128?\153s previous value.
    SDK-23034 (GUMBO_PRIORITY): This deals with some FLVPlayback quirks around sizing.  I had put in a fix so we weren?\226?\128?\153t setting width/height on the underlying videoPlayer too many times, but apparently we need to make sure it always gets called once.  Hopefully when switching to Strobe we can cleanup this logic...I put a FIXME in to do this.
    SDK-21947/ SDK-22533 - some video files don?\226?\128?\153t always send out a metadata event.  I?\226?\128?\153m not quite sure why this is, but in case this happens, we do a check in the ready handler to see whether we should call invalidateSize() to make sure it gets sized properly.
    QE notes:-
    Doc notes:-
    Bugs: SDK-22824, SDK-23034, SDK-21947, SDK-22533
    Reviewer: Glenn, Corey
    Tests run: checkintests, Button, GraphicTags, VideoElement, and VideoPlayer (some VideoPlayer were failing, but I think it should be fine)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/UITLFTextField.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Skin.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

  • Feedback App Not Working and Some Bug Reports

    Tecnical Preview Build 9840 =Upgrade to==>9860==>9879
    >Hi. when i try to open this app, its opening black and then freeze. I was going to report a bug with this app but its not working. So i ill use here. Here visual bug :

    Thank you very much for the quick reply. It is indeed working again (although I still never see any feedback from other users that I could upvote)

  • Just got some bugs with Dock and Dashboard

    Hi!
    Been using my mac for 1 year now. Sudden some bugs just came by.
    I was using two widgets; "Ordbok" and "TriTrans".
    When I now try to use TriTrans I get this: http://bildr.no/view/75953 and I can't enter a search.
    When I try to use Ordbok i get this: http://bildr.no/view/75954
    I tried to make a new account just to see if I got the same problem and I sudden did. Then I went back to my main account and deleted the Dock, Desktop and Dashboard pref files (in Library/Preferences). Rebooted and tried again. Didn't work.
    When I made a new account I also noticed that the Dock had an icon with the "question mark" (this ting: ?). When I hovered it I got: "iMovie". Some icons to the left I got a working "iMovie HD". Where does the iMovie (wannabe) icon come from? (It was a new account).
    Anyways, someone now how to fix some of these?
    Thanks!
     MacBook   Mac OS X (10.4.9)   2 Ghz Intel Core Duo, 1 Gb RAM

    Ahh, that solves my widget problem. Thanks!
    Btw, someone who got any idea of the "question mark" icon I get in the dock when deleting the Dock config file or add new user? It says "iMovie" but beside it I got the "iMovie HD" icon, working.

  • [svn:fx-trunk] 11810: Fixing up some logic around pauseWhenHidden ( there were some bugs) and also changing some logic around enabling/ disabling.

    Revision: 11810
    Revision: 11810
    Author:   [email protected]
    Date:     2009-11-13 17:07:56 -0800 (Fri, 13 Nov 2009)
    Log Message:
    Fixing up some logic around pauseWhenHidden (there were some bugs) and also changing some logic around enabling/disabling.  Also fixing a small documentation bug on VideoPlayer2.scaleMode.
    When a video component (or one of its ancestors) becomes disabled, the video pauses.  When it becomes re-enabled, we do not play the video.  This behavior is baked in to VideoDisplay and does not depend on the pauseWhenHidden flag.
    QE notes: -
    Doc notes: -
    Bugs: SDK-24182, SDK-24181, SDK-24193
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24182
        http://bugs.adobe.com/jira/browse/SDK-24181
        http://bugs.adobe.com/jira/browse/SDK-24193
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoDisplay.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as

    Thanks Erik,
    If nothing else, this huge list of updates and fixes, shows clearly that the Logic Dev team is working hard on fixing and improving LPX to a major degree.... and from the list of fixes done.. show they do read the bug reports submitted!
    As an aside....
    I recall how all the 'naysayers' prior to LPX (and in some cases, since...)  were proclaiming how Logic was dead, the team was being disbanded, we won't see any further development, the Dev team doesn't listen or care... and so on....... I wonder where those people are now?

  • Keyword Bugs and Some Keywording Improvement / Feature Suggestions

    Tagging Bugs and Some Improvement / Feature Suggestions
    Please excuse where I should use the word Tag or Keyword or vice versa!
    1.       BUG?    If a tag synonym is added or changed then all affected photos should be marked for re-publish.  I do not think this currently happens.   Should this possibly be considered a bug?
    2.       BUG?    When viewing a smart collection in a Flickr publish service and a new tag is added to a photo it is correctly moved to the “requires re-publish” section.   However … the thumb selection in the grid moves to the next photo, the loop view remains on the photo just tagged and the key wording still reflects the just tagged photo.    The selection shown in the grid appears to be wrong.      When working quickly this can result in tagging errors as the user looking on the grid believes he is working on the next highlighted photo in the grid.      This is surely a bug?
    3.       BUG?      A minor point and I realise this is probably not the correct way to do things … but a double word synonym entered with quotes for example “Ice Climbing” will create two tags “Ice” and “Climbing” at the flicker end of things.    Removal of this synonym and forcing a re-publish does not delete these two tags at the flicker end of things.    I may have miss-understood, but perhaps it is best for LR not to allow quoted tags? 
    4.       SUGGESTION      An easier and more powerful way to review tagging of current photos should be provided whereby it is possible to clearly see the current tagging of a photo and have immediate access to the keyword list at the same time to make corrections.    Having both the Keywording and Keyword List panels open in Library mode results in a lot of up and down scrolling for me and is a slightly inelegant UI in my opinion.   I would suggest it should at very least be possible to have the tags viewable in Loop info as an option - so long as no truncation is made and all tags visible.    Ideally a better way should be sought.
    5.       SUGGESTION      It would be very useful when reviewing tagging to select to show all photos in the currently selected folder or set which do not contain the selected tag.    Note, I don’t think this can be easily achieved by using a keyword filter and selecting all keywords and unselecting the tag of interest as the pictures may have many tags.    The same might be performed by textual based searches but this is inelegant and its slowness precludes a browsing approach.     For example – for me it would be useful to look at all my mountain shots in a trip which have not been tagged with “Glacier” and it will be immediately visually apparent where I need to make tagging corrections.    I would suggest a “Not” checkbox is made available on the top of each column in the library filter – this may also provide a great deal of power for other situations.
    6.       SUGGESTION      It would be useful to allow a means of showing all pictures with a certain tag but which have not been tagged yet with any children of said tag.   For example all pictures tagged with Glacier which I have not yet named the glacier by introducing a relevant child tag or selecting an existing child tag.    A similar situation occurs for wildlife and potentially many other scenarios … I would like to use a tag “Butterfly” which I can quickly use on my first pass… and then do the identification and child tagging on a second pass using appropriate filtering.   This allows for a step wise or “top down” approach to tag classifying things in a workflow.    I appreciate this can be achieved (as I do now) by using a child tag called “Unnamed butterfly” or “Unnamed Glacier” but it seems more powerful, elegant and generically applicable to be able to filter on a “not tagged with a child” basis.
    I apologise if I have missed the point on some existing functionality on any of these points and welcome any suggestions.

    This is a great post.
    I couldn't have written it myself better.
    I'm also in dying need of Korean input as I can't communicate with my Korean friends.
    But I second every point.
    I hope the tech teams are reading this.

  • Ios 6 have some bugs on ipod touch 4g like appstore search bug and accessibility which i cant go out from and crashes every where and imassages that the massge i send goes up and stick to the other messages plz help or do ios 6.1

    Ios 6 have some bugs on ipod touch 4g like appstore search bug and accessibility which i cant go out from and crashes every where and imassages that the massge i send goes up and stick to the other messages plz help or do ios 6.1 can i change my a4 chip plz i swear when i pressed done to submite this safari crashed

    Try to do a hard reboot (no data is lost) by holding down the home and power buttons at the same time untilyou see the Apple logo. Then, let go of both buttons. If that doesn't work, try restoring your iPod and do NOT restore from a backup. This will erase your data, but you can sync back everything except app data and settings from iTunes.

  • Lost all of my outlook groups, music and photos from my PC and iphone and Ipad2 when snycing up...Had to mannually reconfigure Outlook contacts - then deleted Iclound from everything - from other comments there are some bugs here and would warn others wh

    Lost email groups from outlook, photos and music from Iphone four and Ipad2 when snycing to Icloud.  Had to reconfgure Outlook Manually and then deleted Icloud. A warning to others that there are some bugs here or else it is not being exdplained properly to end users

    or... put your photos in "My Pictures" in My Documents, and viola, itunes syncs it to the iphone. only one sentence needed =/
    maybe im missing your point here, the long paragraph is mindboggling

  • MacBook Pro - Bluetooth and Speaker bug

    Hello,
    I've bought a new speaker (JBL Pulse) one day ago in order to use it like speaker for my Macbook pro.
    Here it is, I need to use a bluetooth connection if I want to use my JBL speaker. My bluetooth is able to see my speaker, so they are connected. Everything works fine but after 1min, I can't explain why but the connection between them is broken. And it does it every time.
    So first of all, I've tried other devices. My iphone is ok, my ipad is ok, I've tried with 2 other Macbook and everything works well. So I've concluded that the bug comes from my computer.
    I have a magic mouse so I thought that maybe my mouse could create some disruption. I have disconnected my mouse but the bug is still here.
    Then, I've called apple support.
    The guy told me to do many things like reboot the macbook and other stuff like that. At the end he told me to reinstall my OSX. So i did it and the bug is still here.
    Then I have even tried to delete the file inside my DD thinking that maybe it could help. but I have still the same problem.
    It's not the first time that I have some troubles with my bluetooth. Sometimes it happens that my magic mouse is disconnected while I'm using it. Or even sometimes when I try to click on the bluetooth icon it doesn't even answer. And I have to restart my computer.
    I'm a little bit frustrated because my macbook pro is in very good condition and it's a young one (almost one year). I don't have a lot of stuff inside.
    A friend tried to solve the problem but he thinks that the problem comes from my "network card".
    Thank you for your help and If you have any idea, do not hesitate Thanks
    I wanted to go to the apple store but still not open in my city... (frustrated again ^^) So I'm gonna call them Monday morning if I'm still without any solution

    I have the same problem with my older white Apple Wireless Extended Keyboard, which had been working fine with my 2009 iMac. But I experience the issue sporadically with my new Mac Mini. I've read reports of people resolving some BT issues by turning off "Allow Bluetooth devices to wake this computer" in the Advanced pane of the Bluetooth System Preferenes Pane.
    There are also people having the issue on iOS devices using various Apple BT keyboards. No help, but interesting to note that it's happening across various devices, keyboard models, and OSs.

  • Cisco Jabber for Windows in Extend and Connect mode and making outbound calls

    Hi guys,
    I've set up Cisco Jabber for Windows to use Extend and Connect to control a remote PBX endpoint. I've configured the required CTI-RD device, remote destinations, associated the users to the line and added the devices to end-user controlled device. The extend and connect part is working flawlessly without any issues. I'm able to receive inbound calls on the remote PBX endpoint and control the call (hold, resume, transfer etc.) using the Jabber call window that pops up.
    However, I'm unable to make any outbound calls via the Jabber client when in extend and Connect mode. Reading the Extend and Connect guide, I need to configure Dial Via Office (DVO) Reverse. So when the user initiates a Dial-Via-Office reverse call, CUCM calls and connect to the Extend and Connect device (CTI-RD). CUCM then calls and connects to the number the user dialled and finally connects the two call legs.
    After attempting to configure DVO-R for Jabber for Windows in Extend and Connect mode following the CUCM feature services guide, i'm unable to get any outbound calls working. From RTMT, i am receiving the following Termination Cause Code: (27) Destination out of order. What i also notice is that there is no calling number for that trace either. I would've thought that the calling party would've been the Enterprise Feature Access (EFA) number.
    Has anyone got this working or can provide some guidance?
    Thanks.

    Hi guys,
    I've set up Cisco Jabber for Windows to use Extend and Connect to control a remote PBX endpoint. I've configured the required CTI-RD device, remote destinations, associated the users to the line and added the devices to end-user controlled device. The extend and connect part is working flawlessly without any issues. I'm able to receive inbound calls on the remote PBX endpoint and control the call (hold, resume, transfer etc.) using the Jabber call window that pops up.
    However, I'm unable to make any outbound calls via the Jabber client when in extend and Connect mode. Reading the Extend and Connect guide, I need to configure Dial Via Office (DVO) Reverse. So when the user initiates a Dial-Via-Office reverse call, CUCM calls and connect to the Extend and Connect device (CTI-RD). CUCM then calls and connects to the number the user dialled and finally connects the two call legs.
    After attempting to configure DVO-R for Jabber for Windows in Extend and Connect mode following the CUCM feature services guide, i'm unable to get any outbound calls working. From RTMT, i am receiving the following Termination Cause Code: (27) Destination out of order. What i also notice is that there is no calling number for that trace either. I would've thought that the calling party would've been the Enterprise Feature Access (EFA) number.
    Has anyone got this working or can provide some guidance?
    Thanks.

  • ICloud changes my calendar colors.  I am no longer able to pick my own calendar colors.  This is due to some bug on iCloud.  FIX THIS PROBLEM IMMEDIATELY APPLE!!!  THIS IS RIDICULOUS.  iCloud should not force us to pick calendar colors.

    iCloud changes my calendar colors.  I am no longer able to pick my own calendar colors.  This is due to some bug on iCloud.  FIX THIS PROBLEM IMMEDIATELY APPLE!!!  THIS IS RIDICULOUS.  iCloud should not force us to pick calendar colors.  We should be able to pick our own!!!!!

    Same here, Calender keeps reverting to Purple a color I never ever even picked, screw you iCloud, you continue to annoy me and baffle me with your inadequecies

  • I bought an album and some of the songs did not download for the full length, but others did. why? and how do i fix it?

    i bought an album from the itunes store and some of the songs did not download the whole length... why? and how do i fix this?

    Delete the incomplete tracks from your library, sending them to recycle bin, then download them again from your purchased history. If the problem persists use the "report a problem" links from your account history to contact the iTunes store support staff.
    Are the incomplete tracks ones that you had previewed before purchasing the album? If so there may be a bug that needs reporting. See this recent post which explains why I ask the question...
    tt2

  • Audio and other Bugs in 2.0 - are they fixed in 3.0?

    I just completed creating an e-learning course using
    Captivate 2.0 that used quite a lot of graphics and video. The
    numbers of bugs I experienced when publishing to Flash in 2.0 were
    so substantial that the delivery date had to be delayed almost two
    months, much to the unhappiness of the client. I'll list the most
    frustrating problems and hopefully someone can tell me if these
    issues were fixed in 3.0. It's difficult for me to justify an
    upgrade if I'm going to run into the same horrible problems.
    I will start out by stating that I keep my project files
    under 20 slides and all the slides have audio. The slides are 800 x
    500 and none of the animations/video I'm using are more than 20
    secs long. I'm running Captivate 2.0 on a Dell laptop with an Intel
    Core 2 Duo, running Windows XP (with all the updates) and with 1 GB
    of RAM. I've upped my Virtual Memory to 5 GB. My machine meets all
    the specifications listed for Captivate 2.0, but I suspect that one
    really needs a much faster machine with a lot more memory to work
    at anything other than a snail's pace. I also make sure that no
    unused graphics or animations are left in a project's library and I
    defrag my hard drive at least once a day (if I don't Captivate
    crashes everytime I try and open or save a file).
    Problems:
    - It takes up to 15 minutes to open or close a file. It
    doesn't matter how big the file is. And the more files I open and
    close in Captivate in any session, the slower my machine gets and I
    evenutally have to restart it. It also takes 10-15 minutes to save
    some of my project files, whose sizes have ballooned for no reason
    (see below). If Captivate crashes during the save or even right
    after a file is saved, the file is corrupted and cannot be opened.
    I've had to redo work two or three times because of this problem.
    - A project file with 10 multiple choice quiz questions and
    two other simple slides (and only one brief audio file) is over 1
    GB in size. I can't have more than 10 quiz questions because the
    file sizes get so large that the program crashes before I can save
    the file. I also have a number of 3-slide projects with graphics,
    no animations, and some audio that are over 1 GB in size. But then
    I have 20-slide project files with a lot of video and graphics and
    audio that never go above 200 MB. In fact, all my project file file
    sizes seem enormous for no good reason. And it's not from orphan
    files in the Library. It's going to take like 10 DVDs to turn over
    all my project files (about 40 project files - all under 20 slides
    each) to the client. It's ridiculous!
    - If I import audio as a WAV file and then publish the
    project to Flash, the audio either moves to different slides or one
    audio file gets repeated in all the slides. The only way to fix
    this is to convert all the .WAV files to .MP3 files (but at a very
    low bit rate), delete all the old WAV files from the project, and
    replace them with the MP3 files. Using a WAV file always leads to
    major audio scrambling when I publish to Flash.
    - If I use a .MP3 audio file with a higher bit rate, when I
    publish to Flash, the audio is slowed down by about 50%.
    - Graphics fail to show up in the .SWF file after a publish
    to Flash. This is entirely random and different graphics are
    affected each publish, so I never know what the published file will
    look like.The only way to fix this is to go back to the Project
    file, double click on the graphic and make a change to one of the
    options, save the change, reopen the graphic and change the option
    back to the one you started with. Then cross your fingers that
    another graphic won't vanish during the Publish process.
    - Objects that I have fading in and out on the timeline work
    perfectly in the project file, but when they are published as Flash
    output, the timings are all off by up to 15 seconds. This happens
    on a couple of slides and I can find no explanation or way to fix
    this. And it's completely random. One publish may have the timings
    out of whack and the next one has the timings correct.
    - Adding any animation to a project file causes all drop-down
    menus to stop functioning. I see from other posts that I just need
    to click on an object in the Library. Wish I had known about that
    sooner. I ended up restarting Captivate a lot.
    - After closing Captivate, it takes 15 minutes or more before
    my machine works at anything like it's normal speed. If I try to
    shut down my machine right after closing Captivate, I get an error
    message telling me Captivate is still running. It appears that
    Captivate does not release memory after it is closed. I have to
    restart my machine everytime I close Captivate just so I can
    continue working in other applications normally.
    These are just the major problems which caused the most
    headaches and delays. Most of it seems to be the VERY buggy publish
    to Flash option and some problems with releasing memory.
    I know a lot of other people have experienced these problems,
    as I've read about them in other posts. Has Capitvate 3 fixed any
    of these issues? There is no way I'd ever attempt another
    e-learining project with Captivate 2. This one about killed me.
    Thanks,
    Jim

    Thanks to everyone who has responded and tried to help.
    Unfortunately, none of suggestions have worked.
    Here's the update:
    - All my files are local, so the business about working on
    network drives is not applicable.
    - I tried the Save As option to try and decrease my huge file
    sizes as suggested by a couple of people. I did a Save As to
    another file name, then deleted the original file and did another
    Save As from the renamed file back to the original file name. My
    file sizes INCREASED each time I saved. I now have a 12 slide
    projects file with multiple choice quiz questions, no video,
    minimal graphics and audio that tops out over 1.1 GB.
    - I can't copy slides from one file to a new file because the
    file I want to copy slides from is so large that Captivate crashes
    everytime I try to Import slides from another project.
    - No one has mentioned anything about all the bizarre, random
    things that happen to graphics and audio when you publish to Flash.
    This is by far the most frustrating aspects of working with
    Captivate 2.0 - there is no telling what will turn up in your .SWF
    file and whether the audio will be on the correct slide. I've seen
    several posts about the problems using WAV files for audio or about
    MP3 files being slowed down in the SWF files but no one can say if
    these problems have been fixed in 3.0. Likewise the disappearing
    graphics and the inexplicable timeline delays when publishing from
    my Project file to an SWF file. And now a new one has popped up: in
    the SWF file, the screen size suddenly gets smaller on several
    slides, then goes back to normal!
    - It sounds like I need a lot more memory and faster machine
    (despite Adobe stating that my machine should be adequate to use
    Captivate) to deal with the slow performance, constant crashing,
    and frequent corrupted files. But this can't possibly explain the
    extreme file bloat and all the Publish errors when creating SWF
    files.
    At this point there's no way I can upgrade to 3.0 because of
    all the problems with 2.0. I can't make a justification to my boss
    to spend more money on a software program that (from his
    perspective and mine) does not work as advertised and has impacted
    this project so dramatically.
    It sounds like I'm the only Captivate user who is
    experiencing these difficulties, which is really perplexing and
    bizarre. Perhaps Captivate and Dell laptops are not compatible? I
    sure do wish that Captivate had a Mac version. At least there
    wouldn't be the usual Windows software excuse of "it must be your
    machine."
    Sigh... I sure did want to like Captivate, but everytime I
    open the program I get the hebbie jebbies, expecting some new
    disaster to befall me.
    Jim

  • 1080p download and playback bugs in iTunes 10.6 for Windows

    There seems to be some bugs in iTunes 10.6 for Windows related to 1080p video.  According to Apple, the minimum specs for viewing 1080p video on a PC is:
    To play 1080p HD video on a PC, you need a 2.4GHz Intel Core 2 Duo or faster processor, 2GB of RAM, and an Intel GMA X4500HD, ATI Radeon HD, or NVIDIA GeForce 8300 GS or better graphics processor.
    My PC exceeds these specs (Intel i5-2500K 3.3GHz CPU, 8GB of RAM, AMD Radeon 7970 video card, 30" Apple Cinema Display).  The first bug appears when I go into the preferences setting and switch the download preference fom 720p to 1080p, which triggers a warning box that says:
    This computer may not be able to play 1080p videos.  You can still download these videos for use on other devices.
    That's odd but I press "OK" and downloaded the 1080p copy of a TV episode.  When I press play, another warning box popped up:
    Video is too large.  The 1080p version of [show] is too large to play on this computer.  You can choose to play a smaller 720p version of this movie below.  This message will be dismissed in XX seconds.
    The message gives you three options: PLAY SMALLER VERSION / OK / CANCEL.  If I select OK or simply let the timer run down, the 1080p video starts playing without any problems.  Anyone else seeing this?

    Oh that clarifies things, I see what you mean.  The error message still confuses me because even your smaller Acer monitor matches the pixel resolution of the 1080p video - the video doesn't exceed the monitor's pixel ratio so it's not technically "too large" as the error message says.  The 1080p video should fill your Acer monitor edge to edge while leaving black borders on the top and bottom of your Samsung.  I think this is clearly a bug in iTunes.
    I know what you mean about the movie opening up so that a portion of the image is off the screen but that sounds like an issue related to the default position of the window when you start a video.  The default position is such that a smaller size like the SD copy probably isn't cut off but that a larger video does get chopped until you change where videos open by default.  I can change the position simply closing the video while it's playing.  iTunes remembers the place on the screen where I closed the video and opens all videos at the spot afterwards.  Does that not work for you?

  • I have had wireless issues sense Leapord, any fixes yet? its a shame that my wife has to sit in front of our 27 inch imac on a $300 Windows computer to use the web effectively. I have tried all fixes  and some work while others don't but all temporary

    This Lion wireless issue has become more than just an irritation, so much so, my wife has resorted to sitting in front of a 27 inch imac with a 300 dollar Walmart Windows computer to get the bills paid and use the web. And yes, there is not a fix out there I haven't tried over the last year or so, some worked and some didn't, but all were temporary at best. Same issue with my Macair, I wonder if its a hardware issue, like the video card in my 2006 MBP, it went out after the warrenty and then I found out there was a calss action suit going on over it, unfortunately Apple wouldn't cover it and wanted 7oo bucks to fix it, sold that as parts.
    While i really like me Macs, I own three, I may have to bow out and stick with LINUX, that has yet to let me down, anyone know if Mountain will fix this issue? or are we all just waiting for defective WiFi cards to fail at our own expense, PS, got three Macs for sale.

    Sounds like you're getting kernel panics, which are usually, but not always, caused by hardware problems, with memory being one of the regular culprits.
    First thing I would do is to get our your original OS X disks, insert the first one (should say 'AHT version x.x' in small print on the label - if not, find the one that does), and reboot holding the Alt key down. Choose the Apple hardware test, and when prompted, choose the extended test. If you have either of the TechTool programs, they can do similar testing. Does that identify any hardware issues?
    Next, I'd download rember from http://www.kelleycomputing.net/rember/ . This is a memory testing program that you can set to run overnight. Does it come up with any errors? If so, try resetting your memory card(s) by removing and putting back into the computer. Rerun memory test.
    This FAQ will provide other details: http://www.thexlab.com/faqs/kernelpanics.html

Maybe you are looking for

  • Why doesn't my Mac mini retain settings?

    Since I installed Mountain Lion, my Mac mini does not retain settings. Every day, I have to reverse the scroll direction of my mouse. I have to remove apps from my dock that I removed the day before but now have reappeared (this actually happened bef

  • Multi-Sco Package Freezes at End of First SCO

    Greetings! I have created a simple 3-SCO 2004-manifest Multi-SCO package for upload to our LMS. SCO1 - Pre-Test SCO2 - Video SCO3 - Post-Test My problem is that no matter what I try, the playback freezes at the end of the first SCO and will not proce

  • TS3694 When emptying trash I get error code -8003.  Anyone know what the problem is?

    When emptying trash I get error code -8003.  When I get this error I am trying to delete downloaded softeare.  Typical file deletion works okay. This is on an iMAC.  Don't knwo why I cannot pick an iMAC community below. Leparker46

  • Does your adapter monitor run REALLY slow via the Runtime workbench

    We on SP10 and it takes forever to display adapter status. Are you facing the same problem...is there another option or way around this. Thanks, Parimala

  • Solaris 10 server(v490) very slow backup

    Recently deployed Solaris 10 server(v490) into env consisting of SBU server solaris 8 (Networker 7.3). Solaris 10 system is only backing up at a rate of 125 or less Kbytes/sec. 3 other machines(solaris 8) are backing up at a rate of 17 to 20 Mb/sec.