Workflow and problems with labels

Hello!
I've been testing out some things in Edge and I've noticed a few things that I've been trying to find some documentation and information about, I would greatly appreciate any enlightenment on the following observations:
Frame labels do not work for me - both with files created from scratch in Edge and ones made of existing HTML + CSS files. I tried the in app lesson on looping the counter and the 'Play from (loop)' doesn't work, I thought it might have been because of an error in the instructions telling users to play from a frame label that exists at the same point in the timeline where there is a 'stop' trigger but even offsetting the 'loop' label would not work. The final sample file works as intended when previewed.
I tried a few tests with new files consisting of really basic stuff - one symbol with an 'on-click' > play from (go/start/in/one/etc) and another symbol simply animated on the x and y axis with an animation to the opacity with a stop trigger placed on the timeline and tested with the play from label placed both at the same time as the stop trigger and offset after the trigger - neither works it has no effect when clicked. (I know about what scripts to do on completion to get it to play from the start) Interestingly play from (milliseconds*) *0.125/1001/2000000 etc does work for me but this is not ideal as it is far more useful to be able to play from labels.
Animating existing HTML - I've got a simple html page set up consisting of a container div with a number of other divs inside which I have been animating in Edge. The Edge file is set up so the container CSS overflow is hidden. Now can someone please clarify if the following method of workflow is a mistake on my part, limitation in HTML+DOM, bugs in edge or combination/none of those things?
Workflow - bring in the html file to edge do simple animated opacity etc on the various elements start adding keyframes and labels etc - the label problems as above.  Now my intent is to have each of the div's in the container be clicked on and bring in the next one - in the same place in the viewport. I've noticed that when changing various elements visibility after tweaking animation to look good and then subsiquently setting on-off keyframes for visibility it would suddenly cause all elements lower in the DOM to move position and suddenly have what looked like keyframes for y axis position/transform? Is this bad practice to use the on-off visibility for elements? It meant that what should be a really simple and quick 10 second animation took about 3 hours to make, should we be not using the on-off keyframes for showing/hiding buttons that are in divs that sit on top of each other? Should i set up z-index values for all elements in the CSS files? (I saw a reference to you can assign z-index values in the 'elements' panel but I can only see 'arrange' - is this a different term for z-index?)
I'm a long time user of flash, maya, after effects, digital fusion, combustion, and many other timeline based software tools - it is fairly intuitive to me picking up new systems but the issues with on-off visibility and keyframes below in the timeline really was a very frustrating workflow. I'm used to changing and editing the whole animation on the timeline seeing what works and doesn't - deleting layers, changing timings etc, i found this way of working really slow due to changes to elements position when ones above in the flow were turned on or off. Please do suggest what I should change in my approach to using edge as compared to other animation tools as it looked great on preview but I'm a bit frustrated in using the release. Is this a bug in my release?
Where is the help and reference files for Edge? - is this screen shot it? -
I can't find any info on basic definitions of the tools and options anywhere, and can't find much on anything to do with using edge in production with existing HTML documents, please send me some links if you have them. I've seen the edge javascript API thing but is there anything else?
Cheers.
Here is the approximate code of the page for reference - I actually got the file working in the end but using 'play from (miliseconds)' instead of play from (label) and much frustration slowly editing the timeline and elements visible/hidden status and redoing animation on elements below in the timeline to get them placed correctly.
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Master Document with base styles</title>
<link href="css/master_styles.css" rel="stylesheet" type="text/css" />
<!--<link href="css/ipadV.css" rel="stylesheet" media="only screen and (min-device-width:  768px) and (max-device-width: 1024px) and (orientation: portrait)" />
<link href="css/ipadH.css" rel="stylesheet" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape)" />
<link href="css/iphoneV.css" rel="stylesheet" media="only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait)" />
<link href="css/iphoneH.css" rel="stylesheet" media="only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape)" /> (Commented out for testing on desktop)-->
<link rel="stylesheet" media="only screen and (min-width: 320px) and (max-width: 480px)" href="css/mobile.css" />
<link rel="stylesheet" media="only screen and (min-width: 768px) and (max-width: 1024px)" href="css/tablet.css" />
<link href="css/desktop.css" rel="stylesheet" media="only screen and (min-width: 1025px) and (max-width: 3000px)" />
<style type="text/css">
<!--
a:visited {
    color: #00FF00;
a:hover {
    color: #FF0000;
a:active {
    color: #0033FF;
-->
</style>
</head>
<body>
<div id="container">
         <!-- start Level 1-->
            <div id="mainContent">
                <div id="mainlogo">
                </div>
            </div>
            <div id="firstButton">
                  <div id="Abutton1">
                  <p><img src="img/a_72_off.png" width="72" height="72" /></p>
                 </div>
            </div>
            <div id="transition1">
                   <p>Wipe transition 1</p>
            </div>
            <div id="secondButton">
                    <div id="Abutton2">
                   <p><img src="img/a_72_off.png" width="72" height="72" /></p>
                   </div>
            </div>
            <div id="secondContent">
                <div id="Abutton3">
                <p><img src="img/a_72_off.png" width="72" height="72" /></p>
                </div>
            <div id="text1">
                  <h1>Heading </h1>
                  <p>Byline</p>
                </div>
             </div>
  <div id="transition2">
    <p>Transition 2 - TBC</p>
</div>
      <div id="thirdContent">
      <div id="lastbutton">
        <p><img src="img/end_icon_crop.png" width="150" height="150" border="0" /></p>
      </div>
      <div id="text2">
        <h1>Heading</h1>
        <p>Byline</p>
      </div>
</div>
    <div id="transition3">
        <h4>Small print</h4>
</div>
</div>
</body>
</html>
CSS:
(master_styles.css)
@charset "utf-8";
body {
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #19171B;
    font-family: AFBattersea;
    font-size: 100%;
#container  { /* the main holder for all of the viewport content - an image frame */
    text-align: left;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
#mainContent  {
    z-index: -1;
#firstButton {
#transition1 {
    color: #FFF;
#secondButton {
#secondContent {
#transition2 {
    color: #FFF;
    height: 100%;
#thirdContent {
#transition3 {
    color: #FFF;
#mainlogo {
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/960_off.png);
#Abutton1 {
#Abutton2 {
#Abutton3 {
#text1 {
#text2 {
#lastbutton {
#text3 {
(desktop.css) - I've not included the other css files referenced in the media queries as they only contain names of elements for this purpose
@charset "utf-8";
#container  { /* the main holder for all of the viewport content - an image frame */
    text-align: center;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    height: 700px;
    width: 1024px;
.mainContent  {
    height: 100%;
#firstButton {
    height: 100%;
#transition1 {
    height: 100%;
#secondButton {
    height: 100%;
#secondContent {
    height: 100%;
#transition2 {
    height: 100%;
#thirdContent {
    height: 100%;
#transition3 {
    height: 100%;
#mainlogo {
    background-image: url(../img/960_off.png);
    height: 72px;
    width: 960px;
    margin-top: 364px;
    margin-right: 36px;
    margin-left: 36px;
#Abutton1 {
    height: 72px;
    width: 72px;
    margin-top: 364px;
    margin-right: auto;
    margin-left: auto;
#Abutton2 {
    height: 72px;
    width: 72px;
    margin-top: 364px;
    margin-right: auto;
    margin-left: auto;
#Abutton3 {
    height: 72px;
    width: 72px;
    margin-top: 364px;
    margin-right: auto;
    margin-left: auto;
#text1 {
    text-align: left;
    margin-top: 16px;
    margin-left: 320px;
#text2 {
    text-align: left;
    margin-top: 16px;
    margin-right: 330px;
    margin-left: 360px;
#text3 {
    text-align: center;
    text-indent: -192px;
    width: 320px;
#lastbutton {
    margin-top: 364px;
    margin-right: auto;
    margin-left: auto;
    height: 150px;
    width: 150px;

Hi,
I wonder if it's related to the multilingual capability of BPM Object presentations.
Could you:
1. right mouse click the project in the Project Navigator tab.
2. click "Project Preferences"
3. click "Languages"
Do you see multiple languages? Is English (or whatever language you're using inside Studio) the default?
When you log into the WorkSpace, could you double check the language you are using (log in -> click "Settings" in the upper right corner) -> with the "Display" tab selected, is the language you chose as the default in Studio selected?
I suspect the reason you see some but not all of the labels is because you have defined some of those labels in the language selected in the Workspace. You can add the addtional labels for the various languages you want to support if you:
1. Open a presentation
2. Click one of the labels
3. In the properties tab on the right, click the field beside the "Display" property
4. Click the button with the "..." on the right side of this field
Hope this helps,
Dan

Similar Messages

  • Problem with label on barseries ?

    Hi,
       I have faced a problem with label truncation for the clustered and stacked bar chart.
    if the size of the bar is too small and labelposition is inside label truncates , similarly when bar is too long and occupy the graph width the label outside truncates.
    Is there any way to resolve this problem.
    Thanks in advance

    for b)
    JButton nextButton = new JButton(String.valueOf(i));
         nextButton.setForeground(Color.red);//
         nextButton.addActionListener(this);
         days.add(nextButton);
    OR
    Font titlefont = new Font("SansSerif",Font.BOLD,20); //Globle
    JPanel middle = new JPanel();
    monthlabel = new JLabel();
    monthlabel.setFont(titlefont);
    middle.add(monthlabel);
    I'm new it java but i think this should help

  • Any new  about updating lion to 10.7.4 and problems  with bluetooth devices  like Bose Soundlink Bluetooth Speaker?

    Any new  about updating lion to 10.7.4 and problems  with bluetooth devices  like Bose Soundlink Bluetooth Speaker?

    Monroe
    Just in the moment i updated to lion 10.7.4  my Bose Soundlink Bluetooth  stop working as  good as it was. I´m gonna try the update in the Bose  web page. I hope  it works

  • Printing Problem with labels and envelopes

    I have Microsoft office:mc 2004 and cannot print labels and envelopes. Whenever I ask to print it boots out and states that there is a problem and ask me to report the problem. I have reported it 20 times in the last 2 days with no response from apple. Can anyone give me any input on how to correct this problem? I have a HP laserJet 3050 all in one printer and did not have these problems when I was using a PC with windows. Please help as I am at my last of my patience on this problem. Thanks and please use language I can understand as I am not computer literate on all of the lingo that is being used.

    Hi Lilmac, and a warm welcome to the forums!
    Have you installed a Printer Driver later than the one that comes on the CD? hp generally includes older ones.
    Tough to say with so little to go on, but since it could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot.
    The usual reason why updates fail or mess things up, is if Permissions are not fixed before & after every update, with a reboot... you may get a partial update when the installer finds it doesn't have Permissions to change one obscure little part of the OS, leaving you with a mix of OS versions.
    Some people get away without Repairing Permissions for years, some for only days.
    If Permissions are wrong before applying an update, you could get mixed OS versions, if Directory is the slightest messed up, who knows!
    If many Permission are repaired, or any Directory errors are found, you may need to re-apply some the latest/biggest updates.

  • Can't label files in bridge, and problem with starred files

    I'm working with CS3 on saving raw files to jpegs, and I usually organize them by 5 starring my favorites as well as labeling them, and just in the last 2 days Bridge has been acting up and won't label the files. Also, it will 5 star them, but only about a 1/4 of them show up in the filter as being starred. Any ideas? I already checked my access, and I can read and write to them.... the only thing I can think of is that I ran a few updates a day or two ago.... help! this is getting really frustrating and slowing down my workflow...

    http://forums.adobe.com/community/bridge/bridge_macintosh

  • P35Neo2 FIR and problem with booting

    So I have problem with booting my compie. Compie try to boot to the part of start windows, after that in case of switch into graphicis mobo going down and restarting (WinXP SP3). I think, that problem is not in PSU, cos i have 800W XILENCE (+3,3V 28A, +5V 32A, 4x+12V 20A, -12V 0,5A, 5VSB 3A), Board P35 Neo2 FIR, E7200 proc, bios 1.9 (updated). I have 5 disk and use raid function in bios. Graphic Radeon HD3650, Memory Zeppelin 4x1GB KIT 800Mhz.
    I start with change of PSU from 550W to 800W but it didnt work, previus PSU had (+3,3V 30A, +5V 32A, 2x+12V 18A, -12V 0,8A, 5VSB 3A),
    i try change memory, but no efect.
    After update bios there was standard warning about bad cheksum, after resave Bios settings it was gone, and compie boot after that.
    Any idea?
    Thanks

    So my problem is solved...but my feeling of this is not good...
    I updated BIOS from 1.9 to 1.10, reset Bios settings, after restart i pressed F2 for load standart settings and i changed in Bios only that i am using RAID and disable disket and it works...i boot my compie into windows without any problem...
    So i try change another things in Bios and my compie hangs in continous resets without booting into windows...no BSOD only restart and restart...
    After reseting Bios settings and again Load to Default it works...and run windows...
    There was only one new thing ... screen flick for the second with new screen about checking NVRAM ....this screen was not visible before (and maybe this is the problem), cos if i change something in BIOS about clocking and power management and other ones, this screen is by booting missing...and compie not run in Windows...
    Next thing what i see, that in CPU multiplication dont work multiplication 9,5 and proc used frequency 2400 (9x) (it is E7200 on 2533)
    i hope that this bios 1.10 fixed my problems...and my opinion is that P35 Neo 2 FIR is not ideal board for E7200 proc...so i m looking for another proc...and maybe another board...

  • Choosing between external and partner application and problem with login

    We have an application on Oracle App Server 10.1.3.3 and we have an OID server.
    I had taken this for granted that I should define the application as 'Partner Application' and not external application for single sign on.
    Now that we need the 'PASSWORD' retrieved by application, we are considering defining it as an external application.
    There are at least two problems I have encountered defining the application as external:
    1. 'pageConfig:serverDate' is among the login form's inputs in the login page, but I can't set it in orasso 'Edit External Applications' page
    2. After login using SSO as external application and when I click on the application's new link, the login page is shown with the username and password field filled, but I have to click on login button anyway (no automatic and invisible login).
    I will be very grateful if someone gives a general view on the differences between external and partner, whether in this case external has to be used or partner and finally give some comment on my specific problem with login button and manual login.
    Thank you

    Just some information :
    - The problem with LOGIN page exists. I don't have that problem with for example GMAIL when defined as external application, but with my applications in Oracle Application Server.
    - There is also another thing I don't understand. The link to external application is something like:
    javascript:open_jwindow('../ealogin?ID=76D4766','76');
    and couldn't be executed outside pls/orasso
    in other words we can't give that to our users, can we? They should login to orassso and see that?
    We don't want to involve them in Identity Management...
    Any help is appreciated....
    Regards

  • Alpine CDE-103Bt Head Unit and Problem with 160 Gig Ipod Classic

    Hi,
    2 weeks agao I brought a new Alpine CDE-103BT Head unit for my car. I have owned one of the old 160 gig classics for the last year and a half and at the time I brough the unit I was told this should all work sweet. Indeed all of the documentation from Alpine, and the Sales person, said this would not be a problem.
    Unfortunately from Day one, most times after I received a phone call, while playing my ipod, the Head Unit would givesme an "Error-03" message and stop playing my music. I would then have to unplug my ipod, reset it, and plug it back in. Extremely frustrating.
    The people I brought the Head Unit from are trying to say its an Ipod problem, yet I never had any problems with it and after I contacted the Australian Ipod help line they said it all appears to be working correctly. The firmware version I was on when I first tried the ipod on the head unit was 1.1.2. The Alpine manual said it should be 1.1.1 (then again you would expect them to be able to cope with updates) so as a last ditch attempt I downgraded the firmware on my ipod to 1.1.1, but it did not make a difference.
    The only other thing I have noticed is that I switch the repeat and shuffle settings off when I plug in the unit, but after I unplug it after an Error-03 the Repaet function has been swtiched to all - I am not sure if this is what is causing the problem.
    I am getting pretty frustrated with everything and I was wondering if anyone else has come accross this issue and even me helpful had they found a way to fix it.
    If not has anyone had any postive expereinces with Alpine head units?
    Thanks

    Hi,
    2 weeks agao I brought a new Alpine CDE-103BT Head unit for my car. I have owned one of the old 160 gig classics for the last year and a half and at the time I brough the unit I was told this should all work sweet. Indeed all of the documentation from Alpine, and the Sales person, said this would not be a problem.
    Unfortunately from Day one, most times after I received a phone call, while playing my ipod, the Head Unit would givesme an "Error-03" message and stop playing my music. I would then have to unplug my ipod, reset it, and plug it back in. Extremely frustrating.
    The people I brought the Head Unit from are trying to say its an Ipod problem, yet I never had any problems with it and after I contacted the Australian Ipod help line they said it all appears to be working correctly. The firmware version I was on when I first tried the ipod on the head unit was 1.1.2. The Alpine manual said it should be 1.1.1 (then again you would expect them to be able to cope with updates) so as a last ditch attempt I downgraded the firmware on my ipod to 1.1.1, but it did not make a difference.
    The only other thing I have noticed is that I switch the repeat and shuffle settings off when I plug in the unit, but after I unplug it after an Error-03 the Repaet function has been swtiched to all - I am not sure if this is what is causing the problem.
    I am getting pretty frustrated with everything and I was wondering if anyone else has come accross this issue and even me helpful had they found a way to fix it.
    If not has anyone had any postive expereinces with Alpine head units?
    Thanks

  • Spanish Dictionary and problems with spanish special characters

    I need a spanish dictionary, with all spanish words. I know that your priority are france, spanish, germany and Italy. So, the component has problems with spanish special words, this problem was notified before.
    Have you ready something? A new version?
    Thank you for your time.

    For the special character issue, you can check the reference:
    http://forums.adobe.com/message/2430501

  • A lot of bug in ios 7 and problem with the iphone

    There is a problem with ios 7 when I delete history with my iphone 4s ...and only one month after that I've buy my iphone appared a problem with the wi-fi!!!!!!

    Try https://discussions.apple.com/message/23175298#23175298
    Allan

  • MobileMe Gallery and problems with new password

    Hi. I'm using iPhoto 09, and have posted many MobileMe galleries over the years. Recently, I changed my MobileMe password. Now, iPhoto tells me that an "error occurred with the publication of album 'XYZ' Your MobileMe account information is not correct. The provided login or password is not valid" and it prompts me to return to MobileMe Preferences to re-enter my correct login and password. Well, the trouble is that I've done this many times. (Which also causes sync problems - but that's another story.) And though my System Preferences are now correct, I still cannot successfully update a MobileMe gallery in iPhoto. I checked my settings in the Keychain, and all is fine. I also trashed iPhoto preferences, but the problem still remains. Any thoughts on how to solve this irritating problem? Thanks!

    I found another solution based on this posting.
    http://forums.macrumors.com/showthread.php?t=689762
    Works perfectly.
    +I have the same problem and started a thread about it on Apple's discussion board, see http://discussions.apple.com/thread....art=0&tstart=0+
    +First, I'd suggest sending Apple feedback on it (select "Provide iPhoto Feedback" from the iPhoto menu).+
    +When you change your MM password, you need to enter the new password in MobileMe in System Preferences. When you select MobileMe in System Preferences, it will (correctly) say that your password has changed and ask for the new one.+
    +It looks like the problem with iPhoto is that when you enter the new password in MobileMe preferences, the keychain entry for it isn't being updated. Look for publish.me.com in Keychain Access. It will probably have the old password. Changing it there and then signing out/in in MM System Preferences seems to fix the problem with iPhoto. If not, try deleting publish.me.com in Keychain Access and then sign out/in to MobileMe in System Preferences.+
    +Give it a try and post what happens.+
    Jay

  • Exchange 2010 : Doubt with recipient type and problem with disappearance of the original recipient in the mail relay

    Hello. First of all, thank you very much for your attention.
    After that, I will expose the problem:
    I have a user domain called "comercial" with a corresponding mailbox "[email protected]"
    . This user
    has assigned multiple emails such as "[email protected]", "[email protected]", "[email protected]" , having as default   email "[email protected] ".
    On
    the other hand,
    another domain user
    called
    "menganito" with it's mailbox  "[email protected]" account, also has a few mail accounts "[email protected]", "[email protected]", " [email protected]"
    ...having
    as default   email "[email protected]
    The user "Comercial" is forwarding
    all of it's mails to the user "menganito".
    The problem is that "menganito" is not receiving the exact
    "comercial"
    sender email, but the email which appears by default ("[email protected]").
    "Menganito" would like to know
    from which email exactly the mails he is receiving have been sent ("[email protected]",
    or "[email protected]"
    or "[email protected]"). 
    Also, he would like to knowthe email of the original sender (from the outside of the domain) whom the user "Comercial"
    have received the email from.
    In another type of email servers (Kerio,...)
    this is not a problem, because forwarding by
    defaultis always showing
    the original sender and original receiver.
    Maybe the problem comes from the recipient type I'm using.
    Should I use another type of recipient? should I use a transport rule?
    Any idea ? Thanks again in advance.

    Hi Simon. First of all thanks for your answer.
    This happens with all accounts. I tried with news accounts and different browsers for OWA and Outlook anywhere and happens the same. Is not a cache problem
    The problem is
    when "[email protected]"(default
    and set as default answer
    account by
    exchange)
    receives
    a message in  "[email protected]" when
    forwards to "Menganito"
    this message will appear from"[email protected]"
    instead of "[email protected]".
    This happens with all accounts.
    I can understand that i can't avoid
    default reply address on the same
    domain, but also with different domains happens
    the same?
    The platform is only one clean and updated server 2012 as dc and another clean and updated server 2012 with exchange 2010 sp3 directly and after rollup 4 for exchange SP3, no previous versions and servicepacks of exchange 2010 was installed before. Before
    install exchange 2010 sp3, i installed all the filterpacks (3) and .net 3.5 and all updates that i finded for 2012 server (i tried for 2 days): No more updates for sure.  After, in powershell, i put this:
    Add-WindowsFeature NET-Framework-Core,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,Web-Mgmt-Tools,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,Web-Asp-Net,Web-Client-Auth,Web-Dir-Browsing,Web-Http-Errors,Web-Http-Logging,Web-Http-Redirect,Web-Http-Tracing,Web-ISAPI-Filter,Web-Request-Monitor,Web-Static-Content,Web-WMI,RPC-Over-HTTP-Proxy
    -Restart
    The machine and exchange works good (i3 with 4gb ram, and raid 1 1tb of HD) and the organization only has 15 mailboxes. No problems with even viewer and all is correct.
    Thanks again.

  • 10.5.3 update and problems with ReadyNAS server

    After updating to 10.5.3, I have had some problems with photoshop files on my Netgear ReadyNAS server
    • I worked on a couple of photoshop files - files that existed previous to the update. I made some changes and saved them.
    • Later, when I tried to open those files, I got the following error message and I'm not able to do anything with the file:
    *Could not complete your request because it is not a valid Photoshop document.*
    • It appears that new files created, saved, worked on later and save out again work fine. In other words, files created after the update don't appear to experience the same issue.
    • I've also seen the problem when creating new files in DVDPRO HD format with a square pixel aspect ratio and with layers.
    • I tried the same routine on local drives on my hard drive and had no problems. So, it doesn't appear to be a problem with my Macbook
    • I also tried the same tasks with my tower before I updated the software and didn't have any problems. After the tower was updated, I tried the exact same thing and received the error message.
    So, everything is telling me that the issue stems from the Mac update. So far, I only see the problem with .psd files - other formats don't seem to be a problem yet. I tried InDesign docs, flash files and they look to be fine. Strangely enough, jpgs changed in photoshop don't seem to be an issue either - just .psd files.
    Checked with Netgear and they weren't a whole lot of help. They claimed it might take 60-90 days for an update on their end. Is anyone else experiencing this problem on their server? Any suggestions on what to do?

    Having exactly the same problem and it is crippling my design studio from last night. Saved a previously created before the update Photoshop file (110mb) yesterday evening after doing the Apple update, opened it this morning, no joy.
    It seems that this problem has been around before but not that I'm aware with the ReadyNAS server. Adobe say that you shouldn't use a networked server as they don't support this way of saving:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb403815&sliceId=2
    Sorry that this post is brief but we are copying all the files to a separate server as we have deadlines. All I can say is nice work Apple. *****!!! The same goes to Adobe.

  • Switching iPhones and problems with contacts

    I upgraded my iPhone so I am giving my old one to my boys. I was able to sign into iMessage and FaceTime with their apple id, but I can't remove my phone number. This doesn't seem to be a problem except when I change the contacts on one phone, it automatically changes it on the other phone. No matter which phone is changed, it changes the other one. I don't know if this is because the phone number is still associated with the old phone or not but that is the only thing I can figure out. Thanks for your help!

    I figured it out! I had to delete account in he iCloud settings. I was scared to hit this button because I deleted my backup once and lost all my apps. Deleting the account is different I guess. Now my old phone is not linked to the new phone.

  • Using Tiger 10.4.7 with AD 2003 and problems with rq'd Password Change

    I have been able to successfully change my password 4-5 times before in my scenario using Tiger v-.2->.6 and have never had a problems.
    Now I just changed my old expired password, as req'd from the AD policy, to my new Password on my XP box and have a Mobile account on my Powerbook that won't let me in now using my new Password. It says I am unable to use this <name> account at this time. Is there a propogation time to pass?
    Local Admin account on PB can sign in fine- My alternate Systems Admin account <mobile> can sign in as well fine. Other local accounts work well as well.
    As a mobile account I cannot change my password without being connected to the AD network at this point (no access through local System Prefs). Has anyone ever experienced this? Or is everyone still shying away from Mobile accounts usage and Homesync (Works great on my machine - problems with other accounts/computers)- I'm sort of a Mac/AD Daredevil here in XP-land, since we only really support Macs because our CEO won't (refuses to) use XP and I am a Jedi Knight inside the Dark Star (Just learning XP/AD to get steady work).
    Anyone out there have anything to add/suggest? THX

    The admonition not to use the Tiger install disk utility only applies to repairing permissions. You can use Disk Utility from the install disk for verifying and repairing your hard drives. However, with Tiger, you can now verify your boot drive with Disk Utility from your boot drive itself (this only works if you have disk journaling turned on and it's on by default). If the drive would need any repairs then you would have to boot from the installation disk to repair it.
    Disk Warrior is probably the best hard drive maintenance utility in the entire Macintosh universe and it works fine with Tiger. Just make sure you have the latest version which is 3.0.3 I believe.
    In my opinion the iLife suite of programs is absolutely essential for the complete Macintosh/OS X experience. There's nothing like it on any other platform, period. It's a true work of excellence.
    You will enjoy the stability and compatibility of Tiger especially when on the Internet. The latest version of Safari is the best yet.
    Dual 2.5GHz G5 Power Macintosh   Mac OS X (10.4.7)   1.5GB RAM 20" Apple Cinema Display

Maybe you are looking for

  • BAPI_ACC_INVOICE_RECEIPT_POST with bschl

    Hi How to create an invoice by FM BAPI with parameter Posting key?

  • Vsftpd "530 Login incorrect"

    Hi, I got problem connecting to my ftp server as "alie" or as anonymous user. Here is my config vsftpd.conf # Example config file /etc/vsftpd.conf # The default compiled in settings are fairly paranoid. This sample file # loosens things up a bit, to

  • Stacked Bar graph with multiple bars

    Hi, I want to have a graph where I will have multiple stacked BARs. Having single stacked bar is OK. Is there a way to achieve this ? I am using 11.1.1.2 ADF and ADFBC For Ex: You have -TV sales per month for different regions -DVD sales per month fo

  • Crystal Reports Server XI - server migration

    Post Author: jamessep1973 CA Forum: General Hi, I need to migrate my Crystal Server stuff onto a new server - can anyone point me towards resources/documents/help files to assist with this? Many thanks, James.

  • Integration of JDeveloper 10G (UIX) with Crystal Reports 10

    My problem here is a conflict between the Oracle xml parser library (xmlparserv2.jar ) and the Crystal Reports 10 xml parser library (xmlParserAPIs.jar). The Oracle library is included in my project library list by default. If I add in the Crystal Re