PhotoAlbum functionality negated

I am using DW (CS3) in conjunction with Fireworks (CS3) to create web photo albums.  All of a sudden, when clicking in DW the command "Create web Photo Album", instead of the usual form to fill in paths, titles, etc. I get a message reading "This command requires that Fireworks 4 or better is installed in your machi" (cut off here), plus a button to get a Trial Fireworks Download.
Besides being incensed at Adobe (I opened this case, but they said CS3 is no longer supported, rather than helping a user that had lost functionality in their products for no reason  of his own) I also have Fireworks CS5 in my computer but that did not solve the issue.
I will much appreciate anyone's help.

No. Even with proof that it's yours, they can't bypass the passcode. All they could do is what you can do yourself, which is restore the phone in recovery mode, which will wipe all of the information.
There is no magical hidden backup. An earlier version of iTunes won't do you any good at all.
If you didn't back it up, the data is going to be lost.
Unless you can convince the NSA or FBI that you're a terrorist and you have recorded plans for an attack in the voice memo app... you'll probably have to wait a while to actually get the data back though.

Similar Messages

  • How to format a currency value

    Hi,
    I have an internal table with a field of type cosp-wtg001 (data type CURR length 15). Field works fine (it stores well the value and this sort of things) but when I store internal table into a file (with GUI_DOWNLOAD function) negative values appears with the minus operator at the end of the number. For example:
    3400- instead of -3400.
    But I need that the operator appears before the value (I need -3400 instead of 3400-).
    How can I do this?
    thanks in advance

    Hi Javier,
    Use this formatting for your internal table.
    data : ws_temp type p decimals 2,
    data : begin of i_t_amount1 occurs 0,
    qsshb like bseg-qsshb,
    end of i_t_amount1.
    data : begin of i_t_amount2 occurs 0,
    qsshb(15) like c,
    end of i_t_amount1.
    loop at i_t_amount1.
    move corresponding it_amount1 to it_amount2. 
    IF it_amount2-qsshb+15(1) = '-'.
    ws_temp = it_amount2-qsshb
    ws_temp = ws_temp * -1.
    it_amount2-qsshb = ws_temp.
    ENDIF.
    append i_t_amount2.
    endloop.
    Download the second internal table.
    Check this post if required.
    Re: +/- Indicator (Leading - sign)
    http://help.sap.com/saphelp_erp2004/helpdata/en/ff/4649baf17411d2b486006094192fe3/frameset.htm
    Hope that helped.
    Thanks,
    Susmitha

  • Trouble compiling X11r6.8.0

    I'm having a problem compiling this version (trying to build a driver with a change.)
    Here's the error I get:
    fbmmx.c: In function 'negate':
    fbmmx.c:107: error: incompatible type for argument 1 of '__builtin_ia32_pxor'
    fbmmx.c:107: error: incompatible type for argument 2 of '__builtin_ia32_pxor'
    fbmmx.c: In function 'expand_alpha':
    fbmmx.c:166: error: incompatible type for argument 1 of '__builtin_ia32_por'
    fbmmx.c:166: error: incompatible type for argument 2 of '__builtin_ia32_por'
    fbmmx.c:166: error: incompatible types in assignment
    fbmmx.c:168: error: incompatible type for argument 1 of '__builtin_ia32_por'
    fbmmx.c:168: error: incompatible type for argument 2 of '__builtin_ia32_por'
    fbmmx.c:168: error: incompatible types in assignment
    I'm building with this gcc and Arch 0.7.1
    L%  gcc --version
    gcc (GCC) 4.0.3 20051222 (prerelease)
    Copyright (C) 2005 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    Any ideas?
       Thanks.

    Well, it's worth a note that some proprietary display drivers don't like composite and render. The nVidia ones seem to be working pretty well, but ATI always gave trouble with these things. I'm not using composite currently but I did in the past with no problems on nVidia hardware.
    Maybe the above should be stated as "issues with xorg7 tend to be caused by unstable drivers and bad configs."

  • Using decode function without negative values

    Hi friends
    I am using oracle 11g
    I have at doubt regarding the following.
    create table Device(Did char(20),Dname char(20),Datetime char(40),Val char(20));
    insert into Device values('1','ABC','06/13/2012 18:00','400');
    insert into Device values('1','abc','06/13/2012 18:05','600');
    insert into Device values('1','abc','06/13/2012 18:55','600');
    insert into Device values('1','abc','06/13/2012 19:00','-32768');
    insert into Device values('1','abc','06/13/2012 19:05','800');
    insert into Device values('1','abc','06/13/2012 19:10','600');
    insert into Device values('1','abc','06/13/2012 19:15','900');
    insert into Device values('1','abc','06/13/2012 19:55','1100');
    insert into Device values('1','abc','06/13/2012 20:00','-32768');
    insert into Device values('1','abc','06/13/2012 20:05','-32768');
    Like this I am inserting data into table for every 5 minutes Here i need the result like
    output:
    Dname 18:00 19:00 20:00
    abc 400 -32768 -32768
    to retrieve this result i am using decode function
    SELECT Dname,
    MAX(DECODE ( rn , 1,val )) h1,
    MAX(DECODE ( rn , 2, val )) h2,
    FROM
    (SELECT Dname,Datetime,row_number() OVER
    (partition by Dname order by datetime asc) rn FROM Device
    where substr(datetime,15,2)='00' group by Dname.
    According to above data expected result is
    Dname 18:00 19:00 20:00
    abc 400 600(or)800 1100
    This means I dont want to display negative values instead of that values i want to show previous or next value.
    Edited by: 913672 on Jul 2, 2012 3:44 AM

    Are you looking for something like this?
    select * from
    select dname,
           datetime,
           val,
           lag(val) over (partition by upper(dname) order by datetime) prev_val,
           lead(val) over (partition by upper(dname) order by datetime) next_val,
           case when nvl(val,0)<0  and lag(val) over (partition by upper(dname) order by datetime) >0 then
             lag(val) over (partition by upper(dname) order by datetime)
           else 
             lead(val) over (partition by upper(dname) order by datetime)
           end gt0_val
    from device
    order by datetime
    where substr(datetime,15,2)='00';Please take a look at the result_column gt0_val.
    Edited by: hm on 02.07.2012 04:06

  • Negative values to be permitted in Post capitalisation function.

    Negative value adjustment required by the client.
    Negative values to be permitted in Post capitalisation function in Asset Accounting.
    Please show me the steps how to configure and how to complete the transaction with an example.

    Hi,
    Generally  negative values always be allowed for assets under construction.
    Refer Below note you can get more information
    Note 19048 - AA617 with credit memo on fixed asset / AuC settlement
    Ex: Asset Value: $ 100
    Dep : $ 80
    Now you want to post Manual Dep/ Credit Memo : $ 22 then you should select Nagative Value Allowed Check Box in Asset Maset Dep Area Level.
    Regards,
    Viswa

  • Revaluate function using a negative value in the revaluation variable

    Hello,
    I'm trying to use the revaluate function in IP, using a user defined variable containing a negative value, I have a error that tells me that the value in the variable is incorrect.
    I've tried several syntaxes, including "-10" or "10-" to revaluate the ratios at 90% of their original values, but without otaining any success.
    Has somebody an idea ?
    Regards,
    Mickael

    Hi Michael,
    we noticed the same and we created a simple FOX formula for this. This works fine then
    (One should use values like 0,5 I guess to devaluate which is not user friendly)
    D
    For example:
    DATA LV_REVALUATION TYPE F.
    LV_REVALUATION = VARV(Z_REVALUATION).
    = * (1 + ( LV_REVALUATION / 100)).
    (Z_REVALUATION is a variable type formula.)

  • Function that zero out negative forecast in APO DP (SCM 4.0)

    Hi,
      I tried to look for a thread about the above function but I have no luck.  Would you kindly share a light if you have come accross negative number being generated automatically? (no macro is set up for negating forecast)
    This is the note that I would found from SAP help, but there is no actual direction to get it.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/d5e13ffb118f15e10000000a155106/frameset.htm
    Thanks
    Anita

    it depends on the forecast strategy used....negative forecasts are automatically made zero by most strategies
    some forecast strategy will generate negative forecasts ( am not sure which of them do).. but in that case you can use a macro to make it zero
    I did not understand if you wanted Negative forecast or you want to zero out the negative ones
    pl check link... http://help.sap.com/saphelp_nw04/helpdata/en/a4/42e03fc2269615e10000000a155106/content.htm
    SCM 5.0 has Planning area parameters that will enable you to not allow non-sero numbers in KF

  • Function Based Indexes - negative performance

    Has anyone run across any cases where they have had issues with Function Based Indexes negatively impacting performance??
    We are trying to use function based indexes in 9i (NLS_SORT=GENERIC_BASELETTER) and 10g (NLS_SORT=BINARY_CI) for case insensitivity.
    We thought this was a decent solution until recently when testing with larger datasets. Any info is appreciated.
    Thanks,

    Just to clarify rreynoldson's first point:
    All indexes will negatively impact inserts. Indexes, including function-based indexes, may or may not improve update and delete performance depending on whether the overhead of maintaining the index outweighs the benefit of being able to use the index to find the row(s) to update relatively quickly.
    For user564260:
    Assuming those parameters are set, make sure that you've gathered statistics on the function based index. If that doesn't resolve the problem, can you post a small test case that demonstrates the problem where you
    - Create the table
    - Create the indexes
    - Populate it with data
    - Run the query that you'd expect to use the FBI
    - Post the explain plan
    that would help us immensely.
    Justin

  • Extract negative values with @JExport function in Essbase version 9.0.1

    I'm currently trying to extract values using the @JExport but I noticed that negative values weren't extracted.
    Is there something to do to make it work?
    Thanks for your help.
    BR,
    Andy

    Thanks for confirming things Vivek.Wilfred.
    FYI, for future others with this problem: After a couple hours of playing around it was fixed, though I'm not sure what finally did it. Be sure that you try Google's "Sign Out of All Accounts", and not just the regular sign out option.

  • MONTHS_BETWEEN function returning wrong negative values

    Hello all,
    The following is the query I am puzzling over:
    select to_char(sysdate,'dd-MON-yyyy') AS TODAY, TO_CHAR(HYPOTHETICAL_DATE, 'dd-MON-yyyy') AS HYPOTHETICAL_DATE,
    months_between(sysdate,HYPOTHETICAL_DATE) AS DIFF_IN_MONTHS from TableX
    My result is:
    TODAY HYPOTHETICAL_DATE DIFF_IN_MONTHS
    21-MAR-2012     10-JUL-2020     -99,63109505675029868578255675029868578256
    I am puzzled since in this case since the 2nd date is 8 years down the line my difference should be -8 and a fraction. So why am I getting -99?
    Furthermore I would like to ignore the fractional part so the result I want for the above data is -8.
    Please help.
    Thanks
    S. BASU

    The name of the function is MONTHS_BETWEEN and not YEARS_BETWEEN. So the result is correct!
    Perhaps you are looking for something like:
    select trunc(months_between(sysdate,to_date('10.07.2020'))/12) from dual;or
    select round(months_between(sysdate,to_date('10.07.2020'))/12) from dual;TRUNC cuts the fraction and ROUND rounds it. For example it would be a difference for -8.7.
    Edited by: hm on 21.03.2012 02:42

  • Hello, I know there is a lot to say about Internet Explorer in a negative way, but there is one function from IE that I like very much. In IE all my bookmarks are permanently visible in the left sidebar while I am surfing on the intenet.

    I have hundreds of bookmarks to be stored in about 20 groups of Bookmarks. How can I have my imported groups of Bookmarks permanentlly visible in Firefox? I hope someone can give me an answer

    You can use CTRL+B to show your bookmarks on Firefox.

  • MONTHS_BETWEEN function returns 'wrong' negative values ???

    Hi,
    I can't figure out why these values are results.
    SQL> select months_between(to_date('02-FEB-13','DD-MON-RR'), to_date('28-FEB-13','DD-MON-RR')) from dual;
    MONTHS_BETWEEN(TO_DATE('02-FEB-13','DD-MON-RR'),TO_DATE('28-FEB-13','DD-MON-RR')
                                                                         -.83870968
    SQL> select months_between(to_date('02-FEB-13','DD-MON-RR'), to_date('01-APR-13','DD-MON-RR')) from dual;
    MONTHS_BETWEEN(TO_DATE('02-FEB-13','DD-MON-RR'),TO_DATE('01-APR-13','DD-MON-RR')
                                                                         -1.9677419
    SQL> select months_between(to_date('02-FEB-13','DD-MON-RR'), to_date('02-APR-13','DD-MON-RR')) from dual;
    MONTHS_BETWEEN(TO_DATE('02-FEB-13','DD-MON-RR'),TO_DATE('02-APR-13','DD-MON-RR')
                                                                                 -2

    Hi,
    it could be worth also to mention a specific behavior of MONTHS_BETWEEN.
    In case the 2 dates are on the same day on different month, the time portion is not considered and result is always an integer.
    When the 2 dates are on different days then also the time portion in considered and the result is changing.
    Here is an example:
    alter session set nls_date_format='DD-MON-YYYY HH24:MI:SS';
    select to_date('01-MAY-2013','dd-MON-yyyy') start_dt
         , to_date('31-MAY-2013','dd-MON-yyyy')+(level-1)*6/24 end_dt
         , months_between(to_date('01-MAY-2013','dd-MON-yyyy'), to_date('31-MAY-2013','dd-MON-yyyy')+(level-1)*6/24) diff
      from dual
    connect by level <= 10
    START_DT               END_DT                       DIFF
    01-MAY-2013 00:00:00   31-MAY-2013 00:00:00   -0.9677419
    01-MAY-2013 00:00:00   31-MAY-2013 06:00:00   -0.9758065
    01-MAY-2013 00:00:00   31-MAY-2013 12:00:00   -0.9838710
    01-MAY-2013 00:00:00   31-MAY-2013 18:00:00   -0.9919355
    01-MAY-2013 00:00:00   01-JUN-2013 00:00:00           -1
    01-MAY-2013 00:00:00   01-JUN-2013 06:00:00           -1
    01-MAY-2013 00:00:00   01-JUN-2013 12:00:00           -1
    01-MAY-2013 00:00:00   01-JUN-2013 18:00:00           -1
    01-MAY-2013 00:00:00   02-JUN-2013 00:00:00   -1.0322581
    01-MAY-2013 00:00:00   02-JUN-2013 06:00:00   -1.0403226
    Regards.
    Alberto

  • How can I deal with negative marking in a quiz marking scheme?

    I wonder if anyone can help me with a problem I have in developing the 'code' for a marking scheme for an exam in Captivate 8. I would be very grateful for pointers towards a viable solution. At the moment I am just thrashing around.
    My background is in C++ and I think part of my problem is in trying to find analogues of functions I would use in that environment. My experience with Captivate is limited to developing fairly simple training courses but now I need to put an existing exam on line, maintaining its relatively complicated marking scheme, which is as follows:
    The paper is multiple choice, each question having four statements, one (or at the most two) of which is true. A completely correct answer gets 4 marks so where there are two correct statements each gets 2 marks. So far, so easy.
    The difficulty arises from an element of negative marking. If 3 or more statements are selected, the score is 0 marks. If there is a single correct statement and it and an incorrect statement are selected, the score is 2 marks. If there are 2 correct statements and one of them is selected, the score is 2 marks. If an incorrect statement is selected as well, the score is 1 mark.
    I had assumed I could use conditional logic and user variables on a slide-by-slide basis to provide a score value and then assign it to the appropriate system quiz variable, but it seems I can't assign values to variables in a quiz slide. That would have been too easy...
    So, can anybody advise me on an approach that keeps the advantages of using the quiz framework, including the use of the Review function?
    Any help very gratefully received.

    If you use SCORM 1.2 for reporting, negative scores will be converted to zero, because it doesn't allow negative score.
    If you want to keep to Review functionality, you need to stay with the default question slides. There are some tweaking possibilities but changing the score is not one of them.
    Question Question Slides in Captivate - Captivate blog
    Question Question Slides - Part 2 - Captivate blog
    I think the only possible way is to use JS, but then you'll not be able to keep the functionality of the Question slides, you are in custom question slides. Plenty of examples of custom questions can be found on my blog as well.

  • MediaSource - functionality & playli

    Dear all
    i have a Zen Touch 40Gb, a large music library and a number of gripes. i apologise in advance for the length of my post but i'd be really grateful for any advice you can send my way. i've searched through a large number of similar threads on this forum but, frankly, i've not seen a lot of answers (one poor chap was told his was a duplicate question but there was no link to the acti've thread so he's probably still searching for the truth!):-
    . Saving/Exporting playlists - a lot of people seem to have this problem/complaint: is there really no way of saving a playlist from MediaSource to a .m3u file? (please note, in response to something i read in another post, i've tried synchronising playlists to my Zen Touch and using the separate explorer software but there is no usable playlist file there either that any of my other software will recognise). i'm trying hard not to sound negati've but this seems like a really basic functionality, particularly given that you can IMPORT .m3u playlists into MediaSource - why not export 'em too?!
    2. Sorting playlists - has anyone found a workaround in order to sort playlists created in MediaSource? whether i'm creating a compilation, building a mix, creating a sub-group, avoiding duplication of tracks in an existing list or just trying to vary the play order of my tunes this would be a REALLY useful feature and it seems so simple to include in the software. you can sort in the main music library so why not in the playlist view?! again, i haven't been able to sort playlists within the Zen Touch explorer software either. is there any plan to introduce this functionality? are there any practical workarounds?
    3. Reporting playlists - it would also be useful to generate a report of track listings either from playlists or selected songs. the report format could be something no more sexy than a tab-separated text file. these can be pasted into a word or excel document and sorted/searched/printed/saved to our hearts' content. in the absence of functions # & #2 above, this would at least give me some options when it comes to saving and sorting my inspired playlists. alternati'vely, if functions # & #2 were available in MediaSource i could probably li've without #3. but with all of them absent i can barely describe MediaSource as an "organiser" because it simply doesn't enable you to do any real organising (if you're as dull as me, obviously!)
    4. File conversion - i've a number of .wma files in my library - mainly 92kb
    ps.
    whenever i try to convert them to mp3 (i have my reasons!!) the process fails. the error message says the "format conversion is not supported". some (but not all) of these files are downloads from Napster but I purchased the tracks and they should therefore be free to burn to cd or to sync with a portable device so i don't think they are protected. is there any reason why i can't achieve this file conversion?
    5. Navigation - again a dull and seemingly minor gripe but therein lies my irritation: the "backward" and "forward" buttons in MediaSource do not function like similar buttons in any other file explorer software i have used (whether designed for music files or otherwise). you can't navigate between recently viewed artist or album folders (of which i, and most other users, have many hundreds) - only between the main library and the playlists. it's not the end of the world but this seems like such a basic feature in any other navigation software that i just don't see why MediaSource doesn't work the same way.
    Ideally, i would like to use MediaSource to organise all my music but at the very least if there was an EXPORT function i would be able to transfer the extensi've data & playlists i've already generated into other more sophisticated software. i could then tweak them for use in other programs and also re-import amended playlists back into MediaSource. there is plenty of good quality free software out there and some excellent specialist software available for a very minimal outlay that can organise your mp3s and playlists in ways MediaSource users can only dream of (assuming, of course, that you dream about computer programs. i don't, i promise!) if i could export my playlists i could probably ignore MediaSource for anything other than sync-ing with my Zen Touch and use a stand-alone mp3 organiser to manage my music. i would happily settle for this but I'm surprised and disappointed that a company that is so big in the music industry leaves me in this position.
    i know i'm moaning (a lot) but these issues seem so basic to me that i am really frustrated with the lack of features in MediaSource. i chose my Zen Touch deliberately over and above any other mp3 player on the market (including the i-pod) for technical reasons and i stand by that decision. however, as another user has commented in this forum, performance doesn't count for very much if there is no functionality or support.
    please, if there is anyone out there with some tips or workarounds to my problems, or someone from Creative who can tell me when software updates will be released to cover these issues, or someone who can point me to an existing thread which received an answer, i may even be willing to part with cash (<EM>may</EM>...!)
    Many thanks
    pip

    pipparts wrote:
    ?2. Sorting playlists - has anyone found a workaround in order to sort playlists created in MediaSource? whether i'm creating a compilation, building a mix, creating a sub-group, avoiding duplication of tracks?in an existing list or just trying to vary the play order of my tunes this would be a REALLY useful feature and it seems so simple to include in the software. you can sort in the main music library so why not in the playlist view?!? again, i haven't been able to sort playlists within the Zen Touch explorer software either. is there any plan to introduce this functionality? are there any practical workarounds?
    Creative MediaSource 5.0.38 allows you to sort tracks in playlists. Creative MediaSource 5 and its various plugins are now officially available for download at your respecti've product download sites. The main Creative MediaSource 5 Player/Organizer:
    Creative MediaSource Player/Organizer 5.0.38 (22 Dec 2006)
    For mass storage series ZEN/Muvo players:
    Creative Music Player (Mass Storage Series) Plugin 5.0.07 for Creative MediaSource 5 Player/Organizer (22 Dec 2006)
    For PlaysForSure ZEN players:
    Creative PlaysForSure Devices Plugin 5.00.36 for Creative MediaSource 5 Player/Organizer (22 Dec 2006)
    For non-PlaysForSure NOMAD/ZEN players:
    Creative ZEN and NOMAD Jukebox Plugin 5.00.22 for Creative MediaSource 5 Player/Organizer (27 Dec 2006)
    For CD Burning function:
    Creative CD Burner Plugin 5.0.3 for Creative MediaSource 5 Player/Organizer (22 Dec 2006)
    For selected DTS supported Sound Blaster cards:
    Creative DTS Neo:6 Plugin 5.00.05 for Creative MediaSource 5 Player/Organizer (22 Dec 2006)

  • Move negative sign (minus) to left side of value in gui_download

    Hi,
    While downloading data using gui_download I want to bring the negative sign to the left side of the value. Is this possible?
    Regrads,
    Madhu

    Hi,
    Use FM
    CALL FUNCTION  'CLOI_PUT_SIGN_IN_FRONT'
    Regards.
    Eshwar.

Maybe you are looking for

  • N95 8GB unable to reset using shortcuts or codes

    Every time I switch my N95 on I get a message saying new time zone found, when the alarm goes off in the morning the handset switches itself off and then switches back on again, the speech quality if very poor and there are also a couple of other min

  • Aliases are being deleted

    I've noticed that when I put folder aliases in my finder window (left column) that they are being deleted. Most notably they are ones that start with the same letters, but, in fact, are different locations and do have distinct names. For example, a f

  • Graphical Display approval preview

    Dear Gurus, How to debug graphical dispaly of approval preview? Thanks and Regards, Abraham

  • Cisco AIR Location 2700 GRUB Password

    Hello, Can you tell me please how to désactivate the grub password on Cisco AIR-LOC-2700 after configuring it. Thank you in advance. Nizar Houichi

  • Adjustment layer not applying grain to white solid?

    Hey all, I have a few layers underneath a composition that I want to add grain to, including a white layer which really needs the grain. For some reason, no grain showing up on the white layer through the adjustment layer. Here is a screenshot, does