Please i really need help bad with installation

I bought dreamweaver 8 long time ago worked on my other
computer wit xp, i bought another computer vista in it and
installed dreamweaver all it does is I see the logo and then it
turns off the program, so i tried and downloaded a trial version of
CS4, of course i uninstalled dreamweaver 8, cleaned my registry and
hidden folders and installed it and the same deal i only see the
logo and it shuts off the program, so i downloaded the CS3 same
deal. could anybody plllleeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeease help
me out. whats going on?
i hate frontpage.

What version of Vista are you using?
Also with CS4, if it is not working that is something that
would be better suited for Adobe support since they do support CS4
and Vista.

Similar Messages

  • I need help badly with my ibook and palm pilot

    Good day. I recently fixed my ibook and my palm to sync with each other. I configured my palm to sync with entourage. I then realized that it would be much better that if I sync my palm pilot with the palm desktop. Gow do I now reverse this? How do i cancel entourage to sync with my pal pilot. please advise. need help badly on this. thanks... i just like to feep my files organized and i find it difficult using entourage...my palm pilot is a palm TX...

    I also have a Palm handheld. I use iCal and Address Book more than Entourage. This is what I did:
    At first, I tried to adapt to Palm Desktop. I didn't like it, so I looked for the *iSync Conduit*. I found it and installed it. Then, I ignored the Palm desktop software (except the HotSync utility) and have used iSync with iCal and Address Book since.
    I know that doesn't answer the question about switching from Entourage, but Desktop isn't that great either. iSync is what I recommend.
    -NA

  • Please I really need help with this video problem.

    Hi!
    Please I need help with this app I am trying to make for an Android cellphone and I've been struggling with this for a couple of months.
    I have a main flash file (video player.fla) that will load external swf files. This is the main screen.When I click the Sets Anteriores button I want to open another swf file called sets.swf.The app is freezing when I click Sets Anteriores button
    Here is the code for this fla file.
    import flash.events.MouseEvent;
    preloaderBar.visible = false;
    var loader:Loader = new Loader();
    btHome.enabled = false;
    var filme : String = "";
    carregaFilme("home.swf");
    function carregaFilme(filme : String ) :void
      var reqMovie:URLRequest = new URLRequest(filme);
      loader.load(reqMovie);
      loader.contentLoaderInfo.addEventListener(Event.OPEN,comeco);
      loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,progresso);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE,completo);
      palco.addChild(loader); 
    function comeco(event:Event):void
              preloaderBar.visible = true;
              preloaderBar.barra.scaleX = 0;
    function progresso(e:ProgressEvent):void
              var perc:Number = e.bytesLoaded / e.bytesTotal;
              preloaderBar.percent.text = Math.ceil(perc*100).toString();
              preloaderBar.barra.scaleX =  perc;
    function completo(e:Event):void
              preloaderBar.percent.text = '';
              preloaderBar.visible = false;
    btHome.addEventListener(MouseEvent.MOUSE_DOWN,onHomeDown);
    btHome.addEventListener(MouseEvent.MOUSE_UP,onHomeUp);
    btSets.addEventListener(MouseEvent.MOUSE_DOWN,onSetsDown);
    btSets.addEventListener(MouseEvent.MOUSE_UP,onSetsUp);
    btVivo.addEventListener(MouseEvent.MOUSE_DOWN,onVivoDown);
    btVivo.addEventListener(MouseEvent.MOUSE_UP,onVivoUp);
    btHome.addEventListener(MouseEvent.CLICK,onHomeClick);
    btSets.addEventListener(MouseEvent.CLICK,onSetsClick);
    function onSetsClick(Event : MouseEvent) : void
              if (filme != "sets.swf")
                          filme = "sets.swf";
                          carregaFilme("sets.swf");
    function onHomeClick(Event : MouseEvent) : void
              if (filme != "home.swf")
                          filme = "home.swf";
                          carregaFilme("home.swf");
    function onHomeDown(Event : MouseEvent) : void
              btHome.y += 1;
    function onHomeUp(Event : MouseEvent) : void
              btHome.y -= 1;
    function onSetsDown(Event : MouseEvent) : void
              btSets.y += 1;
    function onSetsUp(Event : MouseEvent) : void
              btSets.y -= 1;
    function onVivoDown(Event : MouseEvent) : void
              btVivo.y += 1;
    function onVivoUp(Event : MouseEvent) : void
              btVivo.y -= 1;
    Now this is the sets.fla file:
    Here is the code for sets.fla
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    var video:Video;
    var nc:NetConnection;
    var ns:NetStream;
    var t : Timer = new Timer(1000,0);
    var meta:Object = new Object();
    this.addEventListener(Event.ADDED_TO_STAGE,init);
    function init(e:Event):void{
    video= new Video(320, 240);
    addChild(video);
    video.x = 80;
    video.y = 100;
    nc= new NetConnection();
    nc.connect(null);
    ns = new NetStream(nc);
    ns.addEventListener(NetStatusEvent.NET_STATUS, onStatusEvent);
    ns.bufferTime = 1;
    ns.client = meta;
    video.attachNetStream(ns);
    ns.play("http://www.djchambinho.com/videos/segundaquinta.flv");
    ns.pause();
    t.addEventListener(TimerEvent.TIMER,timeHandler);
    t.start();
    function onStatusEvent(stat:Object):void
              trace(stat.info.code);
    meta.onMetaData = function(meta:Object)
              trace(meta.duration);
    function timeHandler(event : TimerEvent) : void
      if (ns.bytesLoaded>0&&ns.bytesLoaded == ns.bytesTotal )
                ns.resume();
                t.removeEventListener(TimerEvent.TIMER,timeHandler);
                t.stop();
    The problem is when I test it on my computer it works but when I upload it to my phone it freezes when I click Sets Anteriores button.
    Please help me with this problem I dont know what else to do.
    thank you

    My first guess is you're simply generating an error. You'll always want to load this on your device in quick debugging over USB so you can see any errors you're generating.
    Outside that, if you plan on accessing anything inside the SWF you should be loading the SWF into the correct context. Relevant sample code:
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    context.applicationDomain = ApplicationDomain.currentDomain;
    var urlReq:URLRequest = new URLRequest("http://www.[your_domain_here].com/library.swf");
    var ldr:Loader = new Loader();
    ldr.load(urlReq, context);
    More information:
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7de0.html
    If you're doing this on iOS you'll need to stripped SWFs if you plan on using any coding (ABC) inside the files. You mentioned iOS so I won't get into that here, but just incase, here's info on stripping external SWFs:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/

  • Really need help! with macbook OS X install disc 2

    How can I uninstall Mac OS X? because i need an disc 2, which i haven't got and it's the old macbook. Is there any way that i can stop the install? or buy the disc 2? i can't click on anything until i have that disc 2.
    If any of you have the answer then please contact me.
    because i really need my macbook for school soon
    Thank you and god please help me.

    Hold the Moyse button down to eject Disc #2 while booting up, at the same time hold the Option/alt key down to have the startup manager pop up, insertt Disc #1 & wait For Disc #1 to show as a boot choice.
    That second Disc thing happens frequently, the best way around it is to do a Custom install, and eliminate enough Printer Drivers, Languages, Fonts, and Applications you don't need... then it may skip #2 altogether.
    http://support.apple.com/kb/HT1442
    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. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214

  • SOS... PLEASE, I REALLY NEED HELP... MAC IS HAVING TROUBLE BURNING...

    Hey guys,
    I am burning from IDVD, but after burning 2-3 DVDs on Dual Layer DVD's, it KICKS me out of the program. When this happens, I have to go BACK again and start the long burning process of rendering the menus, etc, etc... I don't know what's happening. Is it that the Mac has a problem? Or is this normal to render and burn an hour long DVD? So far, it has taken me the whole afternoon to burn JUST 2 DVD's. Is that normal? Also, is there a way to tell the MAC to burn a certain amount of copies, just like the Adobe Premier gives us that option? I can't seem to find that option anywhere. I have to burn 100 DVD's for Monday... I REALLY need your help.
    Thanks,
    Claudia.

    If you've already created the disk image file (projectx.img), open disk utility (go 'utilities'>'disk utility').
    If the disk image file doesn't show on the left hand side, drag the .img file there then select it. Hit the burn icon on the top left hand side of the disk utility window, then put in the dvd and choose the burn speed - you get better player compatibility and burn reliability if you burn at a slower speed - e.g 4x.
    I've got 50 to do for Monday and so I feel your pain. The projects I'm burning are about 75 mins long and doing it this way, to burn at 1X takes about 1 hour, 4X takes about 20 mins.
    Like Zak, I've no experience of DL discs so you may want to post and/or search the iDVD forum.

  • SOS... PLEASE, I REALLY NEED HELP... IDVD IS HAVING TROUBLE BURNING...

    Hey guys,
    I am burning from IDVD, but after burning 2-3 DVDs on Dual Layer DVD's, it KICKS me out of the program. When this happens, I have to go BACK again and start the long burning process of rendering the menus, etc, etc... I don't know what's happening. Is it that the Mac has a problem? Or is this normal to render and burn an hour long DVD? So far, it has taken me the whole afternoon to burn JUST 2 DVD's. Is that normal? Also, is there a way to tell the MAC to burn a certain amount of copies, just like the Adobe Premier gives us that option? I can't seem to find that option anywhere.
    I've converted the project into disk image on the desktop but once it's as disk image and I try to open it, it displays a window which has several files but when I click on them nothing happens, they don't open. I don't know what why.
    I have to burn 100 DVD's for Monday... I REALLY need your help.
    Thanks,
    Claudia.

    Claudia
    You need to a make disc image from the file menu within iDVD6 ....can you do that?
    Click Here
    From the disc image you can make as many copies as you wish and you won't have to wait long hours for encoding the entire project all over again.
    Also I need you to tell us how much available hard drive space you currently have on the main HD / startup volume. You need at least 20GB's Do you have this kind of HD space or not?
    iDVD6 will start the whole process all over again each time you quit from the app itself....but it normally offers up the option to keep making additional copies without quitting. Apparently this feature either isn't working properly for you or perhaps you missed this particular dialog box.... I don't know.
    Nevertheless, keep in mind that iDVD6 is an authoring program and wasn't really written as a burn tool. That's not one of it's stronger points. Leave the burning to DVD-R media to either apple's disc utilities or roxio toast where you can also lower the burn speed to 4x or lower.
    Hope this Helps but if not just come on back.

  • Please i really need help with my i phone 4s it wont charge unless its shut down but also...

    So my i phone 4s wont charge unless its turned off but it will charge but it wont read on my laptop usb or any one elses  so no i tunes reset , its just been a hassle i dont have icare and the back glass panel has a thin singular crack and the lock buttons broke so my dad said sprint wont fix it On top of all this my lock button is broken so i can even do a hardware reset , an since this is a hammy down phone i dont know the security code to do the manual reset from the general settings so help please i have alot of stuff to do since im still having schooling and i need it fornot only social interactions but a organizer pleaseeee help me figure out what to do?!?!

    Sadly your iPhone sounds like it's not worth repairing.. I am sorry only a replacement phone will fill the bill...

  • I need help badly with my dream phone. Help me please.

    I just bought my iPhone 4 today. As I charged it tonight it shut down. I tried to turn it on again (with the charger connected), it says "Connect to iTunes" with a picture of a USB cable and an arrow pointing to the iTunes logo. So itried to remove the charger and the phone went off again and it doesnt want to turn on without the charger connected. Please help me. Ive been dreanibg of this kind of phone since apple released its iphone 3g. and now that I have my own, this is what happened. Please help me. I'm begging all of u.

    Yes. I have read everything. Like I said sir, it does not want to turn on, it only turns on when the charger is connected. When I'm connecting it to my computer it only turns on for like 5 seconds then shuts down. so I won't be able to do any of those things that I missed if I don't get the phone to turn on. That's my biggest problem.

  • Please I really need help with this one.

    Ok I have this problem where I hook my ipod up and it works fine connects and is recognized. However, when i start trying to move music to it or transfer information using it like a jump drive it suddenly disconnects. At this point it is no longer recognized by my computer unless I restart my computer. In device manager it shows up as an unknown device and when i check the status of it, it says no device drivers installed for this device. What could be the problem here?

    http://docs.info.apple.com/article.html?artnum=93499

  • Zen MicroPhoto Problems! PLease,I Really Need Help!!

    hello everybody, i bought a zen microphoto 4GB in June and it worked perfectly until two days ago. I turned it on like i do everyday to listen to music on my way to school. i downloaded the newest version of firmware onto it'sthree days before. when i turned it on, it went into recovery mode. so i went to reboot, and it goes back into recovery mode. i tried about 3 times, then it disabled all the functions. i couldn't control anything. so i took out the battery, and left it until i came home. i come home, put in the battery, turn it on. i plug it in the computer, and the computer does not reconize that its docked and the screen goes white and then it shuts off by itself. then it just freezes, it refuses to turn on. i tell my friend?yesterday at school and he said the hard dri've crashed and now i have a brick the size of a zen microphoto. is this true, or?is something else wrong with it. please someone help if you can. Creative Zen MicroPhoto 4GBfirmware dowloaded 3 days before--ZENMicroPhoto_PCFW_6__30_04.exepurchased- June 0, 2006 with product replacement plan from best buy?Message Edited by barylakamil on -0-20062:23 PM

    If you cannot even reach recovery mode any more you will need to contact customer support. If you are in the USA you get a 3month parts and labour warranty and a year parts warrantyMessage Edited by ts on -0-20060:36 PM

  • Badly Need help badly with my storm 2 9520

    hi all,
    i bought a storm 2 9520 from ebay with a broken digitizer cable where some1 replaced the lcd screen that was cracked...
    i got a new digitizer off ebay too, and carefully striped the phone and rebuilt it replacing all the sticky stips with thin very sticky double sided tape.
    when i was finished, the screen comes on nicely and the touch seems to work, but
    its completly random... and wild...
    when i hi lite K or any other letter, it will randomly hi lite all other letters around it 2 - 4 letter at a time... i tried landscap and portrate and its the same...
    problem is, the phone has a password (kimberly) from the owner before, which i do have but i am unable to enter it to remove it, as far as i got was Ki.
    i read something about ajusting the screws help, and making sure the call button section is securely stick down... which i have been trying.
    other thing too, when i try clicking the sceen, sometime it clicks once, but most other times it sounds like 20 or so clicks...
    can some1 please help... my mobile was stolen new year, and i needed a replacement blackberry that i could afford and im completly lost without it and now using a moto v3 til i fix this...
    could it be it needs touch screen configured? is there any other way of working or doing anything with the phone if i connected it o my laptop?

    note: when i installed the digitizer to the lcd, i did wipe the lcd and digitizer with window lean to remove all the figer prints and grease.... could this have something to do with it? i did make sure it was all dry and i only used it on the glass, not the whole unit dripping...

  • BSOD 24 times in a row always the same hal.dll+6034 & ntoskrnl.exe+15c4e9 error on windows 8.1 pro, really need help badly.

    My first BSOD occurred about 10 days ago, randomly and frequently, totally I have been through 24 dumps, that's really not a happy experience, right? Any help will be appreciated! Thanks in advance.
    FIY, I uploaded as much information as I can provide for someone better help me.
    Here's my onedriver link:
    https://onedrive.live.com/?cid=D750E66988BCA5D6&id=D750E66988BCA5D6%214287
    Content all 24 minidump files plus blew:
    cupz.html
    DriverList.txt
    dxdiag.txt
    EventApp.txt
    EventSys.txt
    Hosts.txt
    MSINFO32.nfo
    RAMMon - SPD Info.html
    SystemInfo.txt
    Windowsupdate.log

    Hi,
    From your dump file, we could see the following information:
    Loading User Symbols
    Loading unloaded module list
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck 7F, {8, ffffd0006e548130, ffffd0006e563ff0, fffff8002313a323}
    *** WARNING: Unable to verify timestamp for epfw.sys
    *** ERROR: Module load completed but symbols could not be loaded for epfw.sys
    Probably caused by : epfw.sys ( epfw+2069d )
    Followup: MachineOwner
    1: kd> !analyze -v
    * Bugcheck Analysis *
    UNEXPECTED_KERNEL_MODE_TRAP (7f)
    This means a trap occurred in kernel mode, and it's a trap of a kind
    that the kernel isn't allowed to have/catch (bound trap) or that
    is always instant death (double fault). The first number in the
    bugcheck params is the number of the trap (8 = double fault, etc)
    Consult an Intel x86 family manual to learn more about what these
    traps are. Here is a *portion* of those codes:
    If kv shows a taskGate
    use .tss on the part before the colon, then kv.
    Else if kv shows a trapframe
    use .trap on that value
    Else
    .trap on the appropriate frame will show where the trap was taken
    (on x86, this will be the ebp that goes with the procedure KiTrap)
    Endif
    kb will then show the corrected stack.
    Arguments:
    Arg1: 0000000000000008, EXCEPTION_DOUBLE_FAULT
    Arg2: ffffd0006e548130
    Arg3: ffffd0006e563ff0
    Arg4: fffff8002313a323
    Debugging Details:
    BUGCHECK_STR: 0x7f_8
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: WIN8_DRIVER_FAULT
    PROCESS_NAME: System
    CURRENT_IRQL: 2
    ANALYSIS_VERSION: 6.3.9600.16384 (debuggers(dbg).130821-1623) amd64fre
    LAST_CONTROL_TRANSFER: from fffff800231d64e9 to fffff800231ca9a0
    STACK_TEXT:
    ffffd000`6e547fe8 fffff800`231d64e9 : 00000000`0000007f 00000000`00000008 ffffd000`6e548130 ffffd000`6e563ff0 : nt!KeBugCheckEx
    ffffd000`6e547ff0 fffff800`231d45f4 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiBugCheckDispatch+0x69
    ffffd000`6e548130 fffff800`2313a323 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiDoubleFaultAbort+0xb4
    ffffd000`6e563ff0 fffff800`23139710 : 80000000`004c0121 00000000`00000000 00000000`00001010 80000000`004c0121 : nt!MiAllocatePoolPages+0x87
    ffffd000`6e564040 fffff800`2331e4d3 : 00000000`00000000 80000000`004c0121 80000000`00000000 80000000`004c0121 : nt!ExpAllocateBigPool+0xd0
    ffffd000`6e564130 fffff800`06e2069d : 80000000`004c0121 ffffd000`6e5648c0 80000000`004c0121 80000000`004c0121 : nt!ExAllocatePoolWithTag+0xa83
    ffffd000`6e564200 80000000`004c0121 : ffffd000`6e5648c0 80000000`004c0121 80000000`004c0121 00000000`00000000 : epfw+0x2069d
    ffffd000`6e564208 ffffd000`6e5648c0 : 80000000`004c0121 80000000`004c0121 00000000`00000000 fffff800`06e1ea92 : 0x80000000`004c0121
    ffffd000`6e564210 80000000`004c0121 : 80000000`004c0121 00000000`00000000 fffff800`06e1ea92 ffffd000`6e564350 : 0xffffd000`6e5648c0
    ffffd000`6e564218 80000000`004c0121 : 00000000`00000000 fffff800`06e1ea92 ffffd000`6e564350 00000000`00001000 : 0x80000000`004c0121
    ffffd000`6e564220 00000000`00000000 : fffff800`06e1ea92 ffffd000`6e564350 00000000`00001000 80000000`004c0121 : 0x80000000`004c0121
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    epfw+2069d
    fffff800`06e2069d ?? ???
    SYMBOL_STACK_INDEX: 6
    SYMBOL_NAME: epfw+2069d
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: epfw
    IMAGE_NAME: epfw.sys
    DEBUG_FLR_IMAGE_TIMESTAMP: 520cebd6
    FAILURE_BUCKET_ID: 0x7f_8_epfw+2069d
    BUCKET_ID: 0x7f_8_epfw+2069d
    ANALYSIS_SOURCE: KM
    FAILURE_ID_HASH_STRING: km:0x7f_8_epfw+2069d
    FAILURE_ID_HASH: {3a545e72-b251-678f-639a-8254aaae9c2a}
    Followup: MachineOwner
    These were Related to epfw.sys ESET Smart Security driver. I would like to suggest you remove it and use the built-in defender.
    Karen Hu
    TechNet Community Support

  • I Need Help Badly With my Creative

    I have recently bought a creative nomad jukebox zen 20gb. It worked fine 2 days ago and now it wont even switch on and when i plug the adapter in the screen comes up with
    CREATIVE copyright (c) 2002 and stil will not switch on. Can anyone please help.

    Try accessing the Cleanup option in recovery mode.
    Jason

  • I really need help connect with my ipod and my itune??

    guys when i pluge my ipot to my computer and open itune it appear on the itune with my computer screen "iTune has detected an ipod that appear to be courrupted. you may need to restore this ipod before it can be used with itunes. you may also try disconnecting and reconnecting the ipod.
    i been try those step again again and again still would be same problem. is that mean my ipod is broken? and does the warrarty covered it to fix my ipod for free?

    i can't found any ASC in my area and can i took the
    ipod back to the stroe where i brought it? also that
    i live in californa LA
    If you take the iPod back to where you bought it they will probably send it to a ASC but if you want to do it yourself here are some ASC's in your area
    http://www.apple.com/buy/locator/index.html?q=91803&submit.x=0&submit.y=0
    Q. What if I lost my receipt or proof of purchase?
    A. You should check with your reseller, who may be
    able to provide a duplicate receipt for you. If you
    purchased directly from Apple, go to:
    www.apple.com/support/store for a duplicate receipt.
    is that true?
    I'm not sure about individual store policy but if you bought it from Apple then there will be no error in when it was purchased because you bought it directly from them.
    Power Mac G4 (Digital Audio)   Mac OS X (10.4.7)   1 GB Ram, Firewire/USB PCI card, Extra 2x 60GB HD

  • PLEASE, I REALLY NEED HELP!

    Last week, my ipod starting doing something really wierd. It toggles back & forth from the apple logo, then it will suddenly cut off. It will do this about 5 more times, then it will say the battery is very low and to plug it in. After I plug it in, it will still do the same thing. I can't access anything. Not even a screen to restore the ipod back to factory settings. What else should I do?
    HELP!

    See if these help.
    iPod shows only an Apple logo and doesn't start up.
    Only the Apple logo appears when turned on.
    If none of the above help, then it may be an issue that requires service.
    You can arrange online service here.
    Service request.
    Or if an Apple store is near you, take it there and have them check your iPod.
    You can make an appointment by using this link.
    Genius Bar Appointments.

Maybe you are looking for

  • Media Encoder CS6 does not always "Use Previews"

    I've attempted several transcodes using pre-rendered timelines in Premiere Pro. Media encoder does not always use the preview files despite the appropriate box being checked. Any suggestions what I can look for? I don't see that I am doing anything d

  • Solaris 10, 6/06 documentation

    Found a what's new at: http://docs.sun.com/app/docs/doc/817-0547 but nothing else. Does anyone know if Sun is going to post new PDF's for the new version or are we stuck with the "beta" PDF's from FCS? thanks, alan All computer problems occur between

  • Designing LOV Query Problem

    Hello APEX people, I posted my problem here: Designing LOV Query Problem What I have is a sequence like this: CREATE SEQUENCE DR_SEQ_FIRST_SCHEDULE_GROUP MINVALUE 1 MAXVALUE 7 INCREMENT BY 1 START WITH 1 CACHE 6 ORDER CYCLE ; What I need would be a S

  • Message Mapping :  How to  appned the  ub occ under UB  occ: Very  urgent

    Hi  SDNers My SOurce  str  is  like  this                Traget Str Node   subnode1             1..1              Tstr1 1..1   subnode2             1..1                 TSr2   1..1      subnode3          1..ub                Tstr3 1..ub          subn

  • Lens Profile for Canon 500mm f/4?

    I seem to remember that there used to be a lens profile for the Canon 500mm f/4 lens in my older versions of Lightroom 3, but now when I use LR3.6, I see "none" listed when looking for a profile for this lens in the Develop module.  Is this a change