My JMS 2 wish list - Part 3, number of message deliveries

I attended the JavaOne 2010 session on future JMS evolutions. During the session I described some current limitations or issues I'd like to be solved in a portable way. I've been adviced to share the issues to get feedback from the community. I will post each issue in a dedicated thread.
Issue 3 - How many times are topic messages delivered ?
This may seem to be a trivial question, but when clustering is involved, it's not.
JEE has strong support for clustering, but many JEE specifications do not define what is actually supported, and leaves room for application server specific features. This is the case for JMS in the various specifications involved (JMS, JEE, EJB, JCA).
The question is how many times are messages delivered and treated (e.g. once per cluster or once per application server)?
Note that to simplify the problem I will not address selectors, delivery modes or acknowledgement considerations. I will also only address business application clustering, not JMS implementation clustering.
When Queues are used the situation is quite clear, the message is delivered once whether you use clustering or not. But when Topics are used, there is no simple answer.
When a message is sent to a Topic, each currently active non-durable subscriber should receive the message once. If the receiving application is clustered, the message should be received one time per application server instance in the cluster. That's what we get with JBoss 4.2.3.
This is actually not always the case. One example with WebSphere 6.1:
- A business application is deployed to a cluster of two application servers
- The JMS message engine is also deployed to a cluster of two application servers
- The application uses a MDB with a non-durable subscription to a Topic
- A message is sent to that Topic
If the two clusters are different, then the message is received by one MDB on each application instance, so the message is treated twice. But if the two clusters are actually the same, then the message is only received by one MDB instance on the application server where the message engine instance runs, so the message is treated once instead of twice. Painful.
For reliability considerations, enterprise applications often use durable subscriptions to Topics. This makes the situation even more complicated.
Durable subscriptions are identified by a subscription name. This defines the number of deliveries, meaning that the message should be delivered once per distinct subscription name.
JMS offers three ways to receive messages: Message Driven Beans (MDB), synchronous receptions using MessageConsumer:receive and explicit message listeners using MessageConsummer:setMessageListener. We won't address message listeners as they are forbidden on the server side by the JEE specifications.
When doing synchronous receptions or message listeners, the durable subscription name is managed by the developper using Session:createDurableSubscriber. This way it is possible (it is actually required by the JMS specification) to give a different name per application instance in the cluster to choose the number of times the messages are received.
With MDB we cannot officially manage the subscription name, so there is not portable control of the number of messages delivery. Note that we cannot manage the client ID either. In more details, both client ID and subscription name are valid parameters as per the JCA specification, but they are not according to the EJB specification.
We need precise, portable and cluster compliant semantics about the number of time JMS messages get delivered.

gimbal2 wrote:
A portable solution would be useful.You could already do it now by leveraging the Timer functionality that has been part of the EJB spec since JEE 1.4. In stead of sending the message directly, let the timer do it after the delay you specify. That would make it portable with current tech.
I can't be sure what other implications that might have though, such as in the area of performance and resource usage - I can imagine you wouldn't want to use a timer when you need to send large volumes of messages.In the original requirement, the message is put in the queue immediately by a call to queuesender.send(message) and there's a delivery in delay to a consumer.
Whereas in this solution, the delay is in the message delivery to the queue itself.
IMHO there's a subtle but important difference here.What would for example happen if posting the message to the queue is in the scope of a distributed JTA transaction? You can definitely include the timer call to be in the scope of the transaction, but now you will have to account for the fact and there may be an error when the message is delivered which has to be handled explicitly. In the original scenario the tx would automatically rollback.
cheers,
ram.

Similar Messages

  • My JMS 2 wish list - Part 2, poison messages management

    I attended the JavaOne 2010 session on future JMS evolutions. During the session I described some current limitations or issues I'd like to be solved in a portable way. I've been adviced to share the issues to get feedback from the community. I will post each issue in a dedicated thread.
    Issue 2 - Poison messages management
    Poison messages are messages that are redelivered again and again when an untreated error occurs, possibly resulting in CPU eating long lasting loops.
    This is a well known messaging related issue, but it is not fully adressed by the JMS specification. The Message:getJMSRedelivered method can tell if a message is being redelivered. But this is not good enough and application servers implement their own solutions. Such solutions are based, for example, on redelivery limit and error destinations.
    With WebSphere 6, it is possible to specify, at the SI Bus destination level, an exception destination and a maximum failed deliveries threshold. When messages consumption fails more than the threshold allows, messages are moved to the exception destination.
    JBoss 4 has equivalent features, with a dead letter queue where messages that reached the redelivery limit are moved. It is also possible to use the specific 'JMS_JBOSS_REDELIVERY_DELAY' message property to specify a redelivery delay from the message producer side. JBoss 5 has the same features with the 'dead-letter-address', 'max-delivery-attempts' and 'redelivery-delay' destination configuration parameters.
    WebLogic has equivalent features, see 'Error Destination', 'Redelivery Limit' and 'Redelivery Delay' parameters.
    A portable mechanism should be defined.
    Edited by: 807264 on Nov 3, 2010 6:01 AM

    gimbal2 wrote:
    A portable solution would be useful.You could already do it now by leveraging the Timer functionality that has been part of the EJB spec since JEE 1.4. In stead of sending the message directly, let the timer do it after the delay you specify. That would make it portable with current tech.
    I can't be sure what other implications that might have though, such as in the area of performance and resource usage - I can imagine you wouldn't want to use a timer when you need to send large volumes of messages.In the original requirement, the message is put in the queue immediately by a call to queuesender.send(message) and there's a delivery in delay to a consumer.
    Whereas in this solution, the delay is in the message delivery to the queue itself.
    IMHO there's a subtle but important difference here.What would for example happen if posting the message to the queue is in the scope of a distributed JTA transaction? You can definitely include the timer call to be in the scope of the transaction, but now you will have to account for the fact and there may be an error when the message is delivered which has to be handled explicitly. In the original scenario the tx would automatically rollback.
    cheers,
    ram.

  • My JMS 2 wish list - Part 4, durable subscriptions

    I attended the JavaOne 2010 session on future JMS evolutions. During the session I described some current limitations or issues I'd like to be solved in a portable way. I've been adviced to share the issues to get feedback from the community. I will post each issue in a dedicated thread.
    Issue 4 - How durable are durable topic subscriptions?
    Non durable subscribers receive topic messages only if they are active at the time when the message is received and processed by the JMS engine. Durable subscribers are more complicated, they receive messages if the durable subscription is active when the message is received and processed by the JMS engine.
    How do I know when messages are kept or discarded? Simply put, what is the lifecycle of the subscription?
    When using synchronous receptions or message listeners, the durable subscription lifecycle is managed by the developper using Session:createDurableSubscriber and Session:unsubscribe.
    When using MDB, the durable subscription lifecycle is unspecified and is application server dependant.
    With JBoss 4.2, the subscription lifecyle is the same than the MDB. This means that if the application is redeployed (for example copy the new .ear over the old one in the deploy folder), there is a time frame when the subscription in non existent, so messages are lost.
    WebLogic 10 also seems to associate the subscription lifecycle to the MDB. WebLogic 10 offers a flag, "durable-subscription-deletion", to allow or not the durable subscription deletion when the MDB is undeployed or removed. True means that when the application is redeployed the subscription is deleted and messages are lost. When false is used (it is the default value) the subscription remains even when the MDB is undeployed. I hope this does not mean that if we permanently undeploy the application, the subscription will stay and messages will continue to stack.
    With WebSphere 6 the situation is different. The subscription is not associated to the MDB but to an activation spec that is an administred object. The MDB is merely a client of the activation spec. This way messages are kept as long as the activation spec is active, regardless of application starts/stops/redeploys/etc. Messages are not lost.
    We need a portable way to use durable topics subscriptions.

    gimbal2 wrote:
    A portable solution would be useful.You could already do it now by leveraging the Timer functionality that has been part of the EJB spec since JEE 1.4. In stead of sending the message directly, let the timer do it after the delay you specify. That would make it portable with current tech.
    I can't be sure what other implications that might have though, such as in the area of performance and resource usage - I can imagine you wouldn't want to use a timer when you need to send large volumes of messages.In the original requirement, the message is put in the queue immediately by a call to queuesender.send(message) and there's a delivery in delay to a consumer.
    Whereas in this solution, the delay is in the message delivery to the queue itself.
    IMHO there's a subtle but important difference here.What would for example happen if posting the message to the queue is in the scope of a distributed JTA transaction? You can definitely include the timer call to be in the scope of the transaction, but now you will have to account for the fact and there may be an error when the message is delivered which has to be handled explicitly. In the original scenario the tx would automatically rollback.
    cheers,
    ram.

  • My JMS 2 wish list - Part 1, send delay

    I attended the JavaOne 2010 session on future JMS evolutions. During the session I described some current limitations or issues I'd like to be solved in a portable way. I've been adviced to share the issues to get feedback from the community. I will post each issue in a dedicated thread.
    Issue 1 - Send delay
    I'd like to be able to specify a delay when a message is sent. This way the message will be available to consumption only after the delay has expired.
    JBoss supports this using the specific 'JMS_JBOSS_SCHEDULED_DELIVERY' message property.
    WebLogic supports this using a specific API, the WLMessageProducer:setTimeToDeliver method.
    Another possible solution would be an extra parameter to the MessageProducer:send method.
    A portable solution would be useful.
    Edited by: 807264 on Nov 3, 2010 6:00 AM

    gimbal2 wrote:
    A portable solution would be useful.You could already do it now by leveraging the Timer functionality that has been part of the EJB spec since JEE 1.4. In stead of sending the message directly, let the timer do it after the delay you specify. That would make it portable with current tech.
    I can't be sure what other implications that might have though, such as in the area of performance and resource usage - I can imagine you wouldn't want to use a timer when you need to send large volumes of messages.In the original requirement, the message is put in the queue immediately by a call to queuesender.send(message) and there's a delivery in delay to a consumer.
    Whereas in this solution, the delay is in the message delivery to the queue itself.
    IMHO there's a subtle but important difference here.What would for example happen if posting the message to the queue is in the scope of a distributed JTA transaction? You can definitely include the timer call to be in the scope of the transaction, but now you will have to account for the fact and there may be an error when the message is delivered which has to be handled explicitly. In the original scenario the tx would automatically rollback.
    cheers,
    ram.

  • I got an update request from adobe, then i lost my cleal print and amazon wish list acsses on the adress bar

    i got an up date request from adobe, then ilost my clean print and amazon wishlist access on the address
    bar i tried to reinstall [earlier versions] firefox. adobe installed a pdf app totally frustrated HELP!!!
    i think not sure version 12? ihad recently dowloaded photoshop etc about 20 adobe programs. for the last year i had the amazon wish add on which manifest to the rt of the arrows, and lft of the adress box.
    additionally the kodak clean print icon to rt of the amazon icon. a pop up widow appeared requesting
    an up grade for a pdf adobe program. as these update windows are as common as can be i complied it asked to restart, ok but when firefox rebooted it was a new version 19. the navigation bar had morphed
    the lft end was a circle with the address box running directly off the circle to the rt to the goggle search box. so there was no place for the amazon wish/ and clean print icons to live. and on the rt an adobe pdf icon had pushed the homepage icon to the right this app promised to covert any page to a pdf file, i went to tools and disabled 3 adobe add ons/ lost the pdf icon. i then tried to reinstall the amazon wish list add on
    got a message blocked by firefox/ hit allow restart then back to square one blocked by fire fox theclean print will also not reinstall??????/

    I'm not sure whether I understand was went wrong.
    Could you describe your problem with more details and possibly add a screenshot?
    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"

  • CS5.5 Gripes/CS6 Wish List (from the perspective of an FCP switcher)

    I have been a Final Cut Pro user for more than 10 years (starting with version 1.2 on a 500 MHz G4).  Final Cut Pro X is a disaster, but that’s a well-covered topic for a different forum.  After experimenting with Premiere Pro CS5.5 for a few months, I am ready to make the switch for all of my future projects.
    I make a living editing video.  I don’t, however, work for a big company, and I don’t have a lot of money to spend on third-party software or hardware.  Much of my work is shot on DSLRs and delivered online.  That may put me in the category of “pro-sumer” to some, but I wouldn’t be making the switch if I didn’t require a more professional alternative to FCPX to do my job.
    I also don’t think “pro” has to be synonymous with clunky and ugly.  (I’m looking at you, Avid.)  When Final Cut was young, it was fun, intuitive, and sturdy.  It became a robust, professional NLE over time.  I think Premiere Pro is on that path now.
    I like the look, the feel, and the functionality of CS5.5.  It’s not quite Apple-slick, but it’s very much at home on a Mac.  Overall, it’s an upgrade to FCP7 and a very strong alternative to FCPX.  I have high hopes for CS6.
    But this is not a comprehensive review.  It is just a list of negatives:  my gripes, wishes, and personal preferences.  My list of positives would be much longer, but my concern right now is with CS6 and the improvements that I hope it delivers.  As I am new to Premiere, it's quite possible that I am mistaken about certain functionalities or lack thereof, but I thoroughly researched each point in the help docs and forums before posting this.
    My primary system is a 3.2 GHz iMac 21” (2010) with 8 GB RAM, 512MB VRAM (ATI Radeon HD), running Mac OS X 10.7 with external Firewire 800 drives and a DisplayPort-to-HDMI external display.
    MAJOR ISSUES
    Hardware acceleration support for ATI GPUs
    There are rumors that Apple will be switching back to nVidia, but all recent iMacs have ATI and only ATI cards.
    Background rendering (or at least improved rendering options)
    Background rendering is probably FCPX’s most impressive feature and Adobe needs to catch up.  However, even if true background rending can’t be achieved, there should be an auto-render option (after a set idle time), partial rendering (if you cancel a render, keep everything that has been rendered up until that point), and more render options (e.g. render all and render selected). Regarding that last point, I think the whole work area concept should be dropped.  It makes sense for other apps, particularly for animation, but it just gets in the way of more important timeline functions while offering little functionality beyond being a clumsy way to control the area to be rendered.  At the very least, have a way to hide it.
    Full-screen preview
    Maximizing the program frame just isn’t the same (although the grave accent key function may be reason enough to switch to Premiere).  Full-screen preview isn’t just a nifty function for demo-ing sequences.  It’s a big part of the way I work.
    DisplayPort/Thunderbolt out to HDMI
    It may be that a third-party card is required for proper color correction on an external display, but there’s no reason this feature shouldn’t exist.
    Thumbnail images/show frames bug
    This one drives me crazy. I’ve tested this on 3 different Mac systems with various hardware configurations. Thumbnail images in the bins and frame images in the timeline seem to be recreated every time a project is opened, even though the thumbnail image files in the media cache folder don’t actually appear to get rewritten. It’s as if there is no cache at all (even for the most recently viewed bins and timelines segments).  It can’t be an intentional functionality for saving hard drive space because the cache files continue to take up more and more space.
    Open multiple projects simultaneously
    I know that you can cut and paste between projects but being able to open multiple projects at the same time is a very useful feature of FCP7.
    Magic Mouse/Magic Trackpad scrolling
    Premiere Pro is a cross-platform system and impressively so, but there need to be a few Mac-specific interface adjustments, the most important of which is support for the Magic Mouse and Magic Trackpad scrolling.  I use a Magic Mouse.  (It’s an irritating device sometimes, but once you get used to it, it’s hard to live without it.)  When I’m in a window, I expect a flick up or down to scroll up or down -- in every situation, every time, including the timeline.  Unless I stop using all other Mac apps, I will never get accustomed to the timeline suddenly flying left or right when I want to scroll up or down. Also, here’s a chance for Adobe to fix a problem that FCP7 shared:  When you scroll up or down in the effect control window using the mouse, the drop-down effect controls sometimes twirl all over the place if the mouse happens to float over them. As it is, it very easy to throw settings into random disarray without even realizing it just by scrolling through the pane.
    The timeline:  selection indication, icons, and general improvements
    It is very difficult to discern at a glance what, if anything, is selected in the timeline. Transitions always look selected!  Audio tracks should be a different color or otherwise more distinct. There should be an option to show frames only without any text. The icons for track options are small, crowded, and ugly.  Some of the editing icons are too similar, namely edit and ripple edit, although the excellent status bar at the bottom of the application goes a long way towards making up for this.  Simply put, the timeline could use some polish.  Don’t be afraid to steal from Apple on this one.  Keep the tracks; just make it easier on the eyes!
    Conforming audio
    The ability of CS5.5 to work natively with DSLR footage is awesome, but it’s not fully DSLR native if it has to pre-render a major component of the footage before it can play, even if it’s just the audio.
    Media loading
    When launching a project, it can take a long time for all the media in the project to “load” as tracked in the status bar.  I’m sure there’s a reason for this, but since the program is able to determine which source media files are missing before this step (and gives you the option to reconnect them), what is it doing and why must it load every clip in the project, even those not in use by any sequences?
    Page up/page down and arrow key commands
    For starters, the current page up/page down key functions should take the CTI to the next cut in the sequence, not the next cut in the track that happens to be targeted, which can be way down timeline.  In FCP7, I frequently navigated cut to cut with the up and down arrow keys.  I’ve avoided customizing the keyboard commands to match FCP7 --  I would rather endure some hardship and learn the proper Adobe commands -- but this one is flat-out backwards.  The page up/down keys should page through the timeline (left to right and right to left), while the up and down arrow keys should take over the clip to clip function (assuming the targeted track issue is fixed).  Currently, the down arrow takes you to the very end of the timeline, a function already duplicated by and better suited for the “end” key.
    Bin management and clip relationships
    Deleting an item from a bin should not delete it from the timeline, but this is part of a bigger problem, which is the whole master file versus instance versus subclip versus dup clip thing. There aren’t any good indicators regarding the relationships of these clips, and there are few ways to adjust them.  If clips are going to be connected, then they should be fully connected.  For instance, changing the name of a clip in the bin should change it in the timeline.  Adding an effect or trimming should affect the corresponding clips between bin and timeline.  Otherwise, the clips should just be completely separate instances.  I haven’t been able to find an option to turn a clip into an independent instance, although I have to think it exists.  Also, editing an instance of a title does change every other instance of that title throughout the sequence.  I would prefer to be able to edit them separately without having to duplicate them in the title editor.
    Bin effects
    Related to the above, it should be possible to add effects to clips in bins or keep effects on clips added to bin from timeline.  It would also be nice to be able to group effects together in bins for a specific project.  The effects window is better suited for global collections.
    Clearer visual indicators that a clip has been adjusted in the effect controls panel
    Even with the effects panel visible, you have to take a close look to see if there have been any adjustments to the standard settings. An indicator on the clip in the timeline itself would be useful.
    Snapping should include the CTI
    It should also include the blade tool, although the Cmd-K option to cut at the CTI position does make this less of an issue.
    Smoother scrubbing
    Scrubbing is pretty awful.  While this is understandable with native footage, FCPX somehow manages to make this silky smooth at full resolution.
    Color correction shape mask and better color correction in general
    Simplify the primary functions of the 3-way color correction effect.  Keep all the rarely used adjustments out of the way.  I use Magic Bullet for some purpose, but I’ve always done most of my color correction within FCP.  Put the most common adjustments front and center (or up top, as it may be).  The highlights/mid-tone/shadows drop-down is inconsistent in what controls it pertains to.
    FCPX’s color correction is actually one of its more underrated features.  The way it allows you to layer corrections is dead-simple yet as powerful as anything in FCP7 or Premiere.  Stick with the 3 wheels, but rely less on hard to control tonal ranges and add simple keyframe-able shape masks for secondary color correction.
    Better support for shared media access
    AVID is king in this arena and Adobe needs to improve.  It should be possible for multiple editors to safely work on the same project files and share media over a server.
    MINOR ISSUES
    More vertically compact playback/edit control area in source and program panes
    Make room for either a taller timeline or bigger previews.  The virtual scrubber and shuttle controls are the nifty things you drag with the mouse the first time you ever use an NLE and never touch again.
    Larger icons in icon view
    Remember size and position of bin windows
    Playback resolution setting indicator
    There should be an always-visible indicator of the playback res setting in the preview pane that’s easy to adjust without right-clicking.
    Better markers for sequences and clips
    Include colors and more keyboard shortcut control.
    Clip sliding with keyboard commands
    “Opt-,” (that’s Option-comma) should cause a clip collision, not overwrite.  Either that, or “,” and “.” should slide, while “Opt-,” should overwrite.  Opt-arrow should only extend an adjoining clip if in the middle of two clips.  Basically, this whole arrangement should be re-thought.
    Project browser should auto refresh/sort.
    Option-drag on a Mac should always be copy, not move.
    Copy is currently command-drag in the project browser.
    Stop auto-save from interrupting adjustments in timeline.
    Ideally, the auto-save should just be a background function, but it should at least wait until you’re not in the middle of dragging something.
    Add ability to select a cut directly and add default transition.
    CTI control
    If you move the CTI while it’s in play mode, it should continue to play from that spot after you release the mouse, not stop there.
    Show number of frames being adjusted during keyframe adjustments.
    Enable/disable specific effect parameters/keyframes.
    Clearing an effect should clear keyframes as well.
    Or have an option to clear both.
    Position controls
    There should be a preference to make the default position 0.0 x 0.0 (as opposed to 50% of whatever the resolution happens to be), and include a reset button.
    Through-edit indicator in timeline
    And a quick way to join clips, such as a right-click menu option.
    Border controls for images
    Auto save location preference and functionality
    In FCP7 I set the number of auto saves to keep to the maximum of 100 and Premiere can go even higher.  I have always used this feature as an additional backup and archive system, which has come in very handy.  Those files add up, however.  So, I prefer to auto-save to an external drive.  Also, auto saves in Premiere continue to occur whenever there are unsaved changes.  This means that if you make a small adjustment and then leave Premiere for a while, it will keep auto saving the same iteration, which is not only inefficient but leads to my next point….
    Tame the bouncing dock icon on auto save
    While using other apps, there’s no need for the dock icon to bounce every time Premiere performs an auto save.
    More/clearer control over cache locations
    There should also be an option to reset the cache/render file locations to their defaults.
    Export source range
    When exporting, remember the last-used setting of the export source range (or just dump the whole work area thing as I previously suggested).  It’s too easy to cut off a portion of the video when the export defaults back to the work area every time.
    Larger timecode display
    After spending hours and hours editing, the current timecode for clips and sequences is something you want to be able to track without squinting.  Use the letters h,m,s and f instead of colons.
    Simple slug
    Creating a black matte works okay, but it involves a few extra steps.
    Snapping toggle
    FCP allows you to quickly toggle snapping while dragging a clip.  Upon releasing the clip, the snap toggle returns to its original state.  Premiere could use this fucntion, but I suggest something simpler.  Holding down the “S” key should always turn snapping on regardless of toggle state, while releasing it returns it to however it was set before.
    Ability to dock the audio meters along top
    I like to give my timeline as much horizontal space as possible.  I’ve noticed a lot of users keep the toolbar up there, myself included.  I think it would be a good place horizontally aligned audio meters as well.
    More detailed tool tips or hover explanations in preferences
    For example:  The options regarding XMP data should make it clear that the original files will be modified by Premiere.  This caused me problems in other applications.  (After researching these settings, I understand that various Adobe applications use this information to share resources, but it’s still very unclear what the specific benefits are or what functions are lost without this option.)
    More detailed support documents
    The online support documents on the Adobe site very good.  They are nicely arranged and easy to search, but they could be more detailed and offer fuller explanations.  (Peruse the support forums and you will discover all kinds of debates that could have been easily cleared up with one concise line in a help document.)
    Icons and button design
    Icons and buttons are often too small, too similar, and too crowded throughout the interface.  Take some style tips from Apple on this one.
    NEW FEATURE WISH LIST
    Footage auto-analysis:  shot recognition, color correction, and color match
    If only Apple had just added these features and others to the FCP7 framework.  Adobe can do it better though, by using smart folders in addition to the traditional bins that we know and trust (anything besides those dreadful iMovie-style “events”).
    Effect previews
    In the 64-bit era, there has to be a quicker way to preview effects.
    Ability to render in alternate formats
    Namely ProRes or DNxHD.  This would save me considerable time on exports by allowing me to select the “use preview files” option.
    PluralEyes functionality
    Okay, I suppose I should just purchase PluralEyes...again.
    Many, many more effects!
    How about starting with the missing vignette effect?  Just because an app is “pro” doesn’t mean you should have to custom build every effect.
    Many, many more looks!
    Will most of them be cheesy looks I would never touch?  Sure...but give me some templates to play with before I tweak the look down to my exact specifications.
    More speed!
    FCPX, for all its flaws, blazes on any modern Mac.  This probably comes back to hardware acceleration, but while Premiere Pro on a Mac isn’t slow, it doesn’t blow you away.

    You hit the nail on the head, Peter.
    I recently started giving Premiere Pro CS5 a try, and was shocked by the amount of bugs and usability issues. I'm not even going as deep as you in the features, but the most glaring evidence of the lousy interface is that timecode offset bubble that appears everytime you move a clip in the timeline... the bugger appears just under your mouse pointer and won't go away, so if you try to just move a clip down a track quickly, and let go of the button ONTO the bubble, it acts as an obstacle and your drag/drop fails ! seriously, Adobe... don't tell me nobody has stumbled upon this one during beta-testing ?
    Ditto on the autosave that basicly interrupts anything you're doing. No background saving in 2011 ? At first it bothered me to no end so I disabled the autosave. And then a few hours later, Premiere crashed, and didn't even try to recover my work. I lost 2 hours of intricate work. I put autosave back on, and learned to endure the constant, annoying save dialog. And it's not like the save process is instant... even the simplest of projects takes 5 to 10 seconds to save... on an SSD... come on... let me work already...
    Of course, a headache-inducing implementation wouldn't be complete if the autosave didn't trigger even 30 seconds after a manual save. If I choose an interval of 5 minutes, just autosave 5 minutes after a manual save !
    In thumbnail view, you can reorder the clips manually. It's all fine, but you can't reorder them by name or date or length, unless you switch to list view and of course, lose the thumbnails.
    Dragging and dropping a clip in thumbnail view is a chore, because the palette doesn't scroll when the mouse reaches the edge. You know, when you want to move something at the top all the way to the bottom... so you have to drag, let go, scroll one screen, drag, let go, scroll one screen... it's a joke. Even the timeline can do it. Heck, it's a software standard, nowadays.
    Renaming a clip and pressing ENTER takes you back to... the top of the folder !?! How many times I've renamed files that were at the end of the thumbnail view, and for each clip, I had to scroll back down. Time waster.
    Want to locate a clip from the timeline, in the project ? the locate function takes you to the folder. But not to the file, you have to navigate towards it manually.
    Ditto on the up/down arrows. I haven't found a way to jump from cut to cut like in FCP7. How often do I need to jump to the starting/ending points ? much less often than jumping to a nearby cut.
    How come I can't reorder filters in the effects pane ? sorry, I can actually reorder the filters... provided I take them from the bottom and move them up. Moving effects down doesn't work. It's driving me crazy.
    Conforming happens more or less anytime. Without reason. And even if the Media Cache is already full of conformed files.
    When moving the boundaries of the work area, no timecode/offset appears. You need to let go of the button and THEN hover, then you'll know the exact time/duration.
    Try scrolling up in the timeline, it scrolls to the left (which is stupid, it should scroll up). Now scroll up on the tabs of a palette : they scroll to the right !?!
    Can't select an active track. Direct consequence : copy-pasting a clip overlaps anything that's on track 1. Say I want to duplicate clips on the same track... I can't do it.
    Copy-pasting between projects doesn't keep the transitions, only the order of the clips.
    Have you tried doing a frame freeze on a reversed clip and setting proper in/out points for the freeze ? Good luck.
    "Duplicate" command, when you right click on a thumbnail, is way too far from the cut/copy/paste commands at the top, even though they're quite related.
    The other day I transcoded footage with different audio parameters. Just the audio had changed. Upon opening the project, Premiere wanted me to locate the files, which I did. And it failed miserably. Instead, I opened the project ignoring the missing files, and then re-linked them. I pointed Premiere at the first missing file, and had to confirm the replacement. Premiere saw all the other missing files in that folder, and began prompting me FOR EACH SINGLE FILE !!! two hundred and forty three of them, precisely. Can't I have a "yes to all" button in 2012 ? and why does the relinking work inside the project and not when you open a project ?
    That was just from 3 days with Premiere Pro CS5. I still can't believe it. Just to think people bashed Final Cut Pro X, praising Premiere in comparison... Sorry, but they both have serious issues. And Premiere doesn't even have the excuse of novelty.

  • Wish list for Encore

    I don't see a wish list category here so maybe we could start one.
    My number one irritant in Encore 2.0 is the default ON of "Sync Button Text and Name." This in on by default and it should be off or unchecked in my opinion.
    I do all my menus in Photoshop and import them into Encore. My buttons are all set. Then when I start assigning buttons to timelines I forget to uncheck this and it screws up my PS buttons by changing them to whatever I called my timelines. I really hate this. Thank goodness for undo, but when a default is never what you use, then the reverse should be the default. At least that's my two cents worth.
    Thanks,
    [email protected]

    posted this earlier in another thread until i found out that this is where i should have posted.
    so here is my list:
    1. The ability to import power point slide shows into encore as a slide show. This would make it really handy to import some ones previously created slide show and turn it into a DVD slide show. It doesn't have to do all the fancy animations or transitions, just import the slide shows. Yes I know I can export from power point to jpgs. Have you really looked at the results? Crap is all I have to say. Of course I could recreate them in Photoshop or some other program that lets picture and titling be created. You know how much extra time that step costs?
    2. Could you make a project manager for encore that is similar to the one in premier? I would like to be able to trim the project and remove "temporary files". I especially hate the number of temporary menus that accumulate in the menus folder. I want to be able to back up the necessary files only, not all the junk. it would also be nice if it would grab the video(I) that make up the project and compile them in to the folder that I designate as the new project folder, just like premier does.
    3. its not really to hard to now, but it would be nice if there was some method for telling encore that you are creating an Easter egg. Currently there are a few steps to doing it and it is all manual. It would be nice if you could designate a button as being an Easter egg and then tell encore which choice of ways you want it to handle it. For instance is it just a simple Easter egg where you go on the right direction on a button and viola, you found it. Or is it a button that you go to and it goes to a duplicate menu and then you need to hit the right button a couple of times and then viola, you found it. Any thing to make my DVD creation to have a few less steps.
    6. Another thing that I think encore needs has to do with the flowchart. Give me some zoom on that baby. I like it, but it would be nice if I could zoom out to look at the overall structure.
    7. The ability to normalize the audio across the entire DVD. My wife made a disc and some parts were loud and others were so quiet. It would be nice to not have to do this for each clip before in premier, but leave it till the final stage of DVD production so that it only has to be done once.
    more to come :)

  • BE3K Feature Wish List

    First off, I would like to say my last post was filled with alot of anger and fustration, and admittedly not as productive to the Cisco dev team, or the BU and for this I apologise, however as a the Senior lead UC specialist of my organisation, and being partly responsible for all projects,  I cant afford to have my junior engineers wasting days on a BE3k project to get the most basic of things going for our clients.  So lets start over........ =)
    Moving forward; I dont see many posts here on the Cisco support forums under the BE3k section regarding *improving* the BE3k's functionality and what we (the integrators) would like to see in the next upcoming release cycle.  So I have come up with a few things off the top of my head which I would like to see added ( a wish list if you like ).  Not all may be possible, and not all may apply to all demographic regions, as long as we know if there will be any plans in the future to add such features to the BE3k. 
    Ive only worked on the BE3k for a day and consulted with my colleages to compile this list, please feel free to add to it
    Night Switch, with ability to schedule ON/OFF and also Night Switch indications on handsets (ie receptionist)
    Hunt Group no answer forwarding to ANY number
    Blast Group no answer forwarding to ANY number
    Directed call pickup / Group Pickup of ANY ringing phone/group regardless of membership to hunt groups or blast groups
    ACD Groups with ability for multiple greetings and multiple music sources for each ACD Queue
    Pre-Digit voicemail forwarding, like if a user A wants to leave a message for user B, they predigit 6 or 5 in front of the extension and it goes straight to their voicemailbox without ringing on user B's phone
    Lower the time it takes to do an upgrade
    Native SIP trunking without the need for CUBE
    Multiple choice PSTN routes, eg. 1st choice route = SIP, 2nd choice route = ISDN
    More key types (not just LINE) share keys, monitor keys, silent keys, overlay keys, multicall keys etc etc
    Feature access codes, ie *26xxx to call forward to number xxx etc..
    Hotdesking or Extension Mobility, login and out of any phone and make it your own
    Ability to edit translation rules and define custom routes for different numbers, like pre-digit 9 would use SIP, pre-digit 0 would use ISDN etc..
    Ability to customise codec types if using SIP trunks and edit SIP parameters such as the SDP headers and packetisation rates..
    Ability to SKIP the configuration wizard or RESET to go back to the configuration wizard
    Ability to re-label softkeys, at the moment line1 on users extensions is locked to their Directory name
    Speed dials, user A wants to dial 3001, 3001 is a shortcut to dial 0412345678, this should not be limited as some clients have over 500 speedials
    DHCP server, with ability to define scope options like option 150, or ability to lock down to cisco-phone only
    DSS/BLF monitoring of different line statuses, ie Ringing, Off Hook, DND
    Ability to add analog gateways VG224 etc.. i dont know if this is already possible
    Call forward no answer/call forward always, not to be part of a USAGE profile, but to be part of the USERS profile, its not intuitive in its current state
    Thats all I can think of for now, I will add more when I consult my Team of engineers.

    Hi Sanjay,
    Thanks for the response, please see comments below :
    1) Night Switch  - Not currently supported. It is a feature we are targeting in a follow-up release.
         Will this support scheduling and an indicator ?
    2) Currently one can forward it to any internal extension. What you are asking for is to forward it even an outside  number. Yes, customer X wants to overflow the Hunt Group to an after hours Mobile Number
    5)  It is supported with 8.6.4 release. For direct call transfer to  voicemail, hit transfer, * followed by extension number and transfer key  again (or hang up the phone). Good to know, I tried this and it works
    8)  It is supported. With 8.6.4 release, one can create multiple Outside  DIal Codes on the System Dial Plan page. Then on the site page, one can  associate those outside dial codes to different connection groups. In  your case, you will have one connection group with SIP connections and  another with ISDN.
      Can the system support +E.164 dialing ? Lets say I want to send +61 2 83945522 out of the SIP trunk ?
    9) You can configure shared lines, speed dial  BLF (monitor keys). Silent ring key is something which is not currently  not configurable. I am not sure what is overlay key call. If I  understand multicall key, it is call waiting feature. Each line on the  phone has max of 2 calls by default.
    At present, the only way to silence the ringing is to DND the phone, but this will silence all keys,  consider a CEO who has a private line, or multiple private lines and doesnt want to be disturbed on his private line. 
    10) There is a softkey for  call forward. Is there any specific reason you are looking for feature  access code? I believe feature code is more problem because of reason to  remember them. Sofkey is just there.
    Feature access codes can be much easier to remember to do rather then navigating through a multitude of menus, consider and old TDM user who is used to having press *26 to fwd and #26# to cancel forward, this is much quicker and should be a secondary option to the menu driven way. - Call fwd is only an example.
    12)  With 8.6.4, you can define custom rules for different routing needs.  Having said that I agree that translation rules are currently not very  flexible. We are planning to improve that in next release.
    This is good, I hope to see that the translation rules will have an option to select which exiting trunk route to use.
    14) Reset to Factory Defaults is a feature on roadmap. May not be available in next release.
        What about Skipping the wizard all together ?
    15) Line 1 is the primary DN. It will be labeled to the Extension number or name. What do u want to label it to?
         Heres the scenario on this one,  at present doesnt looke like you are able to put the DN number as the label of Line  1.  Consider company A has multiple sub-companies/departments coming in on different DID's company A's receptionist wants to have visibility of ALL sub-company's DID presented on each line of her handset.  At present, you will need to create another USER and associate with the extension's lines, however you cannot Re-Label the key to reflect any meaningful information.  Perhaps support for a "floating"/ "phantom"/ "fictive" key should be implemented.  This kind of key does not need to be tied to any extension, and will not take up any licenses.
    16)  On the System Dial Plan page, there is a tab to do abbreviated dialing.  You can configure translation of  a speed dial to an E.164 number
    Good, I tested this and it works, but I dont see what the point is in having options to prefix and postfix digits in this form, what is the thinking here?
    18) It is already supported. You can add a VG224 gateway.
         Good.
    Also, are these on the roadmap ? :
    DSS/BLF monitoring of different line statuses, ie Ringing, Off Hook, DND
    Ability to customise codec types if using SIP trunks and edit SIP parameters such as the SDP headers and packetisation rates..

  • Why won't my Mac allow me to print my whole iTunes wish list?

    I have an HP Officejet Pro 8600 Plus, and I'm trying to print my iTunes wishlist. For some reason, the whole list won't print. I have about 325 songs in my wishlist, but I can't print but 115. I have changed all the printer settings possible but can't find a solution. Does anyone have a solution to this problem?

    Thank you, Advance 23, for your interest. I am not generally having a problem printing multiple pages. I am, however, having a problem specifically printing my entire iTunes wish list. I do not receive an error message. When I click on print, it shows 13 pages to be printed. It does print 13 pages, but only the first 41/2 pages contain part of the list. The rest of the pages are blank. "All" is selected as the number of pages to print. I'm not sure what you mean by a program from which I am printing the list. I just have my HP printer set up as my printer for my Mac, and it prints all of my documents. What I have done instead of printing the list is take screenshots directly from the wish list and printing them. I cannot copy and paste it into Pages or TextEdit because only the first 41/2 pages of the list show up in the pages to be printed section. It would be really great if you could solve this problem. 

  • My iPhoto WIsh List for '07

    Just sent the following to Apple's iPhoto Feedback; figured I'd post same here just for the heck of it. Many of these feature requests might only apply to my particular (and peculiar?) workflow, but I suspect at least a few of them might strike an empathetic chord...
    One User's iPhoto Wish List:
    Your first priority is to contact the creators of iPhoto Diet and iPhoto Library Manager, pay them lots of money for their work, and then incorporate all the features of their shareware apps into iPhoto itself.
    This would add to iPhoto features it should have had for a long time now, including:
    1) An option to delete unrotated originals.
    It's silly to take up space on a hard drive with copies of files whose only difference is that one is correctly rotated and the other is not. Give us the choice to dispense with the unrotated ones.
    2) An option to delete the originals for any selected file(s).
    I know that "always keeping a copy of the original" is a sacred cornerstone of the iPhoto app, but SOMETIMES, after I've edited, resized, or done whatever to a given file, I feel I've created the new master file, and I truly really honestly would like the ability to just dispose of the now redundant original and get the space back on my hard drive.
    (If this sounds like giving the user of a "consumer app" too much control, by all means bury this kind of option behind all the Advanced Tabs and all the Warning Dialogs you want -- but please at least give us the option to manage what we ultimately keep or don't keep in our iPhoto Libraries.)
    3) Ways to manage multiple libraries on multiple machines with multiple users.
    I have a 12GB (and growing) iPhoto Library on my G5 PowerMac. My wife's G5 iMac has a subset of that Library (about half the size), with the same Roll designations, Comments info, and Keyword assignments, along with some of the same Albums plus some unique Albums. I use iPhoto Library Manager to do this, but I should be able to do it using iPhoto itself.
    Especially since the introduction of OS X, Apple has encouraged the notion of multiple users on multiple Macs. iPhoto needs to embrace that world view, and make the sharing and management of multiple iPhoto Libraries, even different versions of the same Library on different machines, a fluid, user-friendly, and fully-integrated process. For instance, I should be able to select which images, Rolls, and/or Albums from my Library get copied to my wife's machine (with all Comments, Roll info and Keywords intact) -- AND whether or not those copies include the corresponding original files or not.
    Other features iPhoto needs:
    4) Ability to correct and change the actual EXIF date/time info.
    One example: It is extremely common to get jpegs from other users who haven't bothered to correctly set the date/time menu on their digital cameras. You want to correct that info, but if you do that in iPhoto's Info pane, and then Export that image and in turn Import it into another iPhoto Library, the Date/Time reverts back to the original INCORRECT setting. This is really annoying, and I feel like it's insulting my intelligence. (When I change the date of a photo, THAT'S the date I should now be able to search for by using the calendar mode, NOT its incorrect "creation" date.)
    The current workaround of having to export the file, use another app like Graphic Converter to really change the exif data, then re-import into iPhoto (after first deleting the originals), then recreate all your Comments and Album arrangements, is clumsy, time-consuming, and when you think about it, absurd.
    PLEASE consider a User Pref to the effect of "Changing Date/Time info changes original exif data as well"? You could have it unchecked as the default; you could have all sorts of "do you really want to do that?" warnings pop up when a user does check it -- but please just give us the option!
    5) Better User Pref options.
    Give us the choice to NOT create a dupe original when a file is viewed in an external editor but no changes are made; likewise when just rotating an image within iPhoto.
    6) Better sorting/display options.
    I display my library in Rolls (each Roll being pictures taken on a particular day or at a particular event). I'd like the ability to designate how files are sorted within a particular Roll -- the pictures in some Rolls sorted by file name, the pictures in other Rolls sorted by Date & Time.
    Would also like to be able to insert dividers in the Source pane to separate some of my albums into different groups, as well as a way to set bookmarks or placeholders within a Library, as a quick shortcut to an often-viewed section for example.
    7) More e-mail attachment options.
    Within each of the Small, Medium, Large, and Actual Size choices, there should also be (perhaps under an Advanced tab) a sliding scale of jpg quality, with an instant feedback showing what the total file size will be at that particular setting.
    Also, there should be four checkboxes: one for Image Name, one for Date, one for Time, and especially one for Comments -- allowing the user to determine which of those four bits of iPhoto info are included in the e-mail attachment along with the image itself.
    8) Option to have Comments included in Captions for online albums.
    Those same four checkboxes also need to be options for any kind online album posting. It's crazy that right now I can't put up an iWeb photo page that automatically includes the Comments I've taken the time to enter in iPhoto as part of that photo's Caption online.
    9) Option to show file extension in Title
    Including or not including the .jpg or .psd or .gif extension is an option when Exporting a file; why not when displaying it as well?
    10) Option to "show all layers" of an imported Photoshop file.
    Or any kind of layered file which has been imported into the iPhoto Library.
    11) Ability to enter partial dates.
    It often happens when you import an older scanned photo into your library (or even when you're just sent a recent photo from a friend), you don't know know the exact date and/or time the picture was originally taken. iPhoto really needs a way to enter partial, approximate or estimated dates -- just the month/year without a specific day, for example -- both in the Info pane AND in Batch Change mode.
    (Also wouldn't mind a user pref option to display the Time without the seconds.)
    12) Ability to Import pictures into an already selected Roll.
    There are many times when I'd like to be able to select a particular Roll, then Import some new pics directly into that Roll -- rather than doing the Import, then having to drag the images sometimes several months back in time to drop them into the correct Roll.
    13) Ability to delete files from an Album and the Library simultaneously.
    This would be some sort of Option-Delete command, where a selected image being viewed in a particular Album is ALSO removed and sent to the Trash from the Library as well -- with the appropriate warning dialog, of course.
    14) Built-in support for doing INCREMENTAL back-ups of either your entire Library -- or only the files from selected Albums -- to another hard drive.
    I hope that most of these features have already been incorporated into the next release of iPhoto -- and if not, that you'll give serious consideration to implementing them as soon as possible. Your users will thank you.
    John Bertram
    Toronto

    should add ability to scan directly to iphoto.
    How would I give this wish to apple?
    Note that under the Application Menu (in other words, in iPhoto under the bold Menu item called "iPhoto", right next to the blue Apple icon), there's a selection called Provide iPhoto Feedback. Clicking on that opens your default browser (if it's not already open), and sends you to the specific Apple webpage set up to receive user suggestions for that particular app.
    In this case, the URL is the one "Old Toad" mentioned in his post:
    http://www.apple.com/feedback/iphoto.html
    Many of the major Apple apps have this direct menu link; for others you can just go to http://www.apple.com/feedback/ and navigate from there.
    They claim to actually pay attention to this kind of user input; and I've heard people say it actually does affect how the development and implementation of new features get prioritized.
    Let's hope so, anyway.

  • W540 Wish List

    Dear Lenovo,
    seeing that you have completely messed up the Design of the W530 here is my recommendations for features to be included your next mobile Workstation:
    A 19:10 display with either an IPS 1920x1200 Display or an 2880x1800 (so called retina) Display (offer both). A 16:9 display on a workstation is a joke. Nobody buys a proper mobile Workstation (>$3000 with max memory and large SSD) as a mobile DVD player. I would happily spend an extra $1000 for a good display resolution so stop trying to save a couple of dollars by offering a resolution that is useless for >90% of workstation users.
    If you need some insight to the type of work done with your workstation:
    CAD: The ideal working area for CAD is a actually square, else you are liable to take wrong design decisions and make mistakes because you see the sides better than what lies above or below. Even if you place quite a number of toolboxes at the sides a view on a 16:9 screen always ends up rectangular and offers less hight than the old 1600x1200 screens
    PHOTOGRAPHERS: The ratio in standard analog (35mm) film was 2:3 which has been largely adapted by digital cameras. Again, even if you are working on a landscape picture and placing all your tools at the sides 16:9 is very far from the ideal retio.
    MOVIE PRODUCTION: One would think that 16:9 is ideal for the production of films, but for editing it is not. Usually timelines are added above or below the output area. On 16:10 at least some of this space was provided by the additional vertical resolution.
    PROGRAMMERS: For software engineers the vertical height is the most important feature of a display, as software is usually coded with many quite short lines. Here of course the 1080 pixel vertical resolution is a grat step backwards from the 1920x1200 and even 1600x1200 resolutions.
    2 PAGES SIDE-BY-SIDE: I have heard the argument again and again (usually by people that don't use their laptop for work) that 16:9 is great for viewing two pages side by side. It is not. The ideal ratio for two A4 pages would be 16:11.3 if you don't have a task bar and menu at top and bottom. Discounting these it is closer to 16:12 or 4:3. You actually get a better resolution of two A4 sheets on a 1600x1200 display than on 1920x1080.
    A decent keyboard: I currently own a W510 and it has a good keyboard, although not as good as my old T40 and T60 used to be. Now with the W530 you are offering a keyboard that is just not made for typing. A "Chiclet" style keyboard, though it might be ok for gaming is just not for serious work. Just add the 2mm extra hight to the chassis, a mobile workstation is not meant to be a ultraportable.
    Graphics that use less power: I don't know how well the current generation of NVidia graphics fares, but the model included in my laptop sucks power like nothing. ATI has a better power management, at least has had in the last couple of years. My W510 runs less than 2 hours on a nine cell battery even at light use.
    Other things that would be nice but are not essential:
    - Bring back the ultrabay battery. Hardly anybody needs optical drives on the move and any extension in working time on the road would be appreciated. Ultrabay should support Hard drives at the same speed as the main HD controller (for raid).
    - A docking station with included graphics (I don't need the full power on the move but wouldn't mind driving three monitors from the docking station)
    - A docking station with a fast PCIe slot (x4 or better)
    - At least one horizontal USB port on the right and one on the left (for the mouse). Make all ports USB3.
    - A seperate microphone jack (used by most headset and allows use of stereo microphones)
    - Please keep the eSATA and powered USB ports.
    - Please keep the 'nipple' and trackpad input devices with three buttons (third button at the bottom for the trackpad would be nice)
    I wanted to upgrade to the W530, but the display ratio and keyboard have put me off. I have been using thinkpads for many many years, but the design keeps getting worse, so I think my current workstation could be my last thinkpad. Might try to attach a W510 keyboard to the new MacbookPro with retina display and run Win7. Now that would be a great machine, but I would prefer it to be black and from Lenovo.

    I agree, this is a good wish list.
    My main gripe is the new keyboard.  I am with the original poster, if I'm buying a friggin workstation model which is a brick ANYWAY, add a few MM in height and put a classic thinkpad keyboard with travel more akin to desktop keyboards.
    It's an interesting comment about chiclet keyboards and gaming, because in the desktop world gaming keyboards are not chiclet, and are often pretty fantastic keyboards to type on.  I use a Razer Anansi on one of my work desktops, I think it's delightful to type on.
    So, my wishlist improvements to the classic Thinkpad keyboard:
    1.Decrease flex, X220 is not bad but the W520 has quite a bit, this shouldn't be difficult.
    2.Increase travel, depth of keyboard
    3.Slightly Increase thickness of plastic used in keys.
    Again, it's a workstation.  I don't care if it's a little thicker, I would much rather have the component with which I am in contact 100% of the time be >exceptional<, not this chiclet crap.
    A strange note, on my W520 (i don't know if this is the same in all), the right shift key has a different feel to the rest of the keyboard, I think it's because it sits on top of a support element or something.  But I wish the entire keyboard would feel like that key, that would be perfect, I think a lot of it would be addressed by a more robust structure underneath.

  • ITunes Store Apps (etc) Page Numbers, Wish List For My iTunes Account

    Why doesn't the iTunes Store have page numbers under each page of the items (songs, e-books, apps, etc), because with over 200000 apps I will be damned if I am going to go back to the start of each apps category (for example) clicking in increments of 12 apps at a time until I get to app number 7264!!!!!! I WILL JUST STOP USING THE APPS STORE!!!
    Some apps have a PRODUCTIVITY button in the left top corner that will take you back to the last apps browsing page you were on, while other apps have a BACK button in the top left corner WHICH TAKES YOU RIGHT BACK TO THE FIRST PAGE OF THE APPS CATEGORY YOU WERE BROWSING, so if you were up to app 734 (for example) you have to click through 64 apps pages JUST TO GET BACK TO THE APP YOU WERE UP TO LAST!!! INFURIATING - BEGGARS BELIEF!?!
    WHY CANT I CLICK AN 'ADD TO WISH LIST' BUTTON ON EACH APP PAGE, SO I ALSO DONT HAVE TO BROWSE THROUGH ANOTHER 100 PAGES OF APPS TO FIND THE ONE I LOOKED AT IN MY LAST ISTORE SESSION??????
    Hasn't anyone at apple used eBay or amazon???
         

    Update: As of this morning the updates were GONE again, so I'm thinking this may recur on and off until all settles after the launch of new software and iDevices this week.

  • Error message (-1202) when I try to buy / add to wish list? any help?, error message (-1202) when I try to buy / add to wish list? any help?

    I have tried a number of the fixes on here for the loading issues but they don't solve my particular problem. 
    iTunes loads perfectly and i have access to buy stuff from my iPhone 4.  However, when I want to wish list stuff from my phone or the computer i get an error message (-1202).  This will not let me buy or list. 
    This seems to have happened since the most recent software update. 
    It is also happening on my husband's account (which is separate from mine) and we use the same computer.
    Any help would be appreciated.
    Have tried
    winsock thing
    restart
    checking date and time settings
    SSL3 and TLS 1 settings being enabled
    Am starting to lose will to live. Have loads of itunes vouchers to spend from recent birthday and we can't

    some folks with vista have found a work around by right clicking on 'redeem' and selecting 'copy'. Then go to internet explorer and paste and hit enter. You may now be able to redeem your cards this way.
    This issue appears to be a certificate issue with the system. Unfortunately windows does not have a link to install these root certificates from the website for vista like you can XP, so you cannot reinstall them if something gets corrupted.
    You may have to redeem on another computer or email itunes through expresslane.apple.com with the codes from the gift cards and explain the situation. they may be able to redeem them to your account for you.
    The last alternative would be to get a Mac.

  • My wish list for 9.0.3

    I saw someone earlier this month listed their excellent wish list. The Jdev team responded and that was terrific. I just thought I'd list my growing list so they can see it, although I doubt any of these will make it to 9.0.3, unless they were already slated for inclusion. The list is in no particular priority order, it's just in the order that I encounted the bugs/desires.
    1.     Enable mouse wheel functionality. (Fix Bug 2055415)
    2.     Want to be able to drag and drop variables into watch window.
    3.     Want to be able to right click, and add the variable to the watch list, even though the program is not running yet. Now it only works if you stopped for a break point.
    4.     Not have JDeveloper window have its Normal window size reset to full screen upon startup. (Fix bug 1655341)
    5.     Code Insight sometimes is hard to invoke. For example, if I have a function, with a bunch of parameters already entered) and I click in the argument list, nothing happens (no popup). If I hit crtl-space, it brings up a huge list of all kinds of things that Im not interested in. What I really want is a way to bring up the list of argument parameters. Apparently the only way to do this is to get rid of all prior arguments and the left parenthesis and retype the left paren. But then if you say, paste in the existing arguments (which you cut to save them), then the argument list pop-up/tool-tip disappears and youre out of luck again. Basically, just have it work like Microsofts Intellisense which seems to know more intuitively what you want and when you want it. They even have a button on their edit toolbar which you can click when youre in an arg list to bring up Intellisense. Id like that button in Jdev.
    6.     Want easy way to comment out blocks of code. E.g., highlight lines and hit ctrl-/ and it will put a // in front of each line.
    7.     Want to be able to select a line of code by clicking in the left margin (arrow changes directions common in many applications, such as MS Word) rather than clicking and dragging a selection down to the line below.
    8.     Want a way to have bookmarks in the code editor. (Fix bug request #1797151.)
    9.     Dont have title bars of the various windows in the development environment have double lines across them. This makes it tough to find the proper line that you need to grab (cursor turns into double arrow head) to resize the window.
    10.     Upon restarting Jdeveloper, want replacement options (Single, Global, Prompted) to remain what I selected in my prior session.
    11.     Would like modified files in the System-Navigator window (System tab) to be in color (e.g. Red) rather than just black italics (not so obvious and hard to see).
    12.     When I click inside a method, the name of the method (which you see listed in the structure window) should become highlighted. Currently if you double clicked one method in the structure window and went there but then moused down in the code editor window and clicked in a different function, then the function (that you left) in the structure goes from blue highlighted to gray highlighted (fine I guess but would rather have no highlighting ) but the new method does not become highlighted (my gripe).
    13.     When youre going through the code doing search & replace, it should highlight, in the structure window, the name of the method that youre currently in (the place where its prompting you to replace).
    14.     When youre going through the code and stopping at breakpoints, it should highlight, in the structure window, the name of the method that youre currently in (the place where its prompting you to replace).
    15.     The only way to accept a suggestion from Code Insight is to press enter. It would be nice if you could also use the next logical operator like . (dot). Then the editor should insert the selected suggestion followed by . and start Code Insight again on the next level of the expression. There's already an enhancement request filed for this: #2197394
    Gee, its starting to sound like I want JDev to look like Microsoft Visual Studio. A colleague just handed me Microsoft's Visual J++. I'm wondering whether to try it. I'm tempted but I'll hold off for a little bit.

    Hi Mark,
    Responding to the Code Insight and Code Editor areas:
    5. Code Insight sometimes is hard to invoke. For example, if I have a
    function, with a bunch of parameters already entered) and I click in the
    argument list, nothing happens (no popup). If I hit crtl-space, it brings
    up a huge list of all kinds of things that Im not interested in. What I
    really want is a way to bring up the list of argument parameters.Code Insight has two flavors. One is code completion, Ctl-space, which shows you a popup list of possible completions. The other is parameter info, Ctl-shift-space, which shows you a tooltip with the list of argument parameters as appropriate. Different hot-keys. They can coexist on your screen when
    appropriate (starting with 9.0.3).
    Apparently the only way to do this is to get rid of all prior arguments
    and the left parenthesis and retype the left paren. But then if you say,
    paste in the existing arguments (which you cut to save them), then the
    argument list pop-up/tool-tip disappears and youre out of luck again.We've made a lot of improvements to Code Insight for release 9.0.3. It's much stabler than in v9.0. For example, the above problem is fixed for 9.0.3 (assuming I understand your request correctly).
    Basically, just have it work like Microsofts Intellisense which seems to
    know more intuitively what you want and when you want it. They even have
    a button on their edit toolbar which you can click when youre in an arg
    list to bring up Intellisense. Id like that button in Jdev.Hmm... we hadn't thought of that. Thanks for the idea. Can't guarantee that we'll implement it, but I'll bring it up for discussion.
    6. Want easy way to comment out blocks of code. E.g., highlight lines
    and hit ctrl-/ and it will put a // in front of each line.#2175300. Implemented for 9.0.3.
    8. Want a way to have bookmarks in the code editor. (Fix bug request
    #1797151.)Implemented for 9.0.3.
    10.     Upon restarting Jdeveloper, want replacement options (Single,
    Global, Prompted) to remain what I selected in my prior session.Implemented for 9.0.3 as an option in the preferences for the Code Editor.
    Couldn't find a specific bug number for that.
    12. When I click inside a method, the name of the method (which you see
    listed in the structure window) should become highlighted. Currently if
    you double clicked one method in the structure window and went there but
    then moused down in the code editor window and clicked in a different
    function, then the function (that you left) in the structure goes from
    blue highlighted to gray highlighted (fine I guess but would rather have
    no highlighting ) but the new method does not become highlighted (my
    gripe).
    13. When youre going through the code doing search & replace, it should
    highlight, in the structure window, the name of the method that youre
    currently in (the place where its prompting you to replace).
    14. When youre going through the code and stopping at breakpoints, it
    should highlight, in the structure window, the name of the method that
    youre currently in (the place where its prompting you to replace).Treating all three as a single request: Any time the cursor moves in the code editor, hilite the appropriate node in the structure pane. This actually did occur to me just recently. Filing ER 2428707 to track this request. Probably won't make it into 9.0.3.
    15. The only way to accept a suggestion from Code Insight is to press
    enter. It would be nice if you could also use the next logical operator
    like . (dot). Then the editor should insert the selected suggestion
    followed by . and start Code Insight again on the next level of the
    expression. There's already an enhancement request filed for this: #2197394Won't make it into 9.0.3.
    Thanks for the suggestions!
    --andy
    JDeveloper Team

  • My iWeb Wish List for '07

    Just sent the following to Apple's iWeb Feedback; figured I'd post it here as well just for the heck of it.
    Some of these requests may apply only to my particular -- some would say peculiar -- workflow, but I suspect there are at least a couple which other user's might share.
    (using iWeb 1.1.2 under OX X 10.4.8)
    One User's iWeb Wish List:
    1) Option to have Comments included in Captions for online albums.
    When Importing pics from iPhoto, there should be four checkboxes:
    one for Image Name (i.e. Title),
    one for Date,
    one for Time,
    and especially one for Comments!
    -- allowing the user to determine which of those four bits of iPhoto info are included in the Captions for any kind of online album. It's crazy that right now I can't put up an iWeb photo page that automatically includes the Comments I've taken the time to enter in iPhoto as part of that photo's Caption online.
    If iWeb wants to claim true integration with iPhoto, then this feature seems like a pre-version 1 no-brainer.
    2) "Open in New Window?" option for Hyperlinks.
    When designating some text or a picture as a link, PLEASE give us the option to make that link one that will open in the browser's current page (the default), OR one that will open in a NEW PAGE.
    That's a basic design choice which the creator of any web page should be allowed to make.
    (At least with Homepage I was able to fool it by adding
    " target="_blank
    to the URL I was entering, making Hompage think the addition was actually part of the URL, but causing any browser to see it as the HTML command to open the preceding link in a new window. Unfortunately I can't seem to get this trick to work in iWeb -- would love it if someone could tell me why.)
    3) User-configuarable slideshows.
    When I first started using iWeb, and saw how configurable the pages themselves were, I naturally searched for the Slideshow options. Just basic stuff, like the seconds per-slide duration; the kinds of transitions; the default to change slides manually or automatically; whether to have the controls and the top row of thumbs always visible or show only when you mouse over them; whether to use the reflection effect; what color background to use; the image display size -- that kind of thing. (The kind of control offered in the shareware program ShutterBug, for example.)
    You already know what I found: zilch. It almost feels like two different teams developed the two parts of the program (the wonderfully-customizable Page Creator vs. the take-it-or-leave-it Slideshow) -- or maybe they just ran out of time before the iLife '06 release, and had to throw in the Slideshow part before it was ready.
    4) Previewable Slideshows
    And then I find that not only can I not customize the Slideshow in any way, I can't even preview it within the app itself -- I have to publish the page first, then "preview" it in a browser. This whole section of the iWeb app is definitely not ready for prime time.
    5) More web viewing options.
    The viewer of my iWeb photo page should be able to click on a thumbnail and have it open as either an image in its own window, OR (as is the case in HomePage) as the first frame in a slideshow.
    And even when it opens as an image in a separate window, there should still be the basic <-PREV and NEXT-> buttons to allow the viewer to keep looking at the full-sized images without having to close each window and then double-click on the next thumbnail.
    6) Automatic page length extension.
    Would be a nice user pref to have the page height automatically adjust as new content is added, or as pix are dragged down past the current bottom of page.
    7) Space-saving Import options.
    In order to conserve space on our .Mac accounts, and make for better downloading times of the photo page itself, iWeb needs to offer several Import options once the desired pics from an iPhoto Library (or just from a Finder folder) have been selected:
    Let users pick whether the photos will be uploaded full-size, or automatically reduced to a user-definable maximum height and/or width.
    And make sure to also have (perhaps under an Advanced tab) a sliding scale of jpg quality, with an instant feedback showing what the total file size will be at that particular setting.
    These size and quality parameters should be applicable either to individual files, or to the entire Import as a whole.
    8) Tell us the URLs.
    Simply mousing over a page or site name in the Site Organizer pane (or right-clicking on same), should reveal its full URL as currently published, and allow you to easily copy that URL to the Clipboard (and in turn Paste that URL into a document or an e-mail).
    I know the iWeb URLs all follow the same naming pattern, but why not make it easier for us to access and Copy/Paste those URLs, instead of having to "figure them out"?
    9) Make the Text Boxes easier to see and to move.
    Right now a newly-inserted Text Box is virtually invisible, and until you actually type some text into it it's bloody hard to grab a hold of.
    I'm hoping most of these features have already been incorporated into the next release of iWeb -- and if not, that you'll give serious consideration to implementing all of them as soon as possible. Your users will thank you!
    John Bertram
    Toronto

    This is a user forum, so we can't help with this! You
    can provide iWeb feedback in the File menu of the app.
    Indeed -- hence the very first line of my post:
    "Just sent the following to Apple's iWeb Feedback; figured I'd post it here as well just for the heck of it..."
    Also why I didn't post it as a Question seeking help. Nevertheless, thanks for pointing me both to your site and the RowanCottage one. I'll check out all the iWeb tips on both.
    Meanwhile...
    2) "Open in New Window?" option for Hyperlinks.
    Here's how to do it:
    http://web.mac.com/varkgirl/iWeb/Varkgirl/Open%20links
    %20in%20new%20window.html
    Let's hope that any of these workarounds will soon be a thing of the past. I have to believe that the iWeb team has realized by now that giving the user (i.e. the iWeb page creator) the option to designate how each and every link should open (same page or new page) is such a basic, obvious feature that it MUST already be implemented in the next iWeb, and is only awaiting the release of iLife '07 -- or whatever the next iLife suite will be called.
    6) Automatic page length extension.
    Would be a nice user pref to have the page height
    automatically adjust as new content is added, or as
    pix are dragged down past the current bottom of
    page.
    Um, it does this already.
    Then I must be doing something very wrong. I just tried again -- grabbed a graphic, dragged it down to the bottom of the page so that half of it was now out of site, let go and voila -- nothing. "Content Height" in the Page Inspector didn't change one pixel.
    Even the "Creative" at the downtown Toronto Apple Store -- who I happened to see giving an iWeb demo/workshop the other day -- said the only way to extend the page length was to add a larger value to the Content Height box in the Inspector.
    But I'd still love to know if there's a more intuitive, hands-on kind of way.
    9) Make the Text Boxes easier to see and to move.
    Turn on "Show Layout" in the View menu
    I already did. My point was that even with "Show Layout" on, the faint grey text box that first appears is often hard to see, especially against certain backgrounds. Interestingly, that same Apple Store staffer made the exact same observation (with no prompting from me), and also commented on how the initial blank text box was also tricky to grab and reposition -- he said he always just types some random garbage text first, THEN moves the now much more easily grabbable text box to where he wants it on the page.
    Anyway, I felt at least a little vindicated to hear an Apple frontline employee share a couple of the same little annoyances that had been bugging me just a few days earlier!
    Cheers,
    John Bertram
    Toronto

Maybe you are looking for

  • Ipod classic won't sync with iTunes 10.4

    My ipod classic 160 does not want to sync with the latest iTunes update(s).  The same thing happened with the last update about a month ago.  How do I fix this?  The last time I put the ipod in disc mode and that seemed to work.  But it isn't working

  • USB Hard Drive Disappears after 10.6.3 update

    My Samsung S2 640 GB USB portable hard drive is missing from Desktop, Finder and Disk Utility-- but visible in System Profiler after 10.6.3 update. It was fine before the update. Plugged directly into rear of iMac, I changed cables and slots-- no joy

  • Tables and Multiple Pages

    Hello, I'm a beginner user of InDesign, using CS5, and am needing some help with tables. I'm creating a schedule for an event. I have a 4 page, facing-pages, each page is letter-sized with vertical orientation. I'm inputting the schedule data into a

  • Child report with Download and back option

    Hi, i created a parent report1 and navigating to the child report2. in my parent report1 i see the download, refresh and print options as i enable them by the report links option. when coming to the child report2 i am not finding them. how can i add

  • Photoshop CS6 issues

    I have 2 issues. #1 - Bridge crash's upon launch #2 - I cannot install Camera Raw 7.1. I get an "Update Failed" saying "Unable to write at this location: '/Users/MediaServics?library/Application Supposrt/Adobe' Please provide write permissions to thi