Common Frustration

I read this in an article about Linux, but I think the idea certainly applies here as well (and probably in forums everywhere).
I posted a message on a forum, but Linux people were mean to me.
in most examples of this complaint, the individual concerned brought wrath on themselves in one of several ways:
b) By not doing basic homework before asking for help, such as searching the forum for a particular issue that may be extremely common. There's only so many times community members can answer the same query before getting annoyed;
The italics and underlining are added.  I personally would include "getting a proper education in video production" as the very first item on the list of Basic Homework - whether it's a formal education in school, on-the-job-training at a company, or just oodles of reading by a hobbyist, one should be sufficiently familiar with the world of professional video production before one even buys Premiere Pro.  Hell, if I had my way, there'd be an Adobe cop in front of the "store" checking credentials.  Like the line says, there's just so many "why can't I edit my non-editable media" questions one can take.  Unfortunately, we're not really allowed to post as a response: "Dude, you're an idiot.  You have no idea what you're doing, and no business using this software, so just get the (bleep) out of here."
I feel somewhat better knowing my frustration is shared by users in other online communities.

Jim,
 You "killed" the fora. I went to reply, and the entire Adobe forum server died! 
I feel your frustration, but easily see Jeff's points above.
One thing that modified my thinking a bit, was spending some time in the Premiere Elements forum. Bought that program to handle some odd formats, and decided to learn more about it in the process.
I read every article in it. I saw the same five questions asked 1000 times. The MOD over there, Steve Grisetti, patiently answered each one. Usually, this was with a link to the FAQ's. I grew to appreciate his patience. Now, I realize that the normal users of PE are not the norm for PrPro users, but sometimes they can be very similar.
With the old fora, Search was easier and the display of the FAQ's was better. Now, a user, especially a new one, will have a much more difficult time. Google is not any help yet, as most/all links to older Adobe forum articles are dead. Hope that the 'bots fix those, if possible.
Also, many users in PrPro fora are trying to do work and get hit with deadlines. They become frustrated and terrified. At one time, or another, it happens to all of us. They reach out, in desperation, for any sort of help, and do not clearly think things through. Heck, I've done it too many times, and I should know better.
Personally, I think that the re-inclusion of Harm's "How to Ask a Question," is a great one. Now, if only more would read it though, before posting.
My time in the PE forum has changed the way that I answer many questions. Some of that does carry over to the PrPro and Encore fora, and I may come off as condescending. That is never my intent - only to get useful info into the hands of the posters. I never wish to speak down to anyone, but have found that if I use the jargon, however proper, it often does not translate to a new user of the software, or to one new to NLE’s or even to computers.
While you and I have slight disagreements, on the subject of education (you make good points, BTW), I try to supply a bit of that education within the fora.
Yes, I do feel your frustration, from time to time, especially when a poster begins ranting, and will never furnish the answers to questions asked by others in a very courteous manner. That gets me, more than the same question being asked ad infinitum.
Just some musings,
Hunt
[Edit] Boy, with the forum logging me out every 40 sec. and the formatting going wonky, this might be the most "messed up" reply that I'd had in months!

Similar Messages

  • ADF UIX cancel/rollback button?

    Hi
    We're having a fair amount of trouble implementing a "cancel" button in our ADF UIX application (JDev 10.1.2). Apologies to those who read this same post on the ODTUG mailing list..... I'm hunting for even a hint of an answer before I approach Oracle Support.
    To set the scene, we have a parent VO "Departments" with child VOs "Dispatch" and "Agency". Dispatch also has a FK to Agency.
    We have a UIX view-screen that displays in a master-detail relationship Departments and Dispatch. From this screen the user can select the edit button, which navigates to an input-form screen to edit the currently selected Dispatch record.
    The Dispatch record has effective_from and effective_to dates. The underlying EO has a MethodValidator that ensures the from date <= the to date.
    On the edit screen we currently provide 2 buttons, Ok and Cancel. The Ok submitButton is bound to the commit binding, and navigates back to the view page via a struts link on completion.
    If the user selects the ok button and MethodValidator returns an error, the edit page's MessageBox displays the error and the user remains at the edit page until they resolve the issue.
    Our problems start with the cancel button.
    Originally we implemented the Cancel button as a simply "button" that navigated back to the view page. This worked well as the changes are never submitted, and on returning to the view page the record is presented in it's original state before being edited, thus the user's changes have been "cancelled".
    However if the user was editing an existing record, entered invalid dates that violated the MethodValidator, clicked ok and saw the MethodValidator error, then clicked cancel, on returning to the view page, any changes to the underlying record are visible including the invalid dates. I believe this occurs because the record has been submitted to the mid-tier by the ok button, and as such the changes now lies in the mid-tier.
    Given that a cancel "button" which simply navigates back to the view page is not a viable solution, we decided to investigate using a rollback button on our edit page, which then navigated back to the view page.
    There is a nasty side affect in using the rollback functionality, and has been a continuous frustration mentioned on OTN. When rollback is issued, it appears all iterators in the running application have their current row reset to the first element.
    This is a pain as in our example this results in not only the Dispatch iterator being reset to the first element, but also the parent Departments iterator, and presumably all other iterators in the application too. This would be an extreme annoyance to the user in every time they selected cancel, they would then need to navigate back to the correct Departments and Dispatch record if they wanted to make a different change.
    As such it is necessary to write some code to store the iterator positions before issuing the rollback, rolling-back, then restoring the iterator positions from the saved states.
    Luckily we found some code on OTN to do this:
    ADF - cancel button not working in input form(add new row)?
    This mechanism appeared to work, but, then, we did find one problem.
    I described at the beginning that our Dispatch VO is not only related to Departments but also Agency. To cater for this in our edit screen by including a LOV bound <messageList>, which displayed the relating Agencies for the user to select from.
    In using the pinched OTN rollback code, in the same scenario as previously, when the user edits a record, invalidates the MethodValidator after clicking ok, then clicks cancel, on returning to the view page, the field in Dispatch that represents the Agency is incorrectly showing a numeric result such as 0, 1, 2 etc. We realised that the value being shown is the previous edit screen's <messageList> internal index number representing the value selected in the list, and not the actual value itself.
    We're note sure why the OTN rollback code is causing this to occur. Though it restores the Agency iterator's position, it shouldn't result in the <messageList> index being written to the underlying Dispatch agency field, but rather the value the <messageList> index represents.
    It appears to me we're caught between a "rock and a hard-place" here. The simple solution of using a cancel "button" doesn't work when errors are raised. The complex case of using a "rollback" button doesn't work due to the problem with the <messageLists>.
    My research on OTN shows the "cancel vs rollback" button is a common frustration. Can somebody help me in providing a satisfactory "cancel" button that I can use throughout my app please?
    Many thanks in advance.
    Chris Muir

    The stack:
    Class                     Method
    UsrEcvAmpdsViewRowImpl    setAgency
    UsrEcvAmpdsViewRowImpl    setAttrInvokeAccessor
    ViewRowImpl               setAttribute
    DCDataControl             setAttributeInRow
    DCJboDataControl          setAttributeInRow
    JUCtrlValueBinding        setAttributeInRow
    JUCtrlValueBinding        setInputValue
    JUCtrlValueBinding        setInputValue
    InitModelListener         _setInputValue
    InitModelListener         _doModelUpdate
    InitModelListener         eventStarted
    AbstractPageBroker        _fireUIXRequestEvent
    AbstractPageBroker        handleRequest
    BaseUIPageBroker          handleRequest
    PageBrokerHandler         handleRequest
    UIXServlet                doGet
    HttpServlet               service
    HttpServlet               service
    ResourceFilterChain       doFilter
    JAZNFilter                doFilter
    ServletRequestDispatcher  invoke
    ServletRequestDispatcher  forwardInternal
    ServletRequestDispatcher  forward
    RequestProcessor          doForward
    RequestProcessor          processForwardConfig
    RequestProcessor          process
    ActionServlet             process
    ActionServlet             doGet
    HttpServlet               service
    HttpServlet               service
    ResourceFilterChain       doFilter
    JAZNFilter                doFilter
    ServletRequestDispatcher  invoke
    ServletRequestDispatcher  forwardInternal
    ServletRequestDispatcher  forward
    RequestProcessor          doForward
    RequestProcessor          processForwardConfig
    RequestProcessor          process
    ActionServlet             process
    ActionServlet             doGet
    HttpServlet               service
    HttpServlet               service
    ResourceFilterChain       doFilter
    JAZNFilter                doFilter
    EvermindFilterChain       doFilter
    ADFBindingFilter          doFilter
    ServletRequestDispatcher  invoke
    ServletRequestDispatcher  forwardInternal
    HttpRequestHandler        processRequest
    HttpRequestHandler        run
    HttpRequestHandler        run
    ReleasableResourcePooledExecutor$MyWorker run
    Thread  runAt a wild guess, InitModelListener is causing the issue, because it's the first place where we can see a setInputValue occuring?
    To make this official I've raised a TAR (4613003.992) with Oracle Support with a cut down version of our app to work through the issue.

  • How do I get default/automatic reminders or alarms for every new event?

    I want to set a preference so that all the new calendar events have an alarm or reminder that I have to clear after I get the reminder. At least a daily reminder list or even repeating alarms starting 2 hours before the event.
    Is there a way to do this in the IpHONE calendar preferences or settings; do I have to change it in iCal then sync and that preference will transfer? I've been through every setting menu on the iPhone&Calendar as well as peeking into the settings in iCal.,
    Does anyone know how to do this?
    -Cryptic

    I would like to second this as a common frustration. Migrating from other phones with calendar features I was surprised to miss my first appointment. I would expect to look under settings > mail, contacts,calendars, calendar and see a setting for default appointment reminder so that every time I create an appointment in a hurry I don't have to remember to set a reminder safe in the knowledge it set it to 15 mins on my behalf.

  • XP SP3 and Vista SP1 very unstable

    Hello,
    I have a 24" Mid-2007 iMac, with 4GB of ram. I'm trying to setup Boot Camp with either XP or Vista so I can run some CAD software (Solidworks) for a class I'm taking.
    I installed XP SP3 using media that had SP3 pre-applied, and installed the Boot Camp drivers that came with my computer, then downloaded the Boot Camp 2.1 update. However, applications frequently crash - windows update fails randomly, the solidworks installer crashed, internet explorer crashes, etc.
    I then decided to try out Vista - formatted the partition, started from scratch, same deal. Ran the Boot Camp driver DVD, applied the Vista Boot Camp 2.1 update, then the crashed begin. Windows Update failed about halfway through the updates, internet explorer crashes, didn't even bother installed Solidworks.
    What is going on? I have absolutely no problems in OS X, and I've never encountered anything like this in XP or Vista before on other computers. Jokes aside, a fresh install typically works for a while. It makes me think its a hardware issue - but what hardware failure would only manifest itself in windows?

    Pewp wrote:
    You are hilarious, I haven't even insulted anyone here, nor did I get personal.
    Your arrogant approach in your very first post was indeed personal - and insulting in it's tone. Remember my cyber friend, we have no emotions behind the words we're posting here - and we all should keep in mind that communication is 90% NON VERBAL - the 90% filtered out via black letters on a white page...
    Just my 2 cents on emails, forums, and the like.
    I'm pretty unbiased in terms of the OS argument.
    OK, I'll take that at fave value, however your words that follow (from an earlier post of yours) read as pretty biased, IMHO:
    Would you prefer it if Microsoft were to call these service packs XP 1.3, 1.4, 1.5, etc and charge people for a new OS or an upgrade? Also, don't say Apple has never provided security updates for OS X or any of it's software. I just said, before you go bashing things (like you were), perhaps you should get a bit more informed about what you are bashing. You are the one that got all defensive about it.
    That was quite a defensive statement from you. If someone "bashing" MS's decision to cap a limit on RAM usage upsets you, DON'T DEFEND MS by calling me defensive - contradiction isn't pretty.
    I did offer up some advice in that you should give Vista 64-bit a try because it is not the evil OS that most make it out to, especially post SP1. So, due to that I viewed you as being misinformed.
    Fairly judgmental of me "personally" since you do not know of my experience with Vista. I do know of my experience with Vista and wouldn't want to deal with it on a regular basis - or infrequent basis for that matter. Again, if my opinion threatens yours somehow, don't "defend" it. Live and let live - my choice, my experience - you're not walking in my shoes so don't tell me to/expect that "I should like Vista" as you do.
    I guess what I don't get is how the lack of memory support in 32-bit XP would be a common frustration. People should know this fact and should prepare for it if they want to get the use out of all their memory.
    A valid point. For the sake of clarity I did research it as best as I could under the circumstances and within the time which I had available. To think otherwise as you suggest is - well, an assumption - and an inflammatory one at that.
    As far as wasting RAM: I specifically mentioned only wanting more RAM for SOlidWorks in the XP enviro... What I dind't mention is that I'm a heavy Photoshop user, and often have all sorts of CS4 apps open concurrently. So my RAM isn't wasted, it's just not being fully exploited in my humble PC experiment. Thank you for caring so about it.
    If you say issues with Windows just working in general with boot camp then perhaps you shouldn't point the finger at windows and maybe boot camp?
    Sir, re-read my previous posts, please. You'll discover that I never complained about Windows' functionality or it's "working in general with BootCamp". My specific gripe, rant, bloviation was entirely focused on Microsoft's decision (obviously a business-driven decision) to limit RAM usage IN WHATEVER hardware - to 4GBs. I'm merely experiencing it personally in BootCamp, although I've hit that frustrating limit when I tech'ed 130+ PCs for nearly two years...
    Want to kiss and make up now?
    Sorry, you're not my type But I will peacefully co-exist with you in a cyber space.

  • RC Table with height=100% disappears

    Hi JDev gang
    Under JDev 11g TP2, I've an issue with the RC table control.
    I've dragged and dropped a VO data control onto my page and created an <af:table>. I've then placed the <af:table> inside an <af:panelCollection> with defaults values. If I change the panelCollection's height to 100%, at runtime the table does not render inside the browser. However if I set it to a pixel height it works fine.
    My code as follows:
    <af:panelCollection inlineStyle="height:100%;">
      <af:table ..... all the usual table attribute suspects>
      </af:table>
    </af:panelCollection>As a side note, setting the panelCollection's width = 100% works fine.
    Any idea what's going on?
    Regards,
    CM.

    Hi Chris,
    This is a common frustration I have seen with web browsers. Percentage based heights are not reliable.
    I see there is a release note that specifically addresses this at:
    http://www.oracle.com/technology/products/jdev/htdocs/11tp/readme.html#faces2
    Scroll down to the "Page Layout Tips" section for a good explanation of how to avoid using percentage-based heights.
    Regards,
    Matt

  • Any way to batch gradual exposure change?

    I make time lapses and there is a very common frustration where flicker is created by small exposure changes due to the aperture blades not falling in the same position or when using an auto mode where exposure changes and the camera changes exposure values.  To problem is worsened when doing a time lapse during sunset/sunrise when one expects the exposure to change drastically but needs to compensate in order to get the entire scene.
    I've experimented with using Lightroom's "Match Total Exposures" feature which is great at adjusting the exposure to even out the discrepancies between changing exposure values.  But this doesn't take into account the exposure of the scene is expected to change.  So when doing this for a sunset, as I increase the shutter speed to account for the setting sun, Match Total Exposures adds negative EV because it recognizes the longer shutter speed would be over exposing the selected "correct" photograph.
    I would very much like to find a way to use the Match Total Exposures feature to first even out the exposure changes from the changing parameters, and then apply a batch gradual exposure change to the series so that it will know to allow for these changing lighting conditions.
    Lightroom is great for adjusting individual photos or for a series under the same lighting conditions using (sync settings and match total exposures) but with changing lighting conditions is would be great to have the ability to gradually adjust values, not just exposure but other tone values.

    You can probably fairly easily modify the script here.

  • Common Error Mesg Frustrating

    hi,new to java,soplease be patient:
    1) I've installed jdk1.6 on c drive in a folder named java
    2) I've also saved the "HelloWorldApp.java" text file in the same folder
    3) Now I try to run with C:\java\jdk1.6.0_10\bin\javac HelloWorldApp.java at the command prompt
    I get error: "javac: file not found: HelloWorldApp.java"
    I've also set the classpath permanently to jdk
    Thanks for your help!

    dogar wrote:
    my current directory when I launch the cmd prompt is nowlikethis:
    C:\Documents and Settings\user1\Desktop\Java>cd jdk1.6.0_10\bin
    Here you have changed the current directory to the jdk.bin directory. Your HelloWorldApp.java is is in the ...Desktop/Java directory, right?
    C:\Documents and Settings\user1\Desktop\Java\jdk1.6.0_10\bin>javac HelloWorldApp.java
    javac: file not found: HelloWorldApp.java
    Usage: javac <options> <source files>
    use -help for a list of possible optionsOf course you get this error because your command is telling javac to look in the CURRENT DIRECTORY (which the jdk\bin directory) for HelloWorldApp.java. Try thisC:\Documents and Settings\user1\Desktop\Java\jdk1.6.0_10\bin>javac "C:\Documents and Settings\user1\Desktop\Java\HelloWorldApp.java"

  • TitanTV listings page NOW affects my Firefox. I'd commonly run it -multiple tabs- with no problem at all. Now-- Hanging!; flash crash,etc.. What jusT changed??

    (Using WiFi and all-- library computers, etc.. I got in the habit of keeping multiple tabs open. I came to Firefox because it handled that usage much, much better than any version of IE. Running the multiple tabs of the future television listings made sense and Was very convenient.. Was. Now it seems -after eliminating other possibilities* that the TitanTV page is the cause of my Firefox Hanging.. (when open at all It slows even Other pages' scrolling..?! ) So yeah-- 'Hanging,' unresponsive page, flash/shockwave -type crashes etc. ,etc. Obviously..I don't Have to use the page.. or run it on this browser but What ALL Of A Sudden is causing this to occur?? Is it the ad content on there somehow? I'd love to find out at this point... and I do prefer this to the other browsers. [*And did follow the posted usual troubleshoots as well as uninstall/re-install on both the Firefox and antivirus (Avast), clearing the cache memory...] I'd love it if I could solve this new mystery here.... Thanks! )

    Tom, <br />
    I am glad it is working again after following Moses's advice.
    You say give us volunteers better ammunition, would help with troubleshooting. Well one thing you could have done along those lines was to follow the prompts to include full troubleshooting information in your question.
    You have marked the thread solved and so it appears running in safe mode with plugins disabled solved the issue for you. That is commonly seen in searches as a troubleshooting step because it is useful. Firefox is highly customisable something people like, but the downside is all the various addons do not always work well in every situation and combination.
    The action was only intended as a troubleshooting step, but you may well have more than one single issue here and may need further help sorting that out. I appreciate you are frustrated & not swearing '''at''' ''Moses'' but you are probably more likely to find help if you tone down the language.
    I can not be sure yet but probably most of you problems are not directly related to the upgrade of Firefox from Fx28 to Fx29.

  • Whenever I connect my 4th generation iPod thouch, all of the playlists on my iPod get deleted. This is very frustrating. Someone please help me? I searched the settings on iTunes and couldn't find anything.

    Whenever I connect my 4th generation iPod thouch, all of the playlists on my iPod get deleted. This is very frustrating. Someone please help me? I searched the settings on iTunes and couldn't find anything.

    Also, when I go on to safari, another alert pops up that safari cannot verify the identity of the website, anything that I type in to as common as google.com. It gives me 3 options to either cancel, look at details, and continue. I've looked at the details of the website of Google and it is legitimate the site. Any help?

  • Common Abbreviations Used When Setting Up and Troubleshooting HP Printers

    Here is a list of common abbreviations and phrases used while trying to troubleshoot network-connected printers within the forums and other web-based support documents:
    Ad Hoc –  Latin phrase meaning "for this" and is used when describing a type of connection between the printer and computer by-passing the router.  This is not the recommended network connection by HP support (see SNC below).
    ADF – Automatic Document Feeder which is the tray on the top of a printer used for multipage scans and faxes.
    AES – Advanced Encryption Standard used to describe a password-protected router/internet connection.
    AiO –   All-in-One
    AP/STA – Access Point Station or another word for router.
    ASIC – Application Specific Integrated Circuit
    AWC – Auto Wireless Connect
    BIOS – Built Input/Output System
    BSOD – Blue Screen of Death
    CGD – Color Graphic Display
    CMD – Command
    CMYK – Cyan Magenta Yellow Black
    CNG (tones) – 1100 Hz tone stands for Calling Tones used on landline fax machines.
    CPU – Central Processing Unit
    CUE –  printer version 10-14 also known as Solution Center.
    CVN - Card Verification Number on the back of a credit card.
    DHCP – Dynamic Host Configuration Protocol
    DIM – Digital Imaging Monitor
    DMI – Desktop Management Interface
    DNS – Domain Name Server
    DPI – Dots Per Inch
    DSL – Dedicated Service/Subscriber Line or type of digital internet service bundle.
    ECM – Error Correction Mode in advanced fax settings.
    EIRP – Equivalent Isotropically Radiated Power
    EMI – Electromagnetic Interface
    ESP – Extended Service Plan
    EWS – Embedded Web Server
    FFC - Federal Communications Commission regulates all forms of communication.
    FoIP – Fax Over IP
    FPU – Floating Point Unit
    FTF – First Time Fix
    GBU – Global Business Unit
    GUI - Graphical User Interface or the images on a computer screen or display.
    HDMI – High Definition Multimedia Interface which is a type of plug-in to connect a computer to an HD monitor.
    HHO – Home and Home Office is the name of the sales department in HP www.hp.com/shopping
    HW - Hardware
    ICF – Internet Connection Firewall; Integrated Catalog Facility; Intersystem Communications Function
    IE – Internet Explorer
    IEEE – Institute of Electrical and Electronics Engineers
    EMF - Electromagnetic Frequencies
    IIC – Individual Ink Cartridge is a type of ink that consists of only one color.
    IP – Internet Protocol which is what a router uses to locate another network connected device.
    IPG – Image and Printing Group was one of the names of the printing department in HP.
    IPH – Integrated Print Head is a type of ink cartridge that has the printhead in it.
    IPIPA – Automatic Private IP Addressing also associated with an IP address beginning with 169.xxx.xxx.xxx
    IRIS – Integrated Risk Information System often installed with the OCR software and printer driver.
    IRQ – Interrupted Request or one of the original chat rooms and communities when the internet was first created.
    ISB  - Ink System Business
    ISDN – Integrated Services Digital Network
    ISF – Ink System Failure
    ISM – Instrumentation, Scientific and Medical radio band
    IVR – Interactive Voice Response
    IW – In Warranty
    LCD – Liquid Crystal Display
    LIFI – optical (light) version of WIFI introduced in 2012
    LOI – Low On Ink
    LPD – Line Printer Daemon
    MAC – Media Access Control
    mDNS – Multicast Domain Name Service
    MFP - Multi-Function Printer
    NAT – Network Address Translation
    NDU – Network Diagnostic Utility
    NTF – No Trouble Found
    NVM – Non-Volatile Memory
    OCR – Optical Character Recognition is often installed with the printer drivers to allow you to scan to editable text.
    ODD – Optical Disk Drive
    OJ – OfficeJet
    OOW – Out Of Warranty
    OOBE – Out Of Box Experience
    OSD – Onscreen Display
    PBX – Public Branch Exchange
    PCIE – Peripheral Component Interconnect Express
    PEN – ink cartridge and printer head
    PHA - Print Head Assembly that holds the ink in it (often removed while setting up a replacement printer)
    POTS – Plain ‘Ol Telephone System
    PPI – Pixels Per Inch
    PQ – Print Quality
    PSC - Print Copy Scan and quite often refers to the very first all-in-one printers.
    PSG – Personal Systems Group which was one of the names used to describe the computer department in HP.
    QRG – Quick Reference Guide
    RAID – Redundant Array of Independent Disks which is what is usually cleaned up while defragmenting a hard-drive.
    RFI – Radio Frequency Interference
    RPC - Remote Procedure Call often associated with the scan services.
    SNC - Standard Network Connection also known as Infrastructure which includes the printer, computer and a router.  **This is the preferred wireless connection supported by HP.
    SNMP – Simple Network Management Protocol
    SOHO – Small Office Home Office which is a division of printer support.
    SSID – Service Set Identifier
    SSRD – Support Sent Recovery Disc
    SW - Software
    T30 – Typical Fax Line and also describes the type of cord used for fax setup.
    TAM – Telephone Answering Machine not to be confused with voicemail.
    TCP/IP – Transmission Control Protocol/ Internet Protocol used to define the network location of a device (192.168.xxx.xxx) and can be good to know when trying to install a wireless printer on a computer.
    TIJ – Thermal Ink Jet which is the means to which ink is heated up so that it drips out of the cartridge.
    TKIP – Temporal Key Integrity Protocol that describes the type of encryption used during a password-protected setup on a router.
    TWAIN – (Technology Without An Interesting Name) Standard for linking applications and image acquisition devices.
    UDP – User Datagram Protocol
    UI – User Interface
    URL – Uniform Resources Locator also known as a web address or hostname and begins with http://
    URP – User Replaceable Part that can be purchased to fix a printer.
    USBSOW – Universal Serial Bus Statement of Work
    VGA – Video Graphics Adaptor
    VoIP – Voice Over IP
    VPN – Virtual Private Network
    WEP – Wired Equivalent Privacy which also means the passphrase or password for a protected network setup (Wireless Setup Wizard or USB to Wireless installation will ask for this and that is just the password used to get on the internet or to connect a device to your router).
    WIA – Windows Image Acquisition is the name of the service used to scan with an HP printer.
    WINS – Windows Internet Name Service
    WLAN – Wireless Local Area Networking or another type of internet connection.
    WOOBE - Wireless Out Of Box Experience often associated with Web-Services setup of ePrint on a new printer.
    WPA – Wifi Protected Access or another type of encryption used on a router.
    WPAN – Wireless Personal Area Networking
    WPS – Wifi Protected Setup often associated with a push button connection on the router instead of using a password. If you have this off then other people in the area can access your router for internet service.
    WWAN – Wireless Wide Area Networking
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!
    This question was solved.
    View Solution.

    At one point I was somewhat uneducated as a consumer on certain abbreviations.  I began to check around the internet but I never found a complete list of all of the abbreviations used in today’s technological world.  Over time I have collected a list of every network and printer-related term in relation to HP.  I am happy to share this with the world because sometimes when trying to troubleshoot within the forums and other web-based documents the writers can forget that not everyone knows the abbreviations and if you do not know sometimes you can get left behind and feel frustrated.   If you know of any other industry-standard abbreviations regarding printers, faxing, and network-connections feel free to post more here.
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • Frustrating lack of support for Mission Control / Spaces on Mac OS

    I'm posting this on the InDesign board, but this question applies equally to all apps in the Creative Suite.
    Is there any way to make InDesign/Creative Suite work properly with Spaces (a feature that has been around for years now)? It is incredibly frustrating to not be able to use this excellent organisational aid with any of the Adobe apps. There seems to be a whole mishmash of problems with it, from pallettes disappearing and moving to a different space to the document you are working on, to entire apps not being visible in Mission Control. Not to mention problems when trying to hide/unhide apps.
    When I'm working with any other apps on my system, I can take advantage of Mission Control, but have forego these advantages when using the Creative Suite. Isn't it really about time that Adobe put some effort into supporting these OS-level features. Whether you favour Mac OS or Windows, you should be able to take advantages of the system you prefer to work on.
    Is there any word on whether CS6 will support these features? (I'm not exactly holding my breath).
    Thanks.

    When I'm working with any other apps on my system, I can take advantage of Mission Control, but have forego these advantages when using the Creative Suite. Isn't it really about time that Adobe put some effort into supporting these OS-level features. Whether you favour Mac OS or Windows, you should be able to take advantages of the system you prefer to work on.
    Is there any word on whether CS6 will support these features? (I'm not exactly holding my breath).
    There is no word on anything about InDesign CS6 yet. (Those who know can't say, and I'm not aware of any substantive leaked information.)
    I think that Spaces/Mission Control support is probably predicated on the Carbon to Cocoa conversion. So until InDesign is a Cocoa app, this is unlikely to improve. Personally I manage to avoid using Spaces to any significant degree, so I don't really notice these things. Have you tried Photoshop, which is a Cocoa app? Does it behave better?
    I don't know to what extent these issues are specific to the app, or all tied up in libraries that are common to all the Adobe apps.

  • Thoroughly frustrating problem with Preview

    Hi,
    I'm new to the forum and tried to hold out as long as possible, but the problem I'm having has so thoroughly frustrated me I had to post this. Let me try to be as clear as possible.
    I have a Mac (OS 10.8.2, upgraded from a late-2009 Macbook running Snow Leopard - 2.26 GHz Intel Core 2 Duo, 4 gb RAM, 1067 MHz DDR3). I have Adobe Acrobat Pro XI installed. I also have Microsoft Office 2011. Both Acrobat, M. Office, and all my software is fully updated and current. I have no font conflicts, as I have just clean re-installed my OS because this problem is so frustrating.
    The issue is with pdfs I make of books I own. Sometimes I will use my iphone 4 (latest iOS 6.1.2) with apps like "CamScanner+" or "GeniusScan+" to copy chapters and make pdfs. (CamScanner+ has built in OCR capability.) I then upload them to my WebDAV bibliography storage cloud on Box.net to access from my Mac laptop. Sometimes I use the University's big overhead scanner to make monochrome pdfs, and run OCR thru Acrobat Pro XI. Sometimes I will use the Canon scanners in the computer labs, and do OCR in Acrobat Pro XI then. In each case, I use Zotero to handle attaching pdfs to bib entries and sync it all up to my WebDAV account. (Zotero has a plugin I use called "Zotfile," which also allows one to extract notes, highlighting, annotations, etc., and store them on Zotero while also keeping them on the pdf.) In either case, though, I always run the pdf thru Acrobat Pro XI to optimize, at the least.
    When I access the pdfs for notetaking, research, etc., I tend to use Mac's Preview built-in app. I find it easier to streamline, scroll, view and add notes, less clutery, etc. I see that this new Mountain Lion Preview is much different than Snow Leopard's, which is very regrettable. In this version, Preview saves as you go, it seems.
    The problem is that everytime I save the pdf I've been working on from File>Save (and even when Preview saves as I go), it does a number of nasty, unwanted things. First, it somehow doubles the filesize (e.g., from 30mb to 67mb). Second, and MOST HATED, it takes the OCR'ed texts/fonts and converts them all to alien faces, square boxes, or just blanks. (God it's making me angry just thinking about it now - I've spent two full weeks now trying to fix this!!!!) This happens regardless of whether I ClearScan the OCR, Searchable text the OCR, or Searchable text (exact) the OCR. It happens regardless of whether the OCR'ed fonts are embedded, embedded subsets, etc. Every option on Acrobat Pro XI, I feel I have tried and exhausted and Preview still f$&#s it up. As far as I can tell, this happens regardless of what kind of font is used in the OCR'ed pdf (e.g., TrueType, CID, etc.). In every single instance, Preview will 1) double the file size and 2) screw up the fonts upon saving. If I take this newly ruined pdf back into Acrobat Pro, highlight text, copy and try to paste into Word, Chrome, or any other app it produces the same result. However, if I right click and "copy with formatting" from Acrobat Pro, it copies the actual words/font. The newly ruined Preview pdf doesn't return any word searches either. And annotations like highlighting, once extracted or even viewed in the notes&highlighting box, show blanks. I have downloaded and tried a Mac app called Skim, and it is the exact same effect, unless I File>Export...
    I know this is not a problem with my Mac's fonts since I just did a clean re-install. Font Book tells me everything is alright too. This occurs regardless of what save settings I choose in Preview (e.g., the default settings, the quartz settings, reduce file size, etc.).
    The strange part, though, is that when I take this newly ruined Preview'ed pdf, highlight text, go to font inspector, it says the highlighted font is exactly what it was when Acrobat saved it (e.g., Arial). And if I take this same document back to Acrobat and view properties, it says the fonts are the same as they were when Acrobat Pro originally processed it.
    SO... I hope someone can help me with a fix for this. I truly do not want to use Acrobat Pro XI as my research pdf tool. It doesn't scroll smoothly, the layout is clunky, etc. It just isn't conducive to research/reading/notetaking. Preview, I think, is, and so I want to be able to have a fix for this so that Preview will quit ruining my life.
    I can provide sample pdfs if that might help. I can provide the original Acrobat Pro XI processed pdfs, as well as the newly ruined Preview pdfs. BTW, I posted this in Adobe's forums as well.

    I assume the answer by macjack would not apply in the case of Snow Leopard - Preview version 5.0.3 - but I have the same issue with OCR (not the constant autosave issue though) on my '10 MBP running osx 10.6.8 where suddenly maybe about a year ago 2 hugely annoying things changed in Preview.
    As first poster stated (and he/she obviously knows a LOT more about this stuff than me) Preview stopped providing accurate search results with most pdf documents (some downloaded, some created from web, etc., no idea of common thread there).
    I can NO LONGER COPY AND PASTE any text in any pdf opened in Preview to another application!! I used to have no problem copying pdf text from Preview to, say, text edit. Now it comes up weird boxes and dashes and no, font choice and/or conflict is not the issue.
    I realize this thread is within the Mountain Lion community, and forgive me if I should start a new thread in some other area of this forum saying exactly what I have here, but I have searched and searched on this topic for months and this is the first thread I found which refers to these exact issues I'm enduring.
    Any further advice or comments on the subject - or even constructive instructions if I should post elsewhere - would be greatly appreciated!

  • Anyone having trouble with this phone and their in car bluetooth?  Calls dropping not recognizing the device.  Had the car bluetooth reset at dealer. They said it is a common problem with the iPhone?

    Bluetooth in car is not recognizing my device and when it does it will only stay connected about 5 minutes.   Blue tooth has been reset at the dealer. They said it is very common with the iPhone? The car is a 2014 Toyota Highlander.  This is very very frustrating as I have a 45 minute commute to work and do not want to have to hold my phone.... Thank you for any help.

    sstaylor2001 wrote:
    I have already done all of that.  It still doesn't work. My husband has the same phone and a 2013 toyota and his is fine. Toyota told me it is the brand new cars and the new apple update.  Need to figure something out.  This phkne is useless now and I've had a iPhone for 5 years
    Wow you would think the newer car is just an updated version of what your husbands has.
    I wonder if your husbands car was updated to the same connect system if his would not connect?
    Does your husbands phone work because he does not have the new iOS from Apple?
    Can he hook to your connect system in the car?

  • HTTPS over Apache commons HttpsClient API

    I have an EJB (running on Weblogic 6.1) that currently uses java.net.URL to connect to an Apache webserver to read some data. The problem with this is that I am unable to set a timeout on the URL connection. To get around this problem, I have rewritten it using the Apache Commons' HttpClient package (version 2.0 alpha 2).
    My problem is that whenever I try to connect, I get an exception:
    javax.net.ssl.SSLHandshakeException: FATAL Alert:HANDSHAKE_FAILURE - The handshake handler was unable to negotiate an acceptable set of security parameters.
    It's very frustrating, because the EJB works fine when I use the java.net.URL class. So I am lead to believe that I have SSL set up and working correctly. If not, how is the URL class able to connect?
    Since the URL I must connect to is a CGI, I used the GetMethod class as shown below...
    ----- snip --------
    String urlText = "https://my.host.name/path/to/some.cgi?queryString";
    URI myUrl = new URI( urlText );
    Protocol myProtocol = Protocol.getProtocol(myUrl.getScheme());
    HttpConnection connection = new HttpConnection(myUrl.getHost(), 443, myProtocol);
    connection.setSoTimeout(10000);
    HttpState state = new HttpState();
    GetMethod method = new GetMethod(myUrl.toString());
    // This is where the exception is thrown.
    method.execute(state, connection);
    What am I doing wrong?

    OK, nevermind. I solved the problem.
    For the record, the problem is the order of jars in my weblogic server classpath. I found a related problem in a Weblogic newsgroup that suggested putting the JSSE jars in the classpath before the weblogic.jar. So I tried that and now everything works.
    It is still very odd that this problem only pops up when I use the HttpClient package, not when using java.net.URL.

  • Frustrated with Shuffle

    My son got an iPod Shuffle today for his birthday and a iTunes gift card. The Shuffle worked great at first. He immediately downloaded about 11 songs and everything was working fine. Then he decided to look for a few more songs and now we can't seem to get anything to work right. We charged the Shuffle for about 3 hours. His original playlist is still on the Shuffle but the new songs are not loading. I have restored teh software and tried re-downloading the playlist but with the same problem. What is more frustrating is now we can't seem to get the Shuffle to work properly either. We turn it on, the green light stays on for about 3 seconds and that is all. Hit play and nothing happens. Sometimes it will work in "Shuffle" mode, but not regular mode. The battery indicator light is green. It also will not loop the playlist and just ends with a slight "click" at the end of his playlsit (still no new songs).

    Suggest going to the iPod Shuffle Support Page and starting right out with the "Five R's". Note that those are the common starting points for troubleshooting; they won't automatically fix each and every problem.
    From your description of intermittent operation and perhaps some problem in the power switch besides, it may eventually be a candidate for replacement. You should work through the parts of the troubleshooting that you in fact can do, if for no other reason than to confirm that the fault is in the Shuffle and not something that you can correct.

Maybe you are looking for