Cannot use styleName and fontStyle property together in Label?

Hi All,
I am using Label component with the following attributes set,
see code 1)
but in my CSS I defined the style myStyle as below see code
2)
Here I am trying to use embed a font and use the style in the
Label.
I want the other styles to be given seperately like italic
and bold using "fontStyle" and "fontWeight" properties of a Label.
see code 3)
The problem here is that,
If I introduce any of these "myStyle" is not working. I mean
that the font which I embeded is not implemented. Its taking its
own default font. But If I remove fontStyle and fontWeight
"myStyle" is working properly.
I hope I had made my problem clear.
Any help would be appreciated.
Thanks.

"COKFlex" <[email protected]> wrote in
message
news:[email protected]...
> Hi Amy and Greg, Thanks for your replies.
>
> Yes I knew that I can use the fontstyle and fontwidth in
my CSS. Before I
> proceed next, let me explain you about my requirements
and why I am using
> embedded fonts.
>
> My requirement is to have all the font related styles as
configurable from
> an
> Xml file like .
>
> <Text>
> <Forecolor>#FFFFFF</Forecolor>
> <Backcolor>#000000</Backcolor>
> <Fontname>TimesNewRoman</Fontname>
> <Fontsize>30</Fontsize>
> <Fontstyle>normal</Fontstyle>
> <Fontweight>normal</Fontweight>
> </Text>
>
> Which I can read at run time and apply the styles.
>
> Ok Now I am coming to the need to using embedded fonts.
If I didnt embed
> the
> fonts the text displayed in my application are not
smooth. But its smooth
> if I
> use embedded fonts. {It is possible if we install the
fonts from the
> Windows CD
> [Control Panel->Regional Language and
Setting->Language Tab->Supplementary
> Language support] options>} But I observed that few
system doesnt have
> that
> installations. So the fonts which I am trying to use in
the configuration
> xml,
> even though the system has that font, its not appearing
smoothly in my
> application.
>
> ok, so next I decide how I make the embedded fonts as
configurable. I gave
> the
> fontname as the stylename and give that stylename in the
configuration xml
> as I
> mentioned in my previous post.
>
> And I implemented that using styleName="<value read
from the config xml>"
> which inturn refers the stylename I used in the CSS for
the embedded font.
>
> As I mentioned earlier, all the styles I want it to be
configured, I
> cannot
> give italic or bold in the CSS style instead it has to
be read from my
> config
> XML.
>
> So I decided to use the fontStyle and fontWeight
properties of the Label.
> So
> then the problem comes, if I use stylename and fontstyle
together,
> fontStyle is
> actually overriding the styleName's embedded font and
applying style as
> italic
> but not with the embedded font which ultimately results
in not giving me a
> smoother display.
You can actually change the CSS declaration itself. But I
think you will
also need to embed the other forms of the font if you want to
use them.
HTH;
Amy

Similar Messages

  • HOW TO USE LOGICAL AND OR CONDITION TOGETHER

    Please do not post subject in ALL CAPITALS
    Hi All there,
    How to use logical and or condition together
    I wanted to use logical AND OR condition together in where clause of Select Query.
    eg where xyz and or abc
    Regards
    Sagar
    Edited by: Matt on Mar 17, 2009 1:05 PM
    Edited by: Matt on Mar 17, 2009 1:05 PM

    hi,
      You cannot use the logical and  or condition together at the same time in SQL statement. Sachin is correct while using the and and or in the same condition. You can get the data using or condition in SQL statement, and then use the delete statement of internal table using the end condition. please find the following code for the same.
    select *
      from dtab
    where cond1 eq 'A1'
         or cond2 eq 'A2'.
    if sy-subrc eq 0.
      delete itab where cond1 eq 'A1' and 'A2'.
    endif.
    regards,
    Veeresh

  • Using drag and drop property in forms.

    Hi all,
    I want to use drag and drop property in a form during
    runtime.I am using oracle 7.3.I don't want to call any
    another application.
    Is there any way?
    Thx in advance.

    Mona ! First tell your problem in brief ..Actually what you want
    on runtime ...would you like to fetching the data from one item
    to another or change the position of any item or
    pushbutton ...or what..give detail ...obviously i can help you..
    there are many commands like set_item_property ,
    get_item_property but right now i could not understand your
    prob ..tell me in brief..
    You can ask me at [email protected]..
    -Anwar

  • Error while using REMAP_TABLE and WHERE clause  together in IMPDP

    I am trying to move some records from a very large table to another small table.
    I am facing trouble while using REMAP_TABLE and WHERE clause together in IMPDP.
    Problem is data filter is not getting applied and all records are getting imported.
    here is how I have simulated this. please advice.
    CREATE TABLE TSHARRHB.TMP1
      A  NUMBER,
      B  NUMBER
    begin
    Insert into TSHARRHB.TMP1
       (A, B)
    Values
       (1, 1);
    Insert into TSHARRHB.TMP1
       (A, B)
    Values
       (2, 2);
    COMMIT;
    end;
    expdp system/password TABLES=tsharrhb.TMP1 DIRECTORY=GRDP_EXP_DIR DUMPFILE=TMP1.dmp REUSE_DUMPFILES=YES LOGFILE=EXP.log PARALLEL=8
    impdp system/password DIRECTORY=GRDP_EXP_DIR DUMPFILE=TMP1.dmp LOGFILE=imp.log PARALLEL=8 QUERY='TSHARRHB.TMP1:"WHERE TMP1.A = 2"'  REMAP_TABLE=TSHARRHB.TMP1:TMP3 CONTENT=DATA_ONLY
    Import: Release 11.2.0.1.0 - Production on Fri Dec 13 05:13:30 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01":  system/********@GRD6.RBSG DIRECTORY=GRDP_EXP_DIR DUMPFILE=TMP1.dmp LOGFILE=SSD_93_TABLES_FULL_EXP.log PARALLEL=8 QUERY=TSHARRHB.TMP1:"WHERE TMP1.A = 2" REMAP_TABLE=TSHARRHB.TMP1:TMP3 CONTENT=DATA_ONLY
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "TSHARRHB"."TMP3"                           5.421 KB       2 rows
    Job "SYSTEM"."SYS_IMPORT_FULL_01" successfully completed at 05:13:33
    here I am expecting only 1 record to get imported but both the records are getting imported. please advice.

    The strange thing compared to your output is that I get an error when I have table prefix in the query block:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01":  system/******** DUMPFILE=TMP1.dmp LOGFILE=imp.log PARALLEL=8 QUERY=SYSADM.TMP1:"WHERE TMP1.A = 2" REMAP_TABLE=SYSADM.TMP1:TMP3 CONTENT=DATA_ONLY
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    ORA-31693: Table data object "SYSADM"."TMP3" failed to load/unload and is being skipped due to error:
    ORA-38500: Unsupported operation: Oracle XML DB not present
    Job "SYSTEM"."SYS_IMPORT_FULL_01" completed with 1 error(s) at Fri Dec 13 10:39:11 2013 elapsed 0 00:00:03
    And if I remove it, it works:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01":  system/******** DUMPFILE=TMP1.dmp LOGFILE=imp.log PARALLEL=8 QUERY=SYSADM.TMP1:"WHERE A = 2" REMAP_TABLE=SYSADM.TMP1:TMP3 CONTENT=DATA_ONLY
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "SYSADM"."TMP3"                             5.406 KB       1 out of 2 rows
    Job "SYSTEM"."SYS_IMPORT_FULL_01" successfully completed at Fri Dec 13 10:36:50 2013 elapsed 0 00:00:01
    Nicolas.
    PS: as you can see, I'm on 11.2.0.4, I do not have 11.2.0.1 that you seem to use.

  • I cannot use data and voice at the same time.

    I cannot use data and voice at the same time.
    I am on Wifi (connected) and at the same time I am on a voice call. when I switch to my RSS feed reader it does not sync it comes out with a message cannot connect to internet, I thought it is a problem with the feed reader application, IE 10 behaves the same I cannot browse when I am on a voice call.
    This is a very basic issue, am I missing something? Please help.
    My Model is lumia 820 with the latest portico update.
    TIA
    Sandeep

    I am aware that packet data via EDGE and voice cannot happen at the same time, surprisingly when I am on voice call I cannot connect to internet via Wifi too

  • Has anyone had success using SharePoint and FrameMaker 10 together using CMS?

    Has anyone had success using SharePoint and FrameMaker 10 together using CMS?

    Thanks for reminding to at least update the results thus far.
    Update 4:
    I did get quite a bit of support initially although slowly over a period of a month or so. After Adobe FM support and my SharePoint systems engineer reviewed how FM10 was setup on my computer (which I am the admin for our department’s SP site) and how it interfaces with our SharePoint 2010 Enterprise Edition, there was two conclusions:
    Basically Adobe FM Support said that FM10 did not support claims-based authentication and they can no longer help me. They said it will work with FM11 when it comes out.
    My SP Systems Engineer, said that FM10 is connecting to SP 2010 just fine but that the FM10 has a software glitch that causes FM10 lose control when executing checkout procedure within FM10. I can checkout and edit that same file in SP with no problems.
    About a month later, I upgraded to FM11 and ran into the same problem. I attempted to get Adobe FM Support to help and they said they will look into and get back to me. That was in July and I have not heard anything more from them, and to be honest, my schedule has been extremely busy the last 5 months that I have not had time to pursue it any further.
    Needless to say, I was very disappointed with the SP interface and, overall, the lackluster support I received from Adobe. Having a working SP interface was one of the criteria for purchasing TCS3.5 (and subsequent upgrade) in the first place.
    One thing of note, we migrated from SP 2007 to SP 2010 in February 2011 and, at the time of Adobe support, I still had access to my SP 2007 site. FM10 and FM11 had to no issues working with SP2007. Unfortunately, SP 2007 is not an option for me anymore.
    Also, another observation of FM10/11 not working with SP 2010, it seems that FM10/11 is automatically configured to work with SharePoint Drafts folder locally when connecting to the SharePoint library. This worked just fine with SP 2007 but SP 2010 does not use SharePoint Drafts folder locally the same way (the programming changed, don’t recall where I saw it, probably when searching this issue online)  and I suspect that is one of the main issues why it does not work correctly.
    So at this time, I have not found a working solution to this problem.

  • Cannot use Keyboard and touchpad at the same time? Twist

    Hi,
    I have the lenovo twist with the i7 processor and a 500GB hard drive (8GB ram). I have noticed that when using the keyboard, you cannot use the touchpad. Although you can use the trackpoint? I know this is a minor issue but can it be updated to fix? 

    Gamloi7 wrote:
    Hi, Kyleosipad
    You should be able to do this; it just requires the changing of a setting. If you navigate to Control Panel ► Mouse ► UltraNav ►Settings ► Smart Check Notices ► PalmCheck, you can adjust the PalmCheck sensitivity. PalmCheck is a feature that helps reduce misclicks and touches of the TrackPad. If you uncheck the box that says Prioritize for keyboard and touch input, and click Apply, then you should be able to type and use the TrackPad simultaneously.
    Best,
    Adam
    Yes, that's true - you can disable the "Prioritize for keyboard and touch input," but then you lose Palm Check ENTIRELY even though it's still "set" to its default position.  Mine is set one setting from the red setting, so the Palm Check should be active and working as normal.  However, when I start typing it goes nuts and my mouse pointer jumps all over the place.  The only way I can get it to behave is to again enable "Prioritize for keyboard and touch input."
    Can you confirm this?

  • E6-00 and Belle update : Cannot use Wifi and LEAP ...

    Upgraded the E6-00 yesterday. First issues arise and even after a full reset, it still does not work.
    - Wifi connection using LEAP authentication
    Network is found, popup to enter username and password, all is good. Except the phone keep trying to connect while I type the password and each time, it re-ask the username. In short I cannot use connect at all as I don't have time to enter both username and password before it loop.... No more wifi connection possible as it use this LEAP authentication. Any way to increase the connection retry timeout ?
    - IMAP folder not found
    Same config as under Anna, but under Belle, it does not find any folder for IMAP account (and yes, the mail root folder is right), refreshing the folder list, just do nothing.
    - MAPS
    Say that it's empty and need maps. Give few options:
       * use OVI on the PC : OVI doesn't find MAP on the phone
       * use wifi to download map : .... if wifi would work, why not
    Anybody else got the same issue ? Or found solution ?
    L.\
    Solved!
    Go to Solution.

    Upgraded the E6-00 yesterday. First issues arise and even after a full reset, it still does not work.
    - Wifi connection using LEAP authentication
    Network is found, popup to enter username and password, all is good. Except the phone keep trying to connect while I type the password and each time, it re-ask the username. In short I cannot use connect at all as I don't have time to enter both username and password before it loop.... No more wifi connection possible as it use this LEAP authentication. Any way to increase the connection retry timeout ?
    Ok try to delete your apn, reset the device and resintall the OS. Don't restore any backup ans configure the WLAN apn: settings> connectivity> settings>destinations. Into the WLAN settings go to WI-fi security settings> in the fifrst field select EAP> in the second field EAP plugin settings > select EAP-LEAP.
    This way the apn will work again
    - IMAP folder not found
    Same config as under Anna, but under Belle, it does not find any folder for IMAP account (and yes, the mail root folder is right), refreshing the folder list, just do nothing.
    Please delete your mailboxes and configure them as you want. To create a IMAP access mailbox , for example Nokia Mail (outside of Messaging server) select Other. Put you credentials and choose Standard. You will see into Settings> your mailbox > sync content > Folder subscriptions> choose which folder to sync and it's done
    - MAPS
    Say that it's empty and need maps. Give few options:
       * use OVI on the PC : OVI doesn't find MAP on the phone
       * use wifi to download map : .... if wifi would work, why not
    Anybody else got the same issue ? Or found solution ?
    Please delete on mass memory the folder Cities and the file Qf, then open Maps and close the application. Verify that the folder Cities and the file Qf are again in E. Connect your device to Nokia Suite and redownload the cartography. 

  • Please help. when i plug in my Ipad to Itunes it says cannot use IPad and need 11.1 Itunes version. I thought I had updated Itunes to latest .

    I have had my Ipad for about a year and regualrly transfer pictures from my pc to Ipad using ITunes. for some reason when i have tried to do this again the computer comes up with message that I cannot use my IPad as it needs 11.1 version. I have downloaded latest version of Itunes. Pease help as I am pretty hopeless with IT. Thanks

    It sounds like you still have to update it.
    It's very easy to do. If you have OSX iTunes, go to iTunes>Check for Updates. If you have Windows, go to Help>Check for Updates

  • K9A2 Platinum Cannot Use RAID and PCI IDE card [SOLVED]

    Hello,
    I am trying to do the following set-up on my K9A2 Platinum, using a Phenom 9600 processor:
    - 2xSATA2 250GB Seagate drives on Promise T3 SATA controller (to be used as RAID 1 devices)
    - 1xSATA DVD-RW on Sb600
    - 2xIDE DVD-RW on onboard IDE
    - One PCI HiPoint RocketRAID ATA100 card (operating in IDE mode) on PCI slot 2 with 1xIDE 40GB hard disk (my Linux partition)
    On the BIOS I have enabled the Extra RAID function, in order to enable Promise to work as RAID.
    The system POSTs as follows:
    - Initial detection (CPU, RAM e.tc)
    - RocketRAID gets initialized and detects the IDE disk attached (40GB)
    - Promise RAID tries to detect the disks (the RAID array) and the whole system hangs.
    I've tried to relocate the two SATA hard disks to the SB600 controller (SATA 1&2 ports), but the same thing happens (after changing the BIOS to disable extra RAID function and enable RAID mode on onboard SATA SB600). The only way to POST the machine, is to remove the RocketRAID PCI card, but this way I can no longer boot my Linux disk.
    Using BIOS 1.2 and 1.3beta 2 (sent to me by MSI support).
    Any help is greatly appreciated.

    Thanks for the replies.
    Now, I'm going to surprise you: I managed to make both cards (the Promise and HighPoint) work together! Read how...
    Somehow, I got the impression that the problems I had were either caused by the BIOS or the hard disks (the SATA ones). I flashed the motherboard back to the official 1.2, doing a complete BIOS reset (removed the battery) and tried again without the RocketRAID card installed. This time, the Promise BIOS (which btw is an earlier version from the one the 1.3b2 BIOS had) reported that the one SATA drive was malfunctioning (and it was a sealed brand-new Seagate). Removed the drive, installed it on SB600 and SeaTools indeed reported that it was failing (it didn't manage to pass even the quick test...).
    Now I was curious: could it be that this - together with the beta BIOS - was the cause of my problems? I installed the other SATA disk to Promise T3 (the red socket) and the controller detected it, but all I could do is to set it up as a RAID 0 array (which pretty much does nothing). Next, I installed the RocketRAID also together with the IDE Linux disk and the system detected both disks; I can boot Linux fine and enter both the RocketRAID BIOS and Promise T3 BIOS. I can delete and recreate the array in Promise T3 as I please, but due to the fact that I only have one SATA disk now, I get limited options (RAID 0 and JBOD).
    Is it safe to assume that since the Promise BIOS is working with the RocketRAID installed, that my SATA RAID controller is working?
    Tomorrow, I shall return the SATA drive to the store I bought it and get a replacement, so that I can set up my RAID 1.
    The plan is to have Linux boot from the IDE (I've never managed to set up a Linux disk to boot from RAID) where Windows Server 2003 will boot from RAID.
    Will keep you posted about the progress I make.
    BTW Bas, I'm sorry I couldn't make out much of your brainstorming 
    Regarding the Promise controller: the board has a Promise chip right above the SATA ports, which has the number 42819 on it. I can also verify that both SB600 RAID and Promise T3 RAID have EXACTLY the same BIOS menu interface (the only differences are the texts "ATi SB600" and "Promise T3" on the menus, plus that the SB600 has also an option to securely erase the drives which Promise does not have). Are you suggesting that the SB600 RAID is actually the Promise T3? I do not know if it would be possible to have BOTH RAID controllers (SB600 and T3) working at the same time (I do not have enough disks to try...).

  • [Fixed?] Cannot use mouse and touchpad at the same time after upgrade

    Dell Inspiron 6400 laptop, Synaptics touchpad, external wireless USB mouse (Logitech).
    Yesterday I did a full system upgrade which among other packages upgraded
    [2007-11-08 00:06] upgraded synaptics (0.14.6-2 -> 0.14.6.99-1)
    [2007-11-08 00:06] upgraded tzdata (2007h-1 -> 2007i-1)
    [2007-11-08 00:06] upgraded xf86-input-keyboard (1.1.1-1 -> 1.2.2-2)
    [2007-11-08 00:06] upgraded xf86-input-mouse (1.2.1-1 -> 1.2.3-1)
    [2007-11-08 00:06] upgraded xf86-video-i810 (1.7.4-2 -> 1.7.4-6)
    [2007-11-08 00:06] upgraded xf86-video-vesa (1.3.0-1 -> 1.3.0-5)
    [2007-11-08 00:06] upgraded xorg-server (1.2.0-5 -> 1.4-4)
    Before the upgrade, I was able to use both the touchpad and the mouse at the same time, using the following xorg.conf settings:
    Section "ServerLayout"
    InputDevice "Touchpad" "CorePointer"
    InputDevice "USB Mouse" "AlwaysCore"
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    EndSection
    After the upgrade, the touchpad was still working with these settings but the mouse wasn't.  I then changed the xorg.conf settings as follows:
    Section "ServerLayout"
    InputDevice "USB Mouse" "CorePointer"
    InputDevice "Touchpad" "AlwaysCore"
    with the InputDevice sections remaining the same for USB Mouse and Touchpad.  After this change the mouse was working but the touchpad wasn't.  Finally, I changed the xorg.conf settings as follows:
    Section "ServerLayout"
    InputDevice "Touchpad" "CorePointer"
    InputDevice "USBMouse" "SendCoreEvents"
    with the InputDevice sections remaining the same for USB Mouse and Touchpad.  This didn't change anything from the last setting: the mouse was working but the touchpad wasn't.
    How can I restore the ability to simultaneously use mouse and touchpad?
    Last edited by RobF (2007-11-09 20:20:54)

    Try this:
    Move "SendCoreEvents" to the Touchpad line (replacing the "AlwaysCore" bit) and then comment out the USB mouse.  So in the end, it'll look like this:
    Section "ServerLayout"
    InputDevice "Touchpad" "SendCoreEvents"
    # InputDevice "USBMouse"
    EndSection
    Restart X and see if everything is working right.
    PS: You may also want to consider changing the Touchpad device line to "/dev/input/mouse2" instead of "/dev/psaux" as I believe psaux has been deprecated in kernel 2.6.  I could be wrong, but I can tell you that /dev/input/mouse2 works great with the touchpad on my Dell e1505.

  • Using Keynote and iPhoto slideshow together

    Computer: 12" Powerbook G4, 1.5ghz
    Display: 23" Apple Cinema Display (1920x1200)
    Software: OSX 10.4.9, Keynote 2, iPhoto 6
    Hi everyone! Above are the specs for the project I'm working on and here's the problem I'm having:
    I am trying to create a makeshift kiosk display for an upcoming event using slides in Keynote and a picture slideshow in iPhoto. I'm planning on running it off my Powerbook to my 23" Cinema Display.
    I'm using Keynote for the presentation content because of the motion effects (transitions, build-ins, etc.) and iPhoto for the image slideshow because of the Ken Burns effect (which I don't believe Keynote has). Both look great running seperately, however when this is being displayed at the show, I'll need both to run back to back automatically, without having to manually switch back and forth between applications.
    I have both the Keynote presentation and the iPhoto slideshow displaying at 1920x1200. I've tried exporting the iPhoto slideshow to Quicktime, but it won't export any higher than 640x480. Does anyone have any ideas on how I can make this work? I won't be able to operate the computer when this is running, so I really need to find a way to make everything run seamlessly while keeping the high resolution of the 1920x1200 monitor.
    Any advice would be GREATLY appreciated!
    Thanks,
    -Steve
    PB 12" 1.5ghz   Mac OS X (10.4.9)  

    iMovie is a DV editing app and the final results would still make a 640X480 file.
    I would change a few things to make everything work together:
    First is the display resolution. You want the 23 inches to be used so just reduce the display preferences to try and match your QuickTime file. 800X600 sounds about right but larger will still work as H.264 Video scales up in size very nicely.
    This would force you to "reduce" the dimensions of the Keynote file but that shouldn't be much of an issue.
    QuickTime Pro could also be used to "change" the dimensions of the 640X480 file. Again, H.264 scales up in size and would look pretty good at even double size.
    The goal is to have them both at the same dimension and then match the monitor resolution.
    Easier to change the display than the files.

  • Using iPhoto and PhotoShop Elements together

    Hi all,
    I purchased my lovely little MacBook Pro a week ago and the onyl problem I have had so far is dealing with iPhoto.
    I love using iPhoto to upload and browse my photos, however I prefer editing them in Photoshop Elements.
    I have found I have the following problems:
    - Cannot open a photo from within Photoshop Elements
    I have got around this my right-clicking the iPhoto Library folder within Pictures, selecting the Open Selected Items (or something like that), then when I have found the photo, again right-clicking and saying Open with PhotoShop Elements.
    Is there an easier way to do this?
    - Once I have edited my photo in Photoshop Elements, I can't view the edited photo in iPhoto.
    Any ideas?
    - In iPhoto, I like to create an Album of photos I would like to edit or upload to my online development company, but iPhoto doesn't seem to save albums in any searchable fashion, so I have to manually move each one into a folder on my desktop. This creates 2 copies of the same photo, which will eventually use a lot of hard disk space.
    Is there an easier way to do this?
    Many thanks,

    Sascha
    As Larry points out, you need to set PSE as an external editor.
    The Right Click Hack is unsuported, and more importantly, is precisely why you can't see the changes in iPhoto.
    You can set Photoshop as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop, and when you save it it's sent back to iPhoto automatically.
    - In iPhoto, I like to create an Album of photos I would like to edit or upload to my online development company, but iPhoto doesn't seem to save albums in any searchable fashion, so I have to manually move each one into a folder on my desktop. This creates 2 copies of the same photo, which will eventually use a lot of hard disk space.
    Albums are virtual entities - there is no corresponding folder of images. So, create the album, do your edits as described above, then to upload, if you're development doesn't have an iPhoto export plug in, select the Pics and go File -> Export and export them to a folder on the desktop. iPhoto will create a copy of the pics incorporating your changes. Upload from there - and after your upload is finished, trash the copies on the desktop - your pics are safe in iPhoto.
    Regards
    TD

  • Outlook 2013 - cannot use RoomLists and Suggested Times

    Hi,
    maybe someone has a clue on what is wrong here.
    In OWA, we can use the new features RoomList and Suggested Rooms when using the Calendar Assistant to plan a new meeting. The room list can be first be chosen, and the fields for the rooms are then populated as expected, you can choose one of the rooms.
    The following is true for every Outlook Session on PCs/virtual Clients, they are configured to use Online Mode: In Outlook 2013, when using: New Meeting - Scheduling Assistant, the feature "Choose an available room" stays complete empty and
    does not show the room list. Also the box below that, labeled "suggested Times", does not load or display content. Instead, an error message is displayed in it: "Suggestions cannot be provided because free/busy data could not be retrieved."
    Laptops use the exact same Outlook version, but run in cached mode. Here, if you deconfigure "Communication using http" in the OL profile, the lookup for suggested times works _once_ until Restart, then the button is automatically added, the
    profile automatically made good again, and the suggestion function is broken again.
    If you deconfigure the button "Connect to Microsoft Exchange using http" in the Outlook Profile under the connection tab on an _online mode PC_, the profile is broken and not automatically made good again. So no temporary workaround is possible
    here.
    We do not run policies that may keep Outlook 2013 from using the functions. In fact we do only rule cached or online mode.
    Our Room List is free of special characters and short enough, so no problems that other people have found in their environments.
    We have found some older articles reporting broken functionality, when applying or not applying hotfixes. We have checked several of that and it is not the source of our problem.
    Also, we are currently within one domain, so no complicated setup using one or more forests or even other domains, configuration of free/busy accounts should not be an issue here.
    Our best guess is it may have to do with using Exchange webservices or MAPI for the connection, see both ways described communicating over http or not above, but we have not found an error or wrong configuration here.
    Can you please advise on where to search next?

    Hi,
    Which version of Exchange server are you using?
    Does the free/busy information display correctly if we click the Rooms button and select a room from GAL?
    Are you trying to start a meeting in which either the Start time or the
    End time is outside your working hours? If this is the case, this issue may happen. Please have a look at the following KB article and check if it applies:
    http://support.microsoft.com/en-us/kb/2932395
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Using Thunderbolt and DisplayPort devices together

    Hello!
    Is it possible to use HDD storage connected via thunderbolt (WD My Book Thunderbolt Duo) and monitor with display port together with one thunderbolt port on Mac? Or thunderbolt chain will work only for all thunderbolt devices?
    Thanks!

    The Thunderbolt pass-through/daisy chaining on most TB drives will only work with a TB display (or anther TB device) not with a display port adopter.

Maybe you are looking for

  • One maschine for dev and test

    Hallo, i have one maschine for dev and test. i know that it is possible to do this with 2 instances. SAP recommend to separate dev and test on separate maschines. But it is possible. have anyone experiance with that? When i don´t want 2 instances it

  • Using stock photos in photoshop, resolution, size

    Hi. In PS CS4 on XP. I wanted to know what the deal is with stock photo sites. I have copied a stock photo before from the web, pasted it in Photoshop (which would place it in a new document) & it would be whatever the size the photo is at 72 dpi. I

  • $userscripts not working in Photoshop ME

    It seems like $userscripts doesn't resolve to the startup scripts directory on Photoshop ME. Any idea why? This is a screenshot one of my users sent me.

  • Preview doesn't remember the last page opened

    I have noticed that Preview doesn't remember the last page of the PDF documents after 30 mins of usage (or opening up several PDF files). Is there any way to make Preview always remember the last page of files irrespective of time the file was last u

  • Does anyone else have a problem with printers going offline?

    Macbook Pro OS X 10.6.8 I received a Epson Artisan 730 All in One Wireless printer in Dec 2011 and spent literally hours trying to get the computer and printer to recognize each other.  After about a week of phone calls between Apple and Epson (each