Really simple jira closed instead of fixed...

What's the recourse for when a jira is closed, but not fixed...  Do I have to just create a duplicate?  I have one that's a huge pain, that simply requires a single method to be changed from private to protected...  It was closed because of lack of time...
https://bugs.adobe.com/jira/browse/SDK-28706

Bugs marked as closed with a resolution of deferred are candidates for fixing in a future release.The list gets looked at during the next release.
You need not create a duplicate, instead I would recommend getting the community to vote on the bug. The more votes the bug gets, the higher the likelihood that it will be prioritized.
Raghu Thricovil
Flex SDK Product Manager

Similar Messages

  • I can't open my imovie '9 projects on my new lap top which uses imovie 11'.. previous lap top was mac book osx 10.5.8.. new one is mac book pro 10.6.6.. any help out there! i'm pretty useless at this stuff, might be really simple???

    which uses imovie 11'.. previous lap top was mac book osx 10.5.8.. new one is mac book pro 10.6.6.. any help out there! i'm pretty useless at this stuff, might be really simple???

    Thanks for nothing, as usual, Apple.
    I had to redo the whole project from scratch on Windows Movie Maker.
    Now I know which brand to trust on my next purchase.

  • When running the workflow background process for drop shipment order, sale order line's status gets automtically closed instead of awaiting shipping

    Hello friends,
    I am created a drop shipment order with all the setups done . now i have booked the sale order as source type external. but when i run the workflow background process , after completing the report when i check the sale order line status it changes to "closed" instead of "awaiting shipping".
    Plz guide me if i have missed something in the setups.
    thanks,
    Sachin

    Hi Sachin,
    pls check the below notes from MOS
    Drop Ship Sales Order Cycle In Order Management (Doc ID 749139.1)
    Vision Demo - How To Create A Drop Ship Sales Order/Purchase Order (Doc ID 1060343.1)
    Thanks
    -Arif.

  • HT4528 the camera on my iPhone 4s color is all weird and the shutter keeps opening and closing trying to fix its self but cant.  I rest my phone and turned it off and back on again.. how do i fix this. I only had the phone maybe six months.

    The camera on my iPhon 4s is not working correctly.  It is colored all strange and the shutter keeps opening and closing trying to fix the problem but it cant.  I have already reset my phone and turned it off and on again.  How do I fix this??

    If resetting the camera app doesn't work you can try restoring your iPhone's software. The entire process takes about an hour to an hour and a half. Make sure you do a backup. Make sure you do a backup.
    Backup:
    http://support.apple.com/kb/HT1766
    Restore:
    http://support.apple.com/kb/HT1414

  • When ever i try to download my iPod recovery software, it keeps saying connection timed out. really annoyed and need help to fix it

    when ever i try to download my iPod recovery software, it keeps saying connection timed out. really annoyed and need help to fix it

    - Next try the manual install method of:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch
    If the iPod was Disabled, place the iPod in recovery mode after the firmware download is complete and then restore using the instructions in the article. Sometimes recovery mode timeouts and returns to disabled before the firmware download is complete.
    - Then try on another computer

  • Small problem really annoying! Reinstall does not fix issue!!

    Hi there Small problem really annoying! Reinstall does not fix issue!!
    The Next button when on Taskbar is showing back!
    Weird but really annoying!!
    Windows 8.1 64 AMD Quad Core Black

    Nothing no help?

  • I am sure this is really simple?

    We have just installed a new ASA5510 and I have a problem with I think Natting. Forgive me if its really simple but I have next to no experience of Cisco boxes.
    I need to allow SMTP from an outside link. Its not the Internet.
    The source IP is 172.24.52.50
    The Firewall Interface is 172.24.52.4
    The Inside Interface is 151.176.90.192
    The SMTP server is 151.176.90.220
    I need to NAT this link 'cos there are other smtp links that expect the 52.4 interface. The Packet Tracer within ASDM fails at the NAT stage and I notice that both Input and Output interfaces are both the 52.4 interface. Can anyone tell me what config I should have to NAT between the two boxes? I currently have a static one
    Thanks, Ray

    As you have only a single IP address coming to inside which you want to NAT, you should use static NAT for this. Use the "static" command to NAT the incoming IP address. Following link may help you
    http://www.cisco.com/en/US/docs/security/asa/asa72/command/reference/s8_72.html#wp1202525

  • HT4211 I just updated my iPad 2 to iOS 7 and whenever I try to type on the keyboard screen, it takes several seconds to acknowledge the key press. It really is slow.How can I fix this?

    I just updated my iPad 2 to iOS 7 and whenever I try to type on the keyboard screen, it takes several seconds to acknowledge the key press. It really is slow.How can I fix this?

    Settings>General>Reset>Reset All Settings

  • Help with a really simple SQL statement

    Hi All
    I'm relatively new to SQL and can't get my head round what I believe to be a really simple problem.
    I have a table I want to query called locations. We use locations to mean groups and regions as well as people s ofr example:
    TABLE: LOCATION
    IDENTIFIER----------NAME-----------------PART_OF
    101--------------------USER A---------------123
    123--------------------GROUP A-------------124
    etc
    What I'm trying to write is a statement that will return the 'PART_OF' as the 'NAME' rather than the ID number if the ID = 101.
    I was wondering if a nested select statement would do (select as select etc) but just can't get my head round it!
    Any ideas?
    TIA. Jake.

    Hi Jake,
    It's not clear what you are looking for. If USER A is just Part of GROUP A, a self-join will do:
    SQL> with loc as (select 101 locid, 'USER A' locname, 123 part_of from dual
                 union all
                 select 123 locid, 'GROUP A' locname, 124 part_of from dual
                 union all
                 select 124 locid, 'REGION A' locname, null part_of from dual)
    -- End of test data
    select l1.locid, l1.locname, l2.locname part_of
      from loc l1, loc l2
    where l2.locid(+) = l1.part_of
         LOCID LOCNAME  PART_OF
           101 USER A   GROUP A
           123 GROUP A  REGION A
           124 REGION A        
    3 rows selected.But if you want USER A to be part of REGION A, then you need a hierarchia lquery:
    SQL> with loc as (select 101 locid, 'USER A' locname, 123 part_of from dual
                 union all
                 select 123 locid, 'GROUP A' locname, 124 part_of from dual
                 union all
                 select 124 locid, 'REGION A' locname, null part_of from dual)
    -- End of test data
    select l1.locid, l1.locname, connect_by_root(locname) part_of
      from loc l1
    start with part_of is null
    connect by prior locid = part_of
         LOCID LOCNAME  PART_OF
           124 REGION A REGION A
           123 GROUP A  REGION A
           101 USER A   REGION A
    3 rows selected.Regards
    Peter

  • REALLY simple mpd setup script

    Because the complaints about mpd not working never stop and the reasons being always the same, i decided to make a really, REALLY simple setup script.
    All this will do is the following:
    It makes sure you run it as the user, that owns the music files.
    It asks for the path to your music files.
    It creates ~/.mpd and ~/.mpd/playlists
    It creates ~/.mpdconf with all needed config options (apart from outputs, since mpd should autodetect those)
    It copy/pastes all possible mpd options to the created config file, so the user can easily tweak it, if he likes (ugly done by including a 2nd file to be used)
    It creates the entry to /etc/hosts.allow
    It deletes itself.
    Hopefully this might be useful for those new to mpd.
    Anyway, here is the script:
    http://karif.server-speed.net/~carnager/mpdsetup.tar
    Download, extract and run with ./mpdsetup.sh
    **edit**
    updated it to disable ffmpeg per default, since it keeps crashing mpd, when playlist files are present in music directory.
    Last edited by Rasi (2011-08-01 14:16:31)

    jasonwryan wrote:
    ..and there was much rejoicing on the boards
    Nice work! All that remains is an entry in the wiki...
    https://wiki.archlinux.org/index.php/Mu … figuration
    Last edited by Rasi (2011-11-15 17:58:02)

  • Using "User Input" in "Collect Payments"  instead of "Fixed Amount"

    I've enabled "Collect Payments" on my form and I need to allow "User Input" instead of "Fixed Amount". I'm stuck... How do I do this?

    Thanks Josh. I Appreciate it.
    I did figure it out about 10 mins after I posted the question but thanks again man
    Tom Ruley
    Founder and President
    The National Remember Our Troops Campaign, Inc.
    P O Box 34093
    Baltimore, Maryland 21221
    Website:  http://www.nrotc.org
         Email:  [email protected]
        Phone:  410-687-3568
            Fax:  443-596-0730
    Please remember our troops, our veterans and our military families.  Try to do something... anything... to honor their service and sacrifice

  • All my episodes on my ipod touch are out of order, they are in alphabetical instead of episode number. Its really annoying. How do you fix it?

    After i upgraded to iOS 6 my ipod touch has been putting all my tv shows episodes in alphabetical order instead of episode number order. I have tried a few things to put it back to normal but they just wont go back into the right order. Its really annoying if i am starting to watch something and then want to go onto the next ep on my ipod and its really annoying having to go through around 20 eps to find the next one.. Its the same on my brothers ipad. Except they dont have the episode numbers on them at all. If anyone has a solution on how to fix this it would be great. I might end up going to apple and asking myself when i get my ipad to show them excatly. If its a bug in the iOS it really needs to be fixed.

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • I keep getting the message below when I open a web page...I really have no idea what I'm doing and wanted to know if someone could give me super simple instructions on how to fix it? Thanks!

    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: https://js2.wlxrs.com/_D/F$Live.SiteContent.Messenger/4.2.61210/release/Microsoft.Live.Core.LocalStorage.FF.js:39

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • Is the making of a calendar really simple?

    I have been reading this forum for a while and am beginning to think that one cannot simply drag and drop pix into a format and send off to Apple for a great calendar.
    All the talk of converting to tiff or raw, then color compatibility has me confused. Is there a place where one can REALLY learn how to do the calendars, books? I don't want to waste my money or time if the results are generally poor.
    Maybe I'm reading too much into this.
    Thanks everyone.
    Dave

    David:
    Welcome to the Apple Discussions. I've created a calendar each year for the last three years and it's really a drag and drop situation. There are some quirks that you can encounter and one is when clicking on a photo that's been inserted into a date box and you want to add a comment it ends up in the date box below the photo instead of on the photo as some would like.
    As for color, all of my photos were sRGB or some other variation other than the Adobe RGB color profile. I found that if a photo is imported into iPhoto and it has no color profile assigned iPhoto will assign the profile used for the monitor. Weird but that's what I found. The materials in the calendars are of top quality IMO.
    If you're shooting raw iPhoto creates a jpg version for viewing and editing when imported. It's that version that gets included into the pdf file that's created for uploading and printing.
    Before ordering do a print to pdf of the calendar to for proofing and check that all text appears as expected.
    Some issues have been encountered with books and the cover photos - some with the interior photos. I've had one hardcover and one softcover printed with iPhoto 7. The softcover was fine but the hardcover's dust jacket was dark. The interior photos were OK.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Making my animation stop looping (it should be really simple, right?)

    I am trying to achieve a simple thing really; I have made an animation and want it to stop looping at the end.
    A quick search of the internet reassured me that this is simply a matter of putting in a stop(); command in the script. Great!
    Errr.. no.
    Here is what I did:
    I created a new layer for my script and called it 'Actions'
    selected the final frame of the Actions layer and added a keyframe
    selected said keyframe and opened windows->Actions
    typed in stop(); and closed the window.
    Ok, so that apparently is all there is to it. Only, when I test the animation it doesn't move at all. it seems that the stop command executes right at the beginning and is constant throughout the whole timeline.
    Also, I noticed that the Actions layer has a small white circle/dot on frame 1 and on the final frame also. There is no small letter 'a' that should be there on the final frame, but I don't know why.
    So, what am I doing wrong?
    I realise that if I am struggling to do such a simple task it doesn't bode well for any further learning of actionscript. Which is a shame.
    Any help would be great, thanks.
    Andrew

    What you describe should have worked, but you might have mis-stepped as well.  Try having the Actions window opened before you select the frame and type stop(); and leave it open afterwards as well for when you test.  As soon as you enter some code in a frame it should display the lowercase "a", so your best bet is to keep trying it different ways until you see that.  As I said, the way you describe it is legit, but what you might have done in following what you say might be off.

Maybe you are looking for

  • No audio via Mini-DisplayPort. MBP 5,5

    Hello, I have the MBP 5,5 and I am trying to connect it to my TV via the Mini-DisplayPort HDMI adpater. I am getting video but not audio any idea? Any help is appreciated. Thanks,

  • Events are automatically being split

    When importing a set of photos, iphoto is splitting up my photos and placing my set into two events. To be clear, I want the chosen imported photos to go into one event, but iphoto is splitting them up. What am I doing wrong?? Also, should I reunite

  • Credit management automatic credit control use of credit group

    Hello gurus 1)In the credit management we have credit groups( which enables us to combine different sales document types for the purposes of credit management). In the simple credit check also we will assign the doc types to check the credit. Then pl

  • IDoc Scenario - how to jump in context

    Hello, I need help for my iDoc -> XML scenario. follow situation IDOC ---SEC1 VAL1=11 VAL2=aa ---SEC1 VAL1=22 VAL2=bb ---SEC1 VAL1=33 VAL2=cc ---SEC2 SEC2.1 VAL1=11 VAL2=ab SEC2.1 VAL1=22 VAL2=bc SEC2.1 VAL1=33 VAL2=cd SEC2.2 VAL1=22 VAL2=xyz I have

  • Dsc, alarm query time out

    Hello, I'm using LabVIEW 2009 SP1 with DSC-Module. Today I had trouble using the "Alarm&Event Qurey.vi" to read data from the citadel database. The Query worked well for days and delivered the data quickly. Well today it didn't, instead it delivered