Sound in Flash buttons

Hey everyone, I was developing a website in Dreamweaver and
used the 'Insert/Media/Flash Button' option to create my flash
buttons for navigation. After deciding which design would fit my
web site best, I realized when you click the button there is a
sound with it. I really prefer not to have this sound play
everytime a user clicks on the button. I was just curious if anyone
knew how I could eliminate this sound from playing? - I tried
exporting the button into Flash, then realized I really have no
clue how to use flash
Thank you in advance for your time
- Sean

Basically you can't change the Flash button that come with
DW. If you want
something different you have to create your own.
This is not that difficult to do. I wrote a tutorial on how
to do this at
http://www.trigeminal.com/samples/sessionlcidsample.asp
Paul Whitham
Certified Dreamweaver MX2004 Professional
Adobe Community Expert - Dreamweaver
Valleybiz Internet Design
www.valleybiz.net
"elduquex26x" <[email protected]> wrote in
message
news:ee9k18$372$[email protected]..
> Hey everyone, I was developing a website in Dreamweaver
and used the
> 'Insert/Media/Flash Button' option to create my flash
buttons for
> navigation.
> After deciding which design would fit my web site best,
I realized when
> you
> click the button there is a sound with it. I really
prefer not to have
> this
> sound play everytime a user clicks on the button. I was
just curious if
> anyone
> knew how I could eliminate this sound from playing? - I
tried exporting
> the
> button into Flash, then realized I really have no clue
how to use flash
>
Thank you in advance for your time
> - Sean
>

Similar Messages

  • Play sound behavior in CS4 fails to play sound on click of a flash button

    For my college coursework I have created several flash buttons to use as track preview images. The button works fine however trying to get the track to play seems an impossibility!
    I've inserted the SWF flash button into the place I want it in my table and added the "playsound" behavior to it to try and play the preview - no luck.
    The sounds are currently 128kbps MP3s.
    Any light into this matter would be much apreciated as i really want this to work

    You need to code your MP3 Player in Flash with Action Script.
    Check the Flash forums and specify which Action Script version (1, 2, 3) you're using.
    http://forums.adobe.com/community/flash
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Flash button to turn off sound

    Can anyone help please! I want to add sound to a webpage but
    offer the user a chance to turn it off. I thought I could create a
    Flash button and asign a behaviour to turn the sound on and off but
    can't make it work..Any advice very welcome - thanks ....
    Heather

    Sure this can be done and is known as a 'toggle' button. What
    you need to do is make a MC with two 'states', 'off' and 'on' with
    labels just like that. then you will control the MC button from the
    on handlers, and use a boolean variable to determine which 'state'
    the button is in, and then execute the opposite state.
    A Sound Object is a sound class instance that you can use to
    control the playback of a sound from that is attached from the
    Library or load a streaming sound from your sever (in this code I
    chose the latter as an example), rather than placing the sound on
    the timeline, saving file space and download time (I'm assuming
    this may be BG music). Using a Sound object also gives you more
    control over the sound.
    So with you MC set up, a sound in the same directory as the
    fla/swf files, then add this kind of code to the main timeline
    where the button (MC) resides, I'll call the button instance
    'mute_btn':

  • How do i actionscript my flash button to play the sound while being transfered to another url?

    Hi!
    As the title says:
    How do i get my flash button to play my sound when i click on
    it while being transfered to another url?
    I did get it to work, but only when i set the script to
    "_BLANK". When i clicked the button then it played the sound and
    opened the url in a new window. I want it to be in the same window
    and still play the whole sound.
    Now i get just 1 or 2 sec then when im transfered, it stops
    playing the sound.
    I hope this explains it..... if any typo....its because im
    Swedish =)
    Thanks in advance!

    If you are jumping to another URL using the same window you
    cannot have a sound start on the press of a button and that sound
    to continue on.
    Reason
    You are removing all trace of the sound and the swf that
    contains that sound file.
    Work arounds
    1.Take a look at "frames". This way you are keeping the
    container page and opening another page inside of that page.
    2. Div's. again you are importing a page into a particular
    area yet keeping the swf, with the sound playing, in the parent
    frame.

  • On/off sound by a button in flex

    hello everybody, i want to make a website by flex.in that have sound effect. i want when i load page have sound and if i don't want to listen i can click button.the sound will stop play and else. But i don't know how to make on/off sound by a button click
    i done:
    in actionscript file                Sound_playExample1.as: i write code
    package myComponents {
        import flash.display.Graphics;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.events.ProgressEvent;
        import flash.media.Sound;
        import flash.media.SoundChannel;
        import flash.net.URLRequest;
        public class Sound_playExample1 extends Sprite {
                    private var snd:Sound = new Sound();
            private var channel:SoundChannel = new SoundChannel();
            public function Sound_playExample1() {           
                var req:URLRequest = new URLRequest("myComponents/soundall.mp3");
                snd.load(req);              
                    channel = snd.play(0,6);   
    // ActionScript file
    in my Main.mxml:i write
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:MyComp="myComponents.*"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Script>
            <![CDATA[
                protected function button1_clickHandler(event:MouseEvent):void
                    // TODO Auto-generated method stub
            ]]>
        </fx:Script>
        <fx:Declarations>
             <MyComp:Sound_playExample1/>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <s:Button x="177" y="71" label="Button" click="button1_clickHandler(event)"/>
    </s:Application>
    can u help me please what i have to do. if you know you can Additional for this code.thanks

    Hi,
    This is complete solution of your issue.Let me know if u find and issue.
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo"
                  creationComplete="application1_creationCompleteHandler(event)"
                  >
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                private function onClick():void
                    createSound();
                    channel = sound.play();
                private function offClick():void
                    if(channel != null)
                        channel.stop();
                private var sound:Sound;
                private var channel:SoundChannel = new SoundChannel();
                protected function application1_creationCompleteHandler(event:FlexEvent):void
                    isPlaying = false;
                    onOff();
                private function createSound() : void
                    var req:URLRequest = new URLRequest("assets/audio1.mp3");
                    if(channel != null)
                        channel.stop();
                    if(sound != null)
                        sound = null;
                    sound = new Sound();
                    sound.load(req);
                [Bindable]
                private var isPlaying : Boolean;
                protected function onOff():void
                    if(isPlaying == false)
                        onClick();
                        isPlaying = true;
                        return;
                    else
                        offClick();
                        isPlaying = false;
            ]]>
        </fx:Script>
        <s:HGroup>
            <s:Button label="{isPlaying == false? 'ON' : 'OFF'}" click="onOff()"/>
        </s:HGroup>
    </s:Application>
    with Regards,
    Shardul Singh Bartwal

  • On/off sound in a button in flex4

    hello everybody, i want to make a website by flex.in that have sound  effect. i want when i load page have sound and if i don't want to listen  i can click button.the sound will stop play and else. But i don't know  how to make on/off sound by a button click
    i done:
    in actionscript file                Sound_playExample1.as: i write code
    package myComponents {
        import flash.display.Graphics;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.events.ProgressEvent;
        import flash.media.Sound;
        import flash.media.SoundChannel;
        import flash.net.URLRequest;
        public class Sound_playExample1 extends Sprite {
                    private var snd:Sound = new Sound();
            private var channel:SoundChannel = new SoundChannel();
            public function Sound_playExample1() {           
                var req:URLRequest = new URLRequest("myComponents/soundall.mp3");
                snd.load(req);              
                    channel = snd.play(0,6);   
    // ActionScript file
    in my Main.mxml:i write
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:MyComp="myComponents.*"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Script>
            <![CDATA[
                protected function button1_clickHandler(event:MouseEvent):void
                    // TODO Auto-generated method stub
            ]]>
        </fx:Script>
        <fx:Declarations>
             <MyComp:Sound_playExample1/>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <s:Button x="177" y="71" label="Button" click="button1_clickHandler(event)"/>
    </s:Application>
    can u help me please what i have to do. if you know you can
    Additional for this code.thanks

    // below code sinppet should go into on button click event handle method.
    if
    (pausePosition==0 ){ if(channel!=null){pausePosition = channel.position;
    channel.stop();
    sound.setStyle("icon",soundOffClass);  // mute
    }else{ 
    if(channel!=null){channel.stop();
    channel = snd.play(pausePosition);
    sound.setStyle("icon",soundOnClass); // un mute , this should be default as
    pausePosition=0;

  • Flash buttons work in FireFox but not IE

    Please can someone please take a look and see if they can
    figure it out cos i can't!
    roundshaw (dot) co (dot) uk
    The increase and decrease flash buttons at the top of the
    page works ok in FireFox but not in Internet Explorer.
    Can anyone see what i have missed that stops it working in
    IE?
    thanks in advance for your help.
    Jason

    Hello again,
    Yep, sounds like you've got the general idea.
    hries22 wrote:
    I'm going to start from scratch and give it another go...would you reccomend converting every button to a symbol? Then give the symbols  a mouseover, click, and mouseout?
    I'd take all the elements that make up the button, and convert that into a symbol. Then you can go to labels with your code without worrying about the main timeline. Put all your code on the elements themselves, and not on the symbol instance.
    hries22 wrote:
    Also - and this minor - but is there a way to get a button's mouseover area to recognize transparency? For instance - I'll use a .png with transparency for a button...let's say the T-shirt. I want the mouseover to activate only when the mouse is over the t-shirt, and not over the transparent area around the t-shirt...any thoughts?
    By default, the hit area of a div in HTML is its bounding box. Right off the top of my head, I'm not sure there's a way to change it...maybe someone else can chip in?
    EDIT: here's an old-school way...could be a lot of work: http://www.svennerberg.com/2008/09/imagemap-rollover/
    hth,
    Joe

  • Crackling/substandard sound in flash videos (YouTube etc) regardless of video quality setting.

    Hi all,
    I hope you can help! Apologies if this is in the wrong forum, I'm struggling to find the best place to put this.
    1. a summary of your issue
    Crackling/substandard sound in flash videos (YouTube etc) regardless of video quality setting.
    2. the type of computer you use—Mac or PC?
    Desktop PC.
    Windows 7 Ultimate 64-bit, all updates installed.
    3. steps you've already taken to troubleshoot
    The problem occurs after installing Adobe Flash Player 15 Plugin to any browser (I mainly use FireFox). It's listed as Adobe Flash Player 15 ActiveX when I installed it for Internet Explorer.
    Before installing it, I can hear the videos fine but I am limited to a maximum of 720p quality on YouTube.
    I removed my sound and graphics drivers, after restart Windows 7 decides it will install them again but as the generic/universal ones. No change.
    I've heard that because I have the Windows Aero theme activated, I need to disable hardware acceleration - tried this in various ways:
    a) Generic PnP monitor Troubleshoot tab - Change Settings button is greyed out (whether or not I have the real/generic/universal graphics drivers installed). Can't find a way through nVidia control panel to do this either.
    b) Disabled hardware acceleration in FireFox - no change.
    c) Found on your forum here that I can go to a page which will check my Flash version, in theory I could right-click it, hit Settings and disable hardware acceleration there - no "Settings" option in right-click menu. Seems the page has changed.
    I can't seem to find a way to interface with Flash directly to disable hardware accelerattion - if this is indeed the solution.
    Regardless of Windows Aero theme, I've got it on basic theme now and still the same problem.
    I recently reformatted and re-installed my PC, it was working fine before I did this (maybe I had an old Flash release installed?).
    I'm at my wit's end... please help!

    Sorry, it's all sorted now. After re-installing the sound drivers, decided to tinker with the settings one by one. I had my Creative sound card in Game Mode, thus it was assuming 2.1 speakers aka headphones. Put it in Entertainment Mode and it recognised all the 5.1 speakers for flash videos. Doh!

  • Sometimes no sound in flash videos after boot?

    Sometimes after I boot up the machine, I get no sound in flash videos. First I didn't know why it was happening, but as I read a few articles here on forum, I found out it was because of my USB webcam (logitech) - alsa was messing something up and didn't know how to handle sound drivers well (so they say). So one of the suggestions I found was to force the (in my case) snd_hda_intel module load before snd_usb_audio module during the boot process. I thought it worked, but after a while the same problem appeared again. If I just unplug the webcam from my computer, sound works perfectly on each boot, but I don't want to get down and insart the cam everytime I need it... Anyone have any suggestions what I should try to fix this? If I need to provide more information - please tell, and I'll provide it, just say which and how.
    thanks

    Oh God, this again.
    Alright you're a newbie, but there is a SEARCH button. Read these, and then post something useful:
    http://bbs.archlinux.org/viewtopic.php?id=91908
    http://bbs.archlinux.org/viewtopic.php?id=89445
    http://bbs.archlinux.org/viewtopic.php?id=62266

  • How to attach sound to any button?which will continue that sound.

    Hi,
    Am working on Flash cs5.Can anyone tell me how to attach sound to any button?which will play after click on button.this sound should play continue till 2-3 scenes ahead.Am working on project which has 3 button with diffrent sound.and the sound button contains some scene which has volume seter.I mean,if user want to hear that sound in slow,medium or high pitch.the code should set as per this.Its in as 2.
    This site is like "karaoke".just the sound is classical music.It will continue on software and user will sing a song.
    Can anyone help me?At working on this from last 2 months.and its hard for me to get perfect answer.

    Add your sound clip to the library and give it a Linkage ID of "mySoundClip"
    Assume your button is in frame 1.
    GIve your button the instance name of "mySoundBtn". And put this code on frame 1 (timeline).
    stop();
    mySoundBtn.onRelease = function () {
              mySoundC = new Sound(this);
              mySoundC.attachSound("mySoundClip");
              mySoundC.start(0, 10);  //10 represents the number of loops
              gotoAndPlay(2);
    than put this code on the timeline frame where you need the sounsd to stop.
    stopAllSounds();
    Also If you want to be able to play the sound from your local disk without attaching it to the swf, use .loadSound("the url", true);

  • Flash button with dynamic text

    I'm trying to create a flash button so that it can toggle
    between "Sound On" and "Sound Off" but I feel like I'm doing
    something wrong and it errors out on me.
    I have a button on stage as, and in my up/over/down/hit in
    different colors I have a dynamic text field identified as
    sound_txt.
    Here's the script I have so far for my frame:
    stop();
    mutebtn.addEventListener(MouseEvent.CLICK,muteDo);
    function muteDo(event:MouseEvent) {
    if (mutebtn.sound_txt.text == "Sound Off") {
    mutebtn.sound_txt.text = "Sound On";
    } else {
    mutebtn.sound_txt.text = "Sound Off";
    and this is the error message I am getting:
    TypeError: Error #1010: A term is undefined and has no
    properties.
    at buttontst_fla::MainTimeline/muteDo()
    TypeError: Error #1010: A term is undefined and has no
    properties.
    at buttontst_fla::MainTimeline/muteDo()
    Can someboy please advise as to how I can get this to
    work?

    I tried bringing the textfield out of the button but while it
    worked when I pressed the button portion that is not under the
    text, it was the part of the text that got in the way from doing
    anything. I wonder where I can find an existing example that works
    the way I want it too so I can at least follow that example. I
    think I tried making the dynamic text a movie clip but was still
    getting similar errors.
    Edit: I at least got it to work by converting the button into
    a movie clip although I had also wanted it so that I could also
    change the foreground color of the dynamic text upon rollover,
    etc.

  • Flash button bar integration

    Hi there,
    I'm using flash MX2004 to create a navigation bar for a
    project in Director 8.5. I have used the getURL command in Flash to
    transfer information to Director. The buttons are names button1,
    button2 etc. I have put the flash component in Director and tested
    that it is recieving variable button names successfully.
    I want the button bar to change the director movie depending
    on what button is pressed. I am able to have the buttons jump to
    marker but not change movie.
    I'm also trying to implement a roll-over information feature
    ie. when the user rolls the mouse over a Flash button from
    Director, a text box in Director displays information, eg. When the
    user rolls over the "home" button, the information box reads "This
    button takes you to the first page".
    I'm pretty new to Director and randomly scouring the Lingo
    help doesn't seem to be helping me :)
    If anyone has any tips or solutions for my problems it would
    be much appreciated.
    Thanks in advance,
    GL

    It sounds like you want to have a number of different results
    from these
    flash button events. It also sounds like you have a number of
    buttons in
    the flash sprite.
    As duckets said, you can use the getURL() actionscript method
    to send
    information to Director, either to a behavior attached to the
    flash
    sprite or to a movie script.
    Director can interpret a mouse event on the Flash sprite, but
    it can't
    tell which object inside the flash sprite has been effected.
    In other
    words Director knows that the cursor rolled over the sprite,
    just not
    which clip or button was specifically rolled over.
    You will need to set up a strategy for working with these
    flash buttons.
    You will need to decide how much information to send to
    Director and
    when to send that information.
    Actionscript has rollover and rollout events as well as
    mouseDown and
    mouseUp events. So one way to deal with this is to use the
    individual
    rollover and rollout events to send information about the
    text display.
    Then use the mouseup event for navigation control.
    One way to simplify the work on the Flash end is to name each
    button
    instance. Then on the rollover, rollout and mouseup events,
    send the
    name of the button instance to Director. You can then use a
    simple case
    statement to parse out the button's instance name and use
    that name to
    tell Director what to do.
    In flash, name your buttons, it could be as simple as "one",
    "two", etc.
    The write a series of functions for those buttons. Maybe
    something like
    this:
    -- create an array to hold the names of all of the buttons...
    var buttonArray:Array = new Array(one,two,three,four);
    -- create a set of functions for these buttons...
    for (i in buttonArray) {
    buttonArray
    .onRollOver = sendRollOver;
    buttonArray.onRollOut = sendRollOut;
    buttonArray
    .onMouseUp = sendMouseUp;
    -- for the rollover event, send a string that contains a key
    word and
    the button name...
    function sendRollOver() {
    var stringToSend:String = "roll$"+ parseButtonName(this);
    getURL(stringToSend);
    -- do similar for the mouseUp event...
    function sendMouseUp() {
    var stringToSend:String = "up$"+ parseButtonName(this);
    getURL(stringToSend);
    -- for the rollout event just send a simple string...
    function sendRollOut() {
    getURL("rollout");
    -- this function will strip out the simple button instance
    name from its
    full path...
    function parseButtonName(button) {
    var buttonName:String = string(button);
    var nameParts:Array = buttonName.split(".");
    var shortName = nameParts[nameParts.length -1];
    return shortName;
    Now you have a very simple flash movie that doesn't need to
    be edited
    every time something changes in the Director movie.
    in Director make a behavior that will sit on the Flash
    sprite:
    property thisSprite
    on beginSprite me
    thisSprite = me.spriteNum
    end
    on getURL me,data
    if data = "rollout" then
    member("text display member").text = ""
    else
    parseOut(data)
    end if
    end
    on parseOut(thisString)
    oldDelim = the itemDelimiter
    the itemDelimiter = "$"
    if thisString.item[1] = "roll" then
    case (thisString.item[2]) of
    "one": member("text display member").text =
    "first button string"
    "two": member("text display member").text =
    "second button string"
    -- continue as needed
    end case
    if thisString.item[1] = "up" then
    case (thisString.item[2]) of
    -- similar to above
    end case
    end if
    the itemDelimiter = oldDelim
    end
    Rob
    Rob Dillon
    Adobe Community Expert
    http://www.ddg-designs.com
    412-243-9119
    http://www.macromedia.com/software/trial/

  • My Flash Button

    Hi,
    I made a flash button with a simple rollover animation
    (&sound) and I pasted a swf. in both flash buttons and flash
    buttons preview in Flash Objects in the Dreamweaver application.
    But I can't see it when I go insert- flash button in DW. Now, my
    swf file says SWF file whereas the others say SWF movie, is this
    the problem? I'm exporting as movie, how else would I go about?
    Would be so grateful for help.
    Thank you.
    *Jenny*

    If you want to use Flash for navigation, consider this -
    1. Some people don't have Flash installed - what do they do?
    2. Search engines don't parse Flash links - your site will
    not be spidered
    3. Screen assistive devices don't parse Flash links - what
    will those users
    do?
    4. DW cannot maintain links within a Flash movie, so if you
    move or rename
    a linked file, your navigation will break - what will you do?
    It's usually a very bad idea for these reasons, just so
    you'll know....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "flyingpiggy" <[email protected]> wrote in
    message
    news:fq3v7j$25m$[email protected]..
    > Hi,
    > I made a flash button with a simple rollover animation
    (&sound) and I
    > pasted a
    > swf. in both flash buttons and flash buttons preview in
    Flash Objects in
    > the
    > Dreamweaver application. But I can't see it when I go
    insert- flash button
    > in
    > DW. Now, my swf file says SWF file whereas the others
    say SWF movie, is
    > this
    > the problem? I'm exporting as movie, how else would I go
    about?
    > Would be so grateful for help.
    > Thank you.
    > *Jenny*
    >

  • Problem with Flash Buttons Help me

    Sir
    i design some Flash buttons but it is save as .swf extension
    if i save as jpg or gif then animation not working as well as
    effects.
    sir
    how can i call the flash buttons in java plz guide me
    JButton mybutton=new JButton(how can i pass swf extension button);

    kglad
    what I did was place the code with the trace evt into the action script under the label on the timeline I have for album1. With AS3 I guess that's the new way of doing it.
    I then saved the file and output it for preview in flash as well as html, and I got no response on pressing the button apart from the normal animation and sound I have associated with my buttons. I also looked in the output window and no information came up, which in response to Ned's help, means my buttons are not connecting.
    Damn, I have tried everything and retraced my steps from scratch, but I am missing something.
    Nonetheless I also opened up dreamweaver cs4, and made a test HTML like you mentioned yesterday, and I inserted my flash file(banner) onto the webpage. Went to preview it, through dreamweaver cs4, but everything else but my buttons work. I have graphics, sound and animation but no damn links work.
    Thanks for your help
    Regards
    Charlie

  • Sound on/off button

    I am creating an elearning movie with many scenes. for each a
    scene an external sound clip loads. i would like to create a sound
    on/off button. I can create the button and turn the sound off. But
    the problem i have is that it only turns it off for that particular
    scene. So when the user goes to the next scene. the sound will come
    back on because it loads an external sound clip. Is there any way
    that the user can switch the sound on/off and it effects the all
    the scenes?
    Thanks

    Don't use scenes. Ever. Big no no. Scenes are what was left
    over from Flash 4 before Movie Clips were invented. Code from one
    scene cannot communicate with code in another, and there are many
    more problems. Divide your main timeline into sections with frame
    labels, and use that to separate parts of your application.

Maybe you are looking for

  • Picking the value of PBEG and PEND incase of multiple entries 2002 on a day

    Hi Experts, Our client's business requirement is to have provision handling multiple entries multiple entries of same subtype of IT 2002 on same day with different Time entries.For example one IT 2002 Styp 1 has entry 10 am to 14 pm & other entry of

  • What's the right way to organize podcasts?

    I have a question about the best way to keep podcasts. What I do is download podcasts from a few sources. I put them into a playlist (so that they go one after the other and don't require me to press buttons when one ends, which is what happens if I

  • REUSE checkbox values not saved after user-command

    Hi, I have an ALV grid using REUSE_ALV_GRID_DISPLAY within i have checkbox editable field. Initially all lines in the grid are checked. (user can deselect some of the lines) After display of ALV grid user deselect some of the lines in the grid and he

  • Need to set PDF options in printer settings thro scripting

    Hi All, I need to change PDF options like "Adobe PDF options:smallest file size",in acrobat 9 pro to get copy of the opened file through printing the document thro its Adobe default printer name. through acrobat settings.I canrt find this properties

  • Transferring lightroom from mac to my laptop(Mac Pro)

    Hi, Im new to creative cloud i have recently downloaded lightroom to my mac and I would like to download it to my macpro as well so i can take it with me during work (flight attendant), would this be possible with out paying for the software again. T