CS3 for all icon sets

how do i install them? the icon open up in text edit? thats not right! i thought they were pngs or something... I'm new to custimizing the mac's icons...but maybe somebody can help me since the CS3 for all creators website is in what looks like Spanish which is absolutely no help to me....
Any clues how to install?
Thanks
When i hit get info the icon just says they are documents and nohing like icon file sor pngs... maybe i missed a step?

Well, I took a look at the ones available at the Apple downloads, and there is something seriously wrong with them. They are supposed to be icns files, but according to IcnsBrowser their file header is bad. I couldn't find any way to actually use them. Try some of the sets from the the link Network 23 supplied. I downloaded one of the sets and they are proper icns files. You may need to get a copy of icns2icon in order to get an icon to copy and paste using the GetInfo method (rather than replacing the particular icns file in the Resources folder of the application):
http://www.icons.cx/goodies/
It's an old beta but works: you drag an icns file onto it and it creates an icon you can copy and paste using GetInfo.
Francine
Francine
Schwieder

Similar Messages

  • My macbook pro's screen display has suddenly gone into a strange colour setting where everything appears in a kind of infrared colour palette an I can;t seem to change it back.  It's the same for all icon and websites, does anyone know how to restore?

    My macbook pro's screen display has suddenly gone into a strange colour setting where everything appears in a kind of infrared colour palette an I can;t seem to change it back.  It's the same for all icon and websites, does anyone know how to restore?

    Wow!  I think I had this same issue just last night.
    I was cleaning my macbook pro retina on the outside.  Then I opened it up and was wiping dust off the monitor and I can't pinpoint exactly when, but the colors changed suddenly.  It looked super strange, it was like green halo's and it looked worse when looking at it at an angle.  Of course I took no pictures!!!  I was freaking out that my 2 grand laptop was busted and I somehow removed a protective film or something.
    But I digress...  The image looked very green and spacey, it was almost a neat effect.  After about 5 minutes it started to look a little more digital though.  There were straight lines of this halo effect on the edges and top.  After about 10 minutes it turned into a predominate issue with the blacks on screen.  I could open a web browser and it was unnoticable on a white background.  After about 15 minutes, you could only barely see the green cloud effect if you looked at the monitor from an extreme angle.  After about 20 minutes, it was completely back to normal, I almost feel paranoid like I see a halo or something strange.  But I believe that might be all in my head now.
    So yerp, lemme know what you guys figure out.

  • Thinkpad keys once and for all

    There are lots of people out there having problems to get thinkpad keys to work. I would like to solve this issue and potencially write a wiki page about that.
    Here is the information I got till today:
    1. the ibm-acpi module is renamed to thinkpad-acpi module
    2. both modules create a proc interface under /proc/acpi/ibm/ which sometimes needs to be chrooted 666 to be able to control thinkpad functions from bash.
    3. doing echo enable,0x0000 > /proc/acpi/ibm/hotkey sends key events to the thinkpad firmware (nvram module has to be loaded). Mostly this doesn't work thou...
    4. doing echo enable,0xfffffffff > /proc/acpi/ibm/hotkey sends key events to acpid. This has to be started and does things according to the /etc/acpi/handler.sh script. This seems to work for me (T41). Here's my script:
    #!/bin/sh
    # Default acpi script that takes an entry for all actions
    set $*
    ev_type=`echo "$1" | cut -d/ -f1`
    # We have to take special care for events send by ibm/hotkey:
    if [ "$ev_type" = "ibm" ]; then
    ev_type=`echo "$1" | cut -d/ -f1`
    event=`echo "$1" | cut -d/ -f2`
    key="$2"\ "$3"\ "$4"
    else
    # Take care about the way events are reported
    ev_type=`echo "$1" | cut -d/ -f1`
    if [ "$ev_type" = "$1" ]; then
    event="$2";
    else
    event=`echo "$1" | cut -d/ -f2`
    fi
    fi
    case "$ev_type" in
    button)
    case "$event" in
    power)
    logger "acpid: power button pressed; starting shutdown"
    # logger "acpid: received a shutdown request"
    /sbin/init 0
    break
    sleep)
    logger "acpid: sleep button pressed; initiating hibernate-ram"
    # logger "acpid: received hibernate request"
    /usr/sbin/pm-suspend
    lid)
    logger "acpid: lid event"
    logger "acpid: action $2 is not defined"
    esac
    # BEGIN customization for ibm/hotkey:
    ibm)
    case "$event" in
    hotkey)
    case "$key" in
    "HKEY 00000080 00001002")
    logger "acpid: lock button (Fn+F2) pressed"
    "HKEY 00000080 00001003")
    logger "acpid: blank screen (Fn+F3) pressed; switching display off"
    xset dpms force off
    "HKEY 00000080 00001004")
    logger "acpid: sleep button (Fn+F4) pressed; initiating hibernate-ram"
    /usr/sbin/pm-suspend
    "HKEY 00000080 00001005")
    logger "acpid: bluetooth button (Fn+F5) pressed; toggling bluetooth"
    # echo 3 > /proc/acpi/ibm/beep
    if grep -q enabled /proc/acpi/ibm/bluetooth ; then
    echo disable > /proc/acpi/ibm/bluetooth
    elif grep -q disabled /proc/acpi/ibm/bluetooth ; then
    echo enable > /proc/acpi/ibm/bluetooth
    fi
    "HKEY 00000080 00001007")
    logger "acpid: screen toggle button (Fn+F7) pressed"
    "HKEY 00000080 0000100c")
    logger "acpid: hibernate button (Fn+F12) pressed; initiating hibernate"
    /usr/sbin/pm-hibernate
    "HKEY 00000080 00005001")
    # This is the lid CLOSE event
    # as of now it is already handled above
    "HKEY 00000080 00005002")
    # This is the lid OPEN event
    # as of now it is already handled above
    logger "acpid: $ev_type/$event $key is not defined"
    esac
    dock)
    case "$key" in
    "GDCK 00000003 00000001")
    logger "acpid: Dock eject request"
    "GDCK 00000003 00000002")
    logger "acpid: laptop was undocked"
    "GDCK 00000000 00000003")
    logger "acpid: laptop was docked"
    logger "acpid: $ev_typ $event event $key is not defined"
    esac
    bay)
    case "$key" in
    "MSTR 00000003 00000000")
    logger "acpid: got ultrabay eject request"
    "MSTR 00000001 00000000")
    logger "acpid: ultrabay eject lever inserted"
    esac
    esac
    logger "ACPI group $1 / action $2 is not defined"
    esac
    I have found it here http://priyadi.net/archives/2004/12/20/ … kpad-t41p/.
    5. Allthou thinkpad-acpi should in time be able to handle all keys, as of today, one still needs tpb for some of them. KDE has a module in the control center that has similar functionality and doesn't depend on tpb. I have not yet tried to get all working.
    Any other contribution would be welcome. The handler.sh script can probably be adapted or somehow rewritten, some of this info may be wrong...
    Last edited by jarda-wien (2008-03-28 16:17:24)

    Sorry, no solution, but I noticed the same behaviour on my X61s.
    Here's my handler.sh. It's pretty much the same, but it also takes care of turning on an external VGA display (if connected), adjusting the brightness per custom script, changing the cpu frequency scaling governor on AC plug/unplug and suspending to RAM on LID close. It could be improved at certain points I guess.
    #!/bin/sh
    # Default acpi script that takes an entry for all actions
    # NOTE: This is a 2.6-centric script. If you use 2.4.x, you'll have to
    # modify it to not use /sys
    set $*
    case "$1" in
    ibm/hotkey)
    case "$2" in
    HKEY)
    case "$4" in
    00001002) # Lock screen
    xscreensaver-command -lock
    #00001003) # Battery icon
    00001004) # Suspend to RAM
    hibernate -F /etc/hibernate/ususpend-ram.conf
    00001005) # Switch Bluetooth
    if [ "$(grep "status.*enabled" /proc/acpi/ibm/bluetooth)" ]; then
    echo "disable" > /proc/acpi/ibm/bluetooth
    else
    echo "enable" > /proc/acpi/ibm/bluetooth
    fi
    00001007) # Toggle external display
    if [ "$(xrandr -q | grep "VGA connected")" ]; then
    if [ "$(xrandr -q | grep "VGA connected [0-9]")" ]; then
    xrandr --output VGA --off
    else
    xrandr --output VGA --auto
    fi
    else
    xrandr --output VGA --off
    fi
    #00001008) # Toggle Trackpoint/Touchpad
    #00001009) # Eject from dock
    0000100c) # Hibernate
    hibernate -F /etc/hibernate/ususpend-disk.conf
    #00001014) # Toggle zoom
    #00001018) # ThinkVantage button
    esac
    esac
    button/lid)
    case "$2" in
    LID)
    case "$3" in
    00000080) # Lid opened/closed
    grep open /proc/acpi/button/lid/LID/state || hibernate -F /etc/hibernate/ususpend-ram.conf
    esac
    esac
    ac_adapter)
    case "$2" in
    AC)
    case "$4" in
    00000001) # AC plugged
    echo -n performance > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
    00000000) # AC unplugged
    echo -n ondemand > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
    esac
    esac
    video)
    case "$2" in
    LCD0)
    case "$3" in
    00000086) # Brightness up
    brightness +
    00000087) # Brightness down
    brightness -
    esac
    esac
    esac
    Here's my brightness script too:
    #!/bin/bash
    # This script adjusts the display brightness on my ThinkPad X61s.
    # Usage: brightness +/-
    [ "$UID" != 0 ] && echo "err, you need to be root" && exit 1
    ctrl_file=/sys/class/backlight/acpi_video1/brightness
    max_file=/sys/class/backlight/acpi_video1/max_brightness
    brightness=$(cat $ctrl_file)
    max=$(cat $max_file)
    min=20
    if [ "$1" = "+" ]; then
    if [ $brightness -ge $max ]; then
    brightness=$max
    else
    brightness=$(($brightness+$max/10))
    [ $brightness -gt $max ] && brightness=$max
    fi
    elif [ "$1" = "-" ]; then
    if [ $brightness -le $min ]; then
    brightness=$min
    else
    brightness=$(($brightness-$max/10))
    [ $brightness -lt $min ] && brightness=$min
    fi
    else
    echo $brightness && exit 0
    fi
    echo $brightness > $ctrl_file
    Of course this could be incorporated within the handler.sh itself as well.

  • Screen size in windows 8.1 - all icons too small! How do I enlarge the entire captivate 8 screen?

    The entire Captivate 8 screen to too small. How do I enlarge the entire window? All icons and thumbnails are 1/4 the size they should be. Using Windows 8.1.

    It looks like it is an issue between Adobe and Microsoft. (Many Adobe programs are responding this way to Windows 8 and 8.1)
    I am posting this to try and get some (ANY) ideas/feedback...but to also bring it to the Captivate Community attention. I hope the Captivate Staff is aware of this issue.
    Same issue -great PhotoShop screenshot Photoshop too small on windows 8.1
    Photoshop CC / Windows 8.1 HiDPI / Retina scaling support
    Re: Adobe suite HiDPI on Windows 8.1
    Right side menu too small font size of letters in Windows 8.1 High DPI screen
    Re: Photoshop CC / Windows 8.1 HiDPI / Retina scaling support
    there are many many more out there......
    I tried this first, it comes with Windows and changes your display properties by application: (but it didn't work)
    The program above basicly edits these settings (you can get to these by right clicking on the exe application) I tried many combos, an even tried them under the "change for all users" setting.....NADA!
    I have tried editing the Windows display settings: (all screen shots below are with this setting size)
    The screenshot below is at 250%. It does not make any difference in the application (check out the menu bar, properties, icons....) If I go over 150% I lose dialog box space...the buttons disappear! If I keep it at 150% the words "Advanced Actions" at the top of the dialog box shrinks slightly, enough to fit the buttons in...) I showed the difference using snag it (12 pt arial compared to the appearance of the UI ~ 4 pt.) This is so hard to see! Same issue in some of the other adobe applications. (fyi...they are all up to date)
    Photoshop = same problem
    Dreamweaver = working fine
    Flash = working fine
    Premier Pro = half working....(menubar is ok but everything else is real small)
    Muse = not working
    Adobe Edge Code = Working fine
    OOF! Well, any thoughts anyone? I appreciate any and al feedback and ideas!!!

  • Note Board web part to display comments for explicit Document Set

    I guess my question falls under 'Other customization' hence my post here.
    Scenario:
    I have a Document Set content type enabled for a library. At the moment I have a few "folders" [document sets] that contain their respective documents.
    I edited a Document Set welcome page to include a Note Board web part. I edited the Note Board web part by adding a 'URL for note' to be a URL of a random Document Set welcome page while in edit mode.
    (Basically, I went to a 'ABC' document set page, clicked edit page, copied URL from address bar, closed that page, went to 'Customize Welcome Page' for all document sets in that library, edited Note Board web part by pasting the link into its 'URL for note'
    field) 
    Problem:
    Currently, all comments are shared between all document sets (folders). When I go to 'ABC' document set and post a comment, I can see my ABC specific comments in e.g. 'XYZ' document set.
    I want to have comments specific to each document set displayed on a respective page for that document set.
    Solution?
    I realize that I must have gotten an URL for a Note Board web part wrong and it does not filter comments explicit to each document set but fetches the comments from whole the library. My url is currently:
    https://intranet.domain/sitecollection/library/Forms/Machine%20Process%20Pack/docsethomepage.aspx?ID=2&FolderCTID=0x0120D520009EDF2E3A3112B041AC6EC1D4133D77550000C297D6CB32E349A435E04924DC6C58&List=7b052f9c-7e35-4251-b66d-3bcdd2950014&RootFolder=%2Fuk%5Fqhse%2FProcess%20Packs%2FSigma%202345&RecSrc=%2Fuk%5Fqhse%2FProcess%20Packs%2FSigma%202345&PageView=Shared&InitialTabId=Ribbon.WebPartPage&Visi
    I know I have to strip this URL from some parameters, presumably leaving just ID, FolderCTID, List and RootFolder.
    Could someone actually tell me exactly how my URL should look like if I want to display comments only for a given document set on its welcome page?
    Thanks!

    Hi,
    According to your post, my understanding is that you wanted to display comments only for a given document set on its welcome page, not display for all the document sets.
    If so, you should not set the “URL for note” field in the Note Board web part, you can just leave it blank, then when you post a comment in one document set, the others would not display the comment.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Sound drops in iTunes every other song for all speakers when a remote speaker is being used

    Ever since I've run the most recent update for Mountain Lion, Whenever I play any songs from iTunes, and one of my remote speakers is being used by Airplay, the sound volume drops as if muted for all speaker sets that are active, even for the computer speakers.  All I have to do to fix it temporarily is to hit the pause button, then play again and the sound comes back...for about one or two songs, then the same thing happens.  If I only run my computer speakers, the volume stays with no problems.
    Any Ideas?

    Welcome to the Apple community.
    iTunes and iCloud and different accounts, you will need to delete both accounts from your device before adding the new details in their place.
    For iCloud go to settings > iCloud, scroll down and hit the delete button. You can then sign back in using your correct details. For iTunes go to settings >store, tap your account ID and then sign out, you can then sign back in using your correct Apple ID.

  • How do I make icons bigger? All icons are way too small for speedy use. no matter what I do they remain too small. Is there a way of getting them the same size as previous versions?

    All icons, such as refresh page, back, forward, stop and home etc; are just too small for comfortable use. For now I am uninstalling Firefox 4 and going back to 3.x. even the zoom page icons are too small.

    "I had read that GarageBand or the Musical Typing there can sometimes not display properly when the resolution is changed."
    Well, did you checked GB after you changed your resolution?
    Which setting did you change to?
    You & I have the same size iMac screen. My resolution setting is 1280x800. Everything fits perfectly in the windows & on desktop including the menu bar.
    All info in my windows are showing. I did not need to adjust my browser font size settings. I am sure you are aware of the browser font size settings. I use FF & the settings are in Preferences>Content.
    In the Finder window you can enlarge the icons & fonts also.
    Finder>View>Show View Options.

  • Automatically generate thumbnail image icons for all pix and vids...

    hello,
    i've searched around on the forums a bit about making the icons of my pics and vids actual thumbnail images made from the picture or the first frame of the video.
    a lot of responses are mistaking this question for "how do i put the window into icon view?" this infact is not the answer that i suspect a lot of windows converts are looking for.
    windows automatically makes such icons for all pix and vids if you put the window into icon view.
    i notice in at cmd-j or in the window preferences there is a checkbox for "show image preview" or something like that, but despite this being checked, my pix and vids do not show an image preview. i'm gathering that this information does not exist in the resource fork which mac uses to organize photos.
    is there any script or addition i can make to my system to automatically generate icons for pics and vids of all types? how to i suggest to mac that they add this functionality into the next release?
    thanks for your time,
    max

    The Finder will create icons "on the fly" for nearly all graphic type files (jpegs, tiff, psd, and so on) and display them in both icon view and column view, provided the appropriate view preference has been set. Movies will just have the generic movie icon in icon view, and have a "live" preview in column view, ie you can play them in preview mode. If you want to add a permanent thumbnail which will display in all views, and whether or not the preference has been set for a particular folder in Finder, you'll need to add a thumbnail to the file. There are lots of ways to do this for static pictures, even rather clumsy ways to do it for movies, but the easiest thing is to get CocoThumbX:
    http://www.stalkingwolf.net/software/cocothumbx/
    Drag and drop both static pictures and movie files onto the application and a permanent thumbnail is created. Indeed, it will create cool thumbs even for things like PDF and HTML files (code or rendered display). For movies to get a thumb, they must be in a format that QuickTime can read. It has a set of preferences for just how you want the thumb determined (eg random or at a certain time), and you can drop batches of movies or even folders to have it assign thumbs to multiple movies at the same time. It is a way cool piece of shareware.
    Francine
    Francine
    Schwieder

  • Remove Collapse/expand icons from the tray for all user except administrato

    Hi,
    My requirement is to remove the expand/collapse icons from the overview page for all the user but administrator can have those available.
    I have set the show tray property to NO , this has made the complete tray invisible for all including the administartor as well.
    I want the only icons to be inviisble and not for administrator.
    Please provide your valuable inputs.
    Thanks
    Pooja

    Hi
    The best practice in Portal is to create 2 different design, one for users, one for administrators. I mean design : Desktop, Framework Page, Theme ...and so on.
    This allows you to manage two ways of displaying or not informations, for sure user view should be different of administrator view.
    And you also in your case you should have tow different "overview" iViews, one for users one for administrators.
    The "show tray" property should be yes (otherwise you won't see anyting ), but the property "Show Expand/Collapse icon in tray" to NO.
    I hope it will help
    Best regards
    johann

  • DCIteratorBinding setting the same value for all the rows.

    Hi all,
    I have table with on of the column as id. I have made the id column as the hyper link , that takes me to the next page. I am trying to pass the id to the next page. I am using the managed bean for the same. The below code is used to create the link on the column. It sets the action to the function in the bean that sets the id as of the current row.
    <tr:column sortProperty="id" sortable="false"
    headerText="#{bindings.notification.hints.id.label}"
    id="c4">
    <tr:commandLink action="choice" text="#{row.bindings.id.inputValue}"
    id="cl1" actionListener="#{IdBean.extractID}">
    </tr:commandLink>
    </tr:column>
    below is the IdBean.extratctID()
    public void extractID(ActionEvent actionEvent){       
    BindingContext bindingContext = BindingContext.getCurrent();
    BindingContainer bindings;
    bindings = bindingContext.getCurrentBindingsEntry();
    DCIteratorBinding iter;
    iter = (DCIteratorBinding) bindings.get("notificationIterator");
    Row rw;
    rw = iter.getCurrentRow();
    String id;
    id = (String) rw.getAttribute("id");
    this.setId2(id);
    I am printing the id value on to the next page. But its just returning the vslue of the id for the first row for all the rows of the table.
    Any inputs as in do i need to refresh the iterator or something like that.
    Reagrds
    Sishant

    Hi,
    Following is the code i have added in my bean
    ValueExpression expression = getFacesContext().getApplication().getExpressionFactory().createValueExpression(getFacesContext().getELContext(), "#{pageFlowScope.emp1}", Object.class);
    Object id = expression.getValue(getFacesContext().getELContext());
    public FacesContext getFacesContext() {
    return FacesContext.getCurrentInstance();
    JSPX Code -
    <af:commandImageLink id="DuncanAngove"
    icon="/john.gif" partialSubmit="true"
    actionListener="#{Tweets.setEmployeeId}">
    <af:setActionListener from="Duncan Angove" to="#{pageFlowScope.emp1}" />
    But i am getting NullPointerException. I have tried it with application and request scope as well.
    javax.servlet.ServletException
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:277)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.NullPointerException
         at org.apache.myfaces.trinidad.component.UIXComponentBase.getValueExpression(UIXComponentBase.java:231)
         at project1.Tweets.setEmployeeId(Tweets.java:40)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1259)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:698)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:285)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         ... 35 more
    Thanks
    Sishant

  • Set "always show all icons and notifications on the taskbar" via Group policy

    Any ideas on how to set "always show all icons and notifications on the taskbar" on a set of users?
     I thought it would be under User Configuration\Administrative Templates\Start Menu and Taskbar, but I cannot find it.
    Anyone know if this can be enforced via policy?

    Hello,
    Thank you for your post here.
    Unfortunately, there is not any group policy settings which can set "always show all icons and notifications on the
    taskbar".
    To distribute the setting, you can create a default domain user profile and copy it to the following network share.
    When the domain user account is first logged onto the domain, the default profile will be applied.
    \\<Server_name>\NETLOGON\Default User.v2
    How to customize default user profiles in Windows 7 and in Windows Server 2008 R2
    http://support.microsoft.com/kb/973289
    This would only apply if a new profile is created, not for existing ones.

  • Fast user switching menu - how do I have icons for all users?

    I'm setting up a new computer for three users. I have enabled the fast user switching menu. I set the menu to 'Icon'. However, it only shows the icon for myself, the admin. For the other two accounts, when they log in it remains as their (rather long) real names. The same thing happens if I select 'Account Name': it only shows the 'Account Name' for myself. When I switch to the other users, it is still their real name.
    How can I have icons (or account names) for ALL users??

    See CCK Wizard: https://addons.mozilla.org/firefox/addon/cck/
    You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.
    Place a file local-settings.js in the defaults\pref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.
    pref("general.config.filename", "mozilla.cfg");
    pref("general.config.obscure_value", 0); // use this to disable the byte-shift
    See:
    *http://kb.mozillazine.org/Locking_preferences
    These functions can be used in the mozilla.cfg file:
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes in current session
    lockPref(); // lock pref, disallow changes

  • Setting timeout for all the web test scripts in the solution

    Hello,
    I have around 16 web test scripts (using VSTS 2010 ultimate version) in my project (in a solution). By default the timeout set for each request is 60 sec. I need to increase the timeout to 180 sec. Currently, I am clicking on each request and modifying
    the timeout parameter from the Properties window.
    Is there any common setting for timeout available which would be acting across all the scripts?
    Thanks.

    Hello,
    We only can set Timeouts for a separate request in Visual Studio Web Test. There is no way to set Timeout for all requests in VS IDE. But you can write you own logic code using
    Timeout Property in a web test plugin to set Timeout for all requests in a web test.
    About how to write a web test plugin, please see:
    How to: Create a Web Performance Test Plug-In
    Best regards,
    Amanda Zhu <THE CONTENT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS OR IMPLIED>
    Thanks
    MSDN Community Support
    Please remember to "Mark as Answer" the responses that resolved your issue. It is a common way to recognize those who have helped you, and makes it easier for other visitors to find the resolution later.

  • How do I permanently STOP the Bing Suggested Sites icon from being in the IE 9 toolbar for everyone and make it the default for all new users

    Non of the other post on this subject were correctly answered and they are now old so here is a new thread for a question that a Microsoft Engineer should have answered a long time ago in one of the other threads.
     I have IE 9 installed.
    I am setting up my default profile which will be used for ALL users to configure their profile when they log on. All profiles are destroyed on system reboot. All PCs are frozen.
    Every time I log in as a new user and open IE 9, the favorites bar shows up as I want it with NO BING Suggested Site crapware in site. Then about .5 secs after IE starts and the Favorites bar is shown, the EVIL "Bing Suggested Sites" button appears.
     I can delete it and it seems to stay away until I delete the users profile folder etc and have them log in again. When the profile is recreated the Favorites folder does not have a "Suggested Sites" option in the c:\users\username\favorites\links"
    folder. (I have deleted the hidden .ini files in the default folder) Nor does one exist in the "c:\users\default\favorites\links" folder from which the newly created user profile folder comes. But as soon as I start IE 9, one is created and placed
    in the users favorites links folder. This MUST STOP!!!!!!!!!!!!! This is UNACCEPTABLE. AND IT MUST BE STOPPED!!!!! Where in the Windows 7 x64 Enterprise OS is the location of this evil action and how do I PERMANENTLY delete it.
    I don't EVER want to see the EVIL BING Suggested Sites button anywhere on the PC especially in the Favorites Tool bar on IE 9. An I expect/demand that Microsoft tell us how to 100% cannot fail get rid of it for ALL USERS FOREVER NO MATTER WHAT!!!!!!!!!!!! I
    have spent a lot of time perfecting my default profile making sur that ALL options are decide by me NOT MICROSOFT. I NEVER USE SYSPREP as that will destroy ALL custom defaults every time.
    When a user logs in in to one of my PCs and they start IE 9 they get REAL Google for the default search engine, not the version Microsoft will give you which first sends all search requests to Microsoft so they can spy on what you searched in Google for etc.,
    but real Google, not sent to Microsoft 1st. (I'll bet more than 90% of the readers of this site did not notice how if you let Microsoft set your default search provider to Google, they fix it so that all search requests go to Microsoft 1st, before it gets
    sent to Google. Look at the search string under manage your search providers, in IE 7 & 8. In IE 9 it is hidden, but still there. HOW EVIL OF MICROSOFT)
    With my default profile IE does not ask how you want to set it up, I have already made those decisions. I have made all those decisions for my users. But as of recently I have started installing IE 9 and now this unacceptable BING Suggested Sites junk ware
    keeps showing up. HOW DO I STOP IT. Do I have to put a line in my HOSTS file to send all request for Bing.com to 127.0.0.1 just to make sure that it can't be used. There by removing all possibility of my users ever being able to use Bing FOREVER.
    I would rather not do that but unless a Microsoft representative will tell me how to keep that useless Bing Suggested Sites button from appearing on the Favorites tool bar I will have to. I would love to let my user decide if they want to use Bing and waist
    their time trying to find good search results, but I will not have it forced on them and I will not allow it to be on the Favorites tool Bar ever. So will a Microsoft Engineer please tell us how to put a permanent end to the "Bing Suggested Sites"
    button for ALL users ALWAYS FOREVER.
    Thanks,
    Ralph

    Hi,
    I suggest you try the steps in this thread for test:
    Disable Suggested Sites does not work.
    http://answers.microsoft.com/en-us/ie/forum/ie9-windows_7/disable-suggested-sites-does-not-work/4ba064b1-1c6e-43f1-939e-2db1d335b2ef
    Regards,
    Vincent Wang
    TechNet Community Support

  • How to set CHAR/BYTE as default for all entities attributes

    Hello,
    We'd like to have a way to set as a preference in the OSDM the Unit CHAR for all attributes who has datatype VARCHAR2 and CHAR, instead of the user have to set it manually for each attribute. Actually the database works or in one way or other. It means that if I have to set the Unit CHAR for one attribute, I'll have to set for all others.
    The preference "Show CHAR/BYTE Unit........." available on the Preferences dialog of the OSDM only show or not the information in the DDL script.
    Thanks
    Nelson

    Hi Nelson,
    The application developer should have only the option to set or not it for whole relational or physical model if the "length semantics" are Byte or Char.If database allow char/byte semantics to be set at column level we should support it. Otherwise you'll come and complain Data Modeler doesn't support it.
    In a real world the developer doesnt have to choose which columns are byte or char, it strictly depends the characteristis of the database defined for the database administrator.This workflow is supported by Data Modeler - you have an option char/byte semantic to be excluded from DDL generation and the setting at database and session level will come into effect when DDl script is executed.
    Philip

Maybe you are looking for

  • Requirements for 9iAS Integration

    After days of plugging through the documents, reading manuals and searching google's archives, I am still not sure exactly what is need to get this going. We would like to set up the Integration piece (Interconnect, Workflow, IStudio) within our ente

  • Satellite C50-B P0010 is Slow :-(

    I want to know whether I am the only one stuck with this problem!!! My Satellite C50-B PSCMNG with Windows 8.1 x64 is really painfully slow... I even tried upgrading the RAM to 8GB, but NO change... My satellite still tends to be painfully slow... Fi

  • E-mails I receive that include emoticons do not show the emoticons - how do I fix this?

    Several people have sent e-mails with smiley faces or other emoticons. When I get their e-mails, I do not see their emoticons - instead I get a letter - a "J' for a smiley face, etc... How do I fix this so I can see the emoticons?

  • Air 2.5 runtime for android 2.1 (eclair) device

    as I understand it Air 2.5 Runtime - Device [For Eclair] was made  available over the summer through adobe prerelease, which is for a  device using Android 2.1. I believe now there is an Air Runtime  available in the Android Market for Android 2.2. W

  • Hp elitebook not getting ON

    hello everyone few drops of water just hit on to mi laptop keyboard and now mi laptop is no longer getting ON.i just need our help of where might be the problem and how do i fix it