Button AS3 Issue

I have 2 buttons on my stage linking to two different sites.
I have each button on its own layer with its own instance name and
the code for each button on its own separate layer.
Btn1.addEventListener(MouseEvent.CLICK, loadPage);
function loadPage(event:MouseEvent):void{
var myURL:URLRequest = new URLRequest("
http://www.adobe.com/");
navigateToURL(myURL,"_blank");
Btn2.addEventListener(MouseEvent.CLICK, loadPage);
function loadPage(event:MouseEvent):void{
var myURL:URLRequest = new URLRequest("
http://www.yahoo.com/");
navigateToURL(myURL,"_blank");
The first button worked, though when I added the second, I
get this error:
1021: Duplicate function definition.

One of the approaches can be holding references to the clicked button and frame in wich the click occured. here may be bugs in the code - this is just a concept:
//handle events for buttons...
home.addEventListener(MouseEvent.CLICK, clickSection);
design.addEventListener(MouseEvent.CLICK, clickSection);
photography.addEventListener(MouseEvent.CLICK, clickSection);
about.addEventListener(MouseEvent.CLICK, clickSection);
contact.addEventListener(MouseEvent.CLICK, clickSection);
company.addEventListener(MouseEvent.CLICK, clickSection);
// currently clicked button
var currentClick:DisplayObject;
// return frame
var returnFrame:int = 0;
function clickSection (evtObj:MouseEvent) {
     //trace shows what's happening.. in the output window
     trace ("The "+evtObj.target.name+" button was clicked!")
     // go to the section clicked on...
     if (currentClick && evtObj.currentTarget == currentClick) {
          currentClick = null;
          gotoAndStop(returnFrame);
     else {
          gotoAndStop(evtObj.currentTarget.name);
          currentClick = evtObj.currentTarget;
          returnFrame = MovieClip(this).currentFrame;

Similar Messages

  • Firefox back button visual issue...

    Hey there,
    Overall, Firefox is just amazing. I registered this forum just report a bug about the Back-Button visual issue. The Back-Button in Firefox looks broken visually on start. When I open Firefox and enter any website, Back-Button looks visually broken. But later it look okay. I've taken some screen shots about that, but don't know how to attach them here. I am running windows 8 on my computers. Don't know about other OS users, if they are experiencing the same issue or not.

    Adapter Description Intel(R) Q45/Q43 Express Chipset (Microsoft Corporation - WDDM 1.1)
    Adapter Drivers igdumd32 igd10umd32
    Adapter RAM Unknown
    Device ID 0x2e12
    DirectWrite Enabled false (6.3.9600.17111)
    Driver Date 3-11-2013
    Driver Version 8.15.10.2702
    GPU #2 Active false
    GPU Accelerated Windows 0/1 Basic (OMTC)
    Vendor ID 0x8086
    WebGL Renderer Google Inc. -- ANGLE (Intel(R) Q45/Q43 Express Chipset (Microsoft Corporation - WDDM 1.1) Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote true
    AzureCanvasBackend skia
    AzureContentBackend cairo
    AzureFallbackCanvasBackend cairo
    AzureSkiaAccelerated 0

  • Program at print button in 'Issue output to'

    Hello Experts,
    There is an existing output X which triggers only when output BA00 is printed from the print button in the pop up of sales order when you go to 'Isssue output to'
    When trying to process the sales order output BA00 throu standard program SD70AV1A, the output X is not triggered.
    Now, we have a requirement to process BA00 from another interface where we are using SD70AV1A, but output X is not triggering in this case.
    So, please suggest a way through which we can use the program at print button in this requirement.
    Thanks in advance.
    Paritosh

    Hello Max,
    Thanks for your reply
    BA00 is printed by program, no issues there. But, there is a requirement on other output X(medium 5) , that it should process immediately along with BA00, which is not happening with this program SD70AV1A.
    Paritosh

  • Position of buttons as3

    I need some help with Positions of buttons in AS3. I made a IRC client with AS3, but when a user join a channel, there will be a button added, but if there is already a button and the user join new channel on IRC, there will be added new button also, this for every channel that a user does join, but It should to be positioned after the last button (side by side). Same for if a user join more channels. How can i do this on best way with x and y positions? Ofcourse, it must check first if there is already button on the position if a user did join channel.
    This is my code for now:
    const PADDING:uint = 10;
    const NUM_BUTTONS:uint = 10;
    onChannelButton();
    function onChannelButton():void {
        var test:Sprite = new Sprite();
        var btn:Button;
        //NUM_BUTTONS or btn.length ?
        for (var i:int = 0; i < NUM_BUTTONS; i++)
                btn = new Button();
                btn.name = "btn";
                btn.width = 90;
                btn.x = (btn.width + PADDING) * i;
                test.addChild(btn);
        addChild(test);
    Example how to do: http://oi42.tinypic.com/j5cl0i.jpg
    Thanks!

    var btn_parent:Spirte=new Sprite();
    btn_parent.name="btn_parent";
    MovieClip(root).addChild(btn_parent);
    // whenever you add a btn:
    const COLNUM:int = 25;
    const PADDING:uint = 10;
    const NUM_BUTTONS:uint = 10;
    onChannelButton();
    function onChannelButton():void {
        var btn:Button;
        //NUM_BUTTONS or btn.length ?
        for (var i:int = 0; i < NUM_BUTTONS; i++)
                btn = new Button();
                btn.name = "btn";
                btn.width = 90;
    positionF(btn);
               btn_parent.addChild(btn);
    function positionF(btn:Button):void{
    btn.x = (btn_parent.numChildren%COLNUM)*(btn.width+PADDING));
    btn.y = Math.floor(btn_parent.numChildren/COLNUM)*(btn.height+PADDING);

  • AS3 issue embedding AS2 .swf files

    Hi there,
    I'm attempting to create a menu navigation system with Flash/AS3 that opens up a series of older AS2 activities.
    At the moment I'm testing it with two buttons/two activities.
    The problem I'm having is that when I'm testing the navigation, the first button clicked will open its respective activity correctly, which can then be shut down using the original activity's exit button, and return to the two buttons on my AS3 menu. However, if I then select the other activity from the same screen, it won't load. I'm able to click the original activity again, and have it open, but not the new one.
    If I test the main flash navigation file again and click the other button first (that wasn't working), the other activity opens fine, and can be closed down. However the first button now won't open the activity. So both the buttons work (if they're the first ones clicked), but from then on, only the first button clicked works.
    In the debug panel, it looks as if the AS2 .swf files that I'm attempting to embed are themselves embedding a wrapper.swf file (with navigation buttons) as well as another sub set of shared .swf files for their own operation. Might it possible that these sub swf files aren't being unloaded properly when I switch between the main AS2 movies from my menu system?
    Is there a way to clear/unload everything that's been loaded (even resources loaded by the external files themselves - like a hard reset) between button presses?
    I have no access to the original AS2 code as this was done by another team years back.
    I'd be really grateful for any help or advice that anyone might be able to give.
    Thanks

    Just looking at the debugging panel, this is what I see when I try and run the program:
    Attempting to launch and connect to Player using URL /*****/*****/****.swf
    [SWF] Volumes:Data:Documents:*****:****:****:*****.swf - 876582 bytes after decompression
    [SWF] Volumes:Data:Documents:*****:****:****:*****:F11_pr_qu_3:quiz.swf - 176016 bytes after decompression
    LocateFolders.enginesFolder(file:///*****/****/****/*****/F11_pr_qu_3/quiz.swf)
    [SWF] Volumes:Data:Documents:*****:****:****:*****:F11_pr_qu_3:wrapper.swf - 481279 bytes after decompression
    ### Latest wrapper ###
    etc etc...
    Then follows a whole set of loading instructions and trace instructions put in the as2 swf which show XML files being loaded and the program launching. These must have been put in place by the previous programmer.
    When I click the exit button on the 'embedded' swf, the debugging panel shows things shutting down:
    ActivityToolbar clickQuit()
    Wrapper quitActivity()
    EndGame clear(false)
    Now when I click the second button, I should see a similar set of launching greetings etc. instead it bottles out at the following:
    [SWF] Volumes:Data:Documents:*****:****:****:*****:F11_wb_fc_1:flashcards.swf - 94720 bytes after decompression
    LocateFolders.enginesFolder(file:///file:///*****/****/****/*****/F11_wb_fc_1/flashcards.s wf)
    And there it stops.
    If I restarted the program and pressed the second button first, it would show the flashcards.swf activity loading correctly, but would then refuse to load the first activity when I clicked on the button.

  • Button image issues

    Im having issues with button images in captivate 4, after designing buttons in photoshop then saving them as PNG's and putting them in the buttons folder. When i apply these buttons to a slide the button images are missing parts and look bad.. any suggestions?, please help.

    Hi there
    I believe Captivate uses the color value of the pixel in position 0, 0 to determine the transparent color for the button image. You need to ensure you are using a unique color for that location. What you posted seems to infer that you have a color being rendered as transparent and the color is used in other places in the image.
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • How can I resolve the push button dot issue in oracle forms 10g..?

    Hi All,
    We have migrated to forms6i to forms10g, in 6i all the push button labels are displaying properly, but in 10g forms its giving dots like this … after displaying some characters. I guess its width problem but how come its changing in 10g alone.
    Kindly give me any workaround to resolve this issue
    Thanks in Advance
    Thangaraj.

    Hi All,
    We have migrated the forms 6i to forms 10g R2.We are facing push button issue like,the lable is displayed in the button is reduced.Assume the button's label name is Cancel.Actully it is displaying like Can.....Due to Java used in forming the buttons.We have forms count nearly 300.We have diffent size buttons.
    We have solution like
    1.Manually
    2.PC Creation
    3.Java Class and Jar Files
    4.JDAPI
    5.basejini.htm
    The method five,we have tried.But there is no changes after this changes also.
    Can you guys please let us know the correct menthod(with steps 1 by 1) to do this in quickly.
    2.There are look and feel 2 types oracle and generic,rather than this do we have any other type.We are looking for any cusrtomized settings in config files.
    Thanks in Advance.
    Regards,
    GR

  • Button Alignment Issue

    I have some custom buttons added to the sales order screen.  When the font in B1 is set to "10", the buttons show up and are aligned just fine.  When the user changes the font to anything other than "10", the buttons become mis-aligned and moved on the form even though I am setting the "Left" property to be the same for all three of them.
    Also, on some computers, when the user minimizes the sales order form and then restores the form, all items  (even system items) don't resize correctly and the sales order matrix shrinks to about 1/2 the size it was before, leaving a huge empty space on the form.  When the add-on is closed, the issue goes away.  I am not changing any properties on the system items or the form (width, height etc).  I'm just adding three custom buttons and filtering for certain events on the form.
    Any ideas?
    Thanks!
    Message was edited by: Curtis Fry

    Curtis,
    Did you follow the Standards and Guidelines UI documentation when creating your controls and forms?  I am assuming that you did, but there are specifics with respect to the creation of buttons on forms?  With other add-ons that you have created, have you experienced this issue?
    This is a note from the PartnerEdge Portal that you may want to check out to see if this helps ...
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=0000655552
    Let me know,
    Eddy

  • Facebook like button widget issue!

    I'm working on the website right now. The person wants the Like button on the website, I have yet to deal with it. But I worked on putting it in through the Adobe Widget browser. I like the application because it's click and drag. Yet the issue i'm having is that i want to put the like button in on area where it doesn't over flow in that area. I'm attacthing a screen shot to show the issue.
    I'm trying to put the like button on the side bar and I wanted to put it above the events so it's at the top of the page. I'm working it in the sense where it's just the like button and it shows how many people like it. As you can see it makes this big space in the area where it should just be at a space that is smaller then a one enter button push. I tried to fix it through the code but i cant find anything to remove that ammount of the box.

    This is exactly what is happening for me right now.  Have you figured this issue out yet?  Any help would be appriciated.  Thanks!

  • HELP: Preloader and Button AS3

    Hi guys!
    I used to work on AS2 to make my animations, buttons and portfolios, but now I needed to use AS3 to make some forms interact with some PHP script.
    TextInputs and Buttons on COMPONENTS are working and interacting normally with PHP. My PreLoader is working great too. But what should the easiest is not working: MY SIMPLE BUTTONS! It used to be so easy in AS1 and 2, but now on AS3 it's not working. I am putting all my action and codes in a ACTIONS FRAME in the top of my animation, but it is not working!
    I have my Preloader on my frame 1 working, calling my animation on frame 2. The code is here (it's working):
    stop();
    addEventListener(Event.ENTER_FRAME, loading);
    function loading(event:Event) {
    var bytestotal = stage.loaderInfo.bytesTotal;
    var bytesloaded = stage.loaderInfo.bytesLoaded;
    var sclbar = Math.round(bytesloaded*100/bytestotal);
    custom_animation.gotoAndPlay(sclbar);
    if (bytesloaded >= bytestotal) {
    removeEventListener(Event.ENTER_FRAME, loading);
    removeChild(custom_animation);
    gotoAndPlay(2);
    Then I placed my buttons actions on the frame 2.
    If I use the action:
    home_btn.addEventListener(MouseEvent.CLICK,clickHome);
    function clickHome(evt:MouseEvent):void {
    gotoAndPlay(2);}
    release_btn.addEventListener(MouseEvent.CLICK,clickRelease);
    function clickRelease(evt:MouseEvent):void {
    gotoAndPlay(2690);}
    My movie pauses and no action is added to my buttons.
    I get this error: TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at index_Scene1_fla::MainTimeline/frame2()
    If I use the action:
    addEventListener("addedToStage", oas);
    function oas(ev){
    init();
    home_btn.addEventListener(MouseEvent.CLICK,clickHome);
    function clickHome(evt:MouseEvent):void {
    gotoAndPlay(2);}
    release_btn.addEventListener(MouseEvent.CLICK,clickRelease);
    function clickRelease(evt:MouseEvent):void {
    gotoAndPlay(2690);}
    The movie plays complete, but I get no actions in buttons and a error in my components textinput and button (they look like shaking).
    I get this error: 1180: Call to a possibly undefined method init.
    I tried to use the import flash.display.SimpleButton too, but it doesn't work too.
    Anyone could help me????
    Thanks,
    Pedro

    If you can provide a clear explanation of where the buttons are and where the code for them is located that might help lead to a solution.  From what you have described already it is not clear where the code is and where the buttons are.  You should not have to use an init function if you are doing so to wait for the buttons to be loaded... they are already loaded when you get wherever they are.
    For the 1009 error, it is indicative of the object targeted by your code does not exist in theframe where that code is.  SO if you have your code on frame 1 and your buttons are in frame 2, that would account for that error, as well as a few other possible scenarios.

  • Button execution issue

    I've been having issues with buttons that are tied to my emerson drive talking modbus ethernet. The issue being that when I press a momentary pushbutton, I get a double bump like I hit the pushbutton twice. It'll hold true every once in a while too. In the event log, it reads as followed
    cwbutton1 adjusted to on by the control
    cwbutton1 adjusted to off by the control
    cwbutton1 adjusted to on at the source
    cwbutton1 adjusted to off at the source
    I'm running lookout 6.0.2. It only happens when I'm connected to a device over modbus ethernet. I'm guessing that I missed something in the setup somewhere.  Any help would be appreciated
    Haj
    Message Edited by Haj on 04-23-2008 08:53 AM
    Attachments:
    lookout test.zip ‏10 KB

    This problem has a long history... I have to say Lookout is designed in this way, although it looks like unreasonable.
    You click the button, it turns on "by the control", a write command is being sent. After you release it, it turns off "by the control". But after the ON command is sent, Lookout will read the current value on this register before it sends out OFF command, because Lookout wants to get the ON status if there are any display or control on panel. The button is connected to the register by the remote source, so it will reflect the change on status. So, Lookout reads the ON status back and turns ON the button again "at the source". Then Lookout writes OFF command to device. On the next poll, Lookout reads the OFF status and turn OFF button "at the source".
    I know that it doesn't look good in Lookout, we will consider if we need to improve it.
    Ryan Shi
    National Instruments

  • Button rollover issue

    Download zipped
    FLA
    If anyone is bored, I'm having a problem with a rollover
    issue in the above movie that I have been creating. It is an
    interactive, navigable map of city parks. Rollover of the
    individual dots marking park locations on the map works fine. But I
    am also trying to list all the parks' names on the right, where you
    see the "Bergen Park" button. This is so that the user can either
    mouse over the map locations and see the park name
    OR
    find where the park is located by mousing over the park name
    on the right. I want this "Bergen Park" button to cause a section
    of the movie clip that has an instance name of "bergen" to play,
    making the Bergen Park dot on the map enlarge when the "Bergen
    Park" button is moused over. I thought that this actionscript would
    do it:
    on (rollOver) {
    _root.bergen.gotoAndPlay("11");
    on (rollout) {
    _root.bergen.gotoAndPlay("19");
    But it is not working when the movie loads. Only if I mouse
    over the Bergen Golf Course dot on the map does the "Bergen Park"
    button start acting like a button. Otherwise it just gives me a
    text cursor when I mouse over the "Bergen Park" button. Any help
    would be much appreciated!
    Kevin

    had a look at your fla and didn't quite work out exactly what
    was "working fine" for you. a few comments on your code:
    1. don't you need a stop action on frame 92 ? otherwise it
    continues looping.
    2. flash is case sensitive - be careful of this - on
    (rollout) might work even though the correct syntax is on(rollOut),
    but this is because the on handler is ancient syntax (pre dot
    syntax). most flash syntax requires you to have the syntax
    case-correct.
    3. Why is each of your dot clips inside a group? They were
    very difficult to find. I can't think of a reason for them to be
    inside groups, so I'd recommend selecting all of them and breaking
    the group apart so that you can see where they are!
    4. The way you've structured your flash file has redundancy
    and is going to be a nightmare to make changes to. Imagine if you
    or your client decides that they want the dot to pulse twice when
    you rollover it. You're going to have to make that small change 42
    times. Or even imagine if a URL changes for one of the buttons.
    There is a unique line of action-script to open that URL on every
    key-frame within the dot movie-clip. so changing a URL would
    require making that change on 6 keyframes, let alone the park name
    reference to it that you are building on the right. The minimum I
    would suggest you do is to have only one movieclip which contains
    the animation of the dot pulsing, and then for you to put the
    button event handlers on those movieclips, rather than inside those
    movieclips. There are even better ways you could go about this, (by
    storing the urls and titles in arrays, or even xml, and then
    placing the event handlers on the movieclips via their instance
    names on one frame of action-script), but this would at least
    remove your redundancy.
    5. but i digress... to return to your question - the text
    cursor appears not when you point to the bergen park button but
    when you point to the area between {2, 0} and {502, 20}, because
    this is where you created a dynamic text field:
    _root.ToolTip.createTextField("TipText", 2, 2, 0, 500, 20);
    _root.ToolTip.TipText.type = "dynamic";
    add this line after the above code:
    _root.ToolTip.TipText.selectable=false;
    and your problem should be fixed...

  • Button Request issue

    Hello ,
    On a report page, I've created a button item SEARCH, which has "Button Request" set to value : 'SEARCH'.
    However, after hiting this button, v('REQUEST') returns null, not 'SEARCH' (as I expected)
    Anybody knows why ?
    Thank you,

    Hello,
    >>
    Javascript problem in ApEx 3.0 [Solved]
    >>
    Woooo there lets not get ahead of ourselves, the Pocket PC issue is very specific, if something like this was consistently not setting the REQUEST as designed we would have noticed very quickly as everybodies applications quietly explode.
    Try putting this &REQUEST. in your REQUEST attribute of your branch otherwise your REQUEST gets cleared.
    See it works like a charm http://apex.oracle.com/pls/otn/f?p=11933:128
    If anything this might be a valid request for enhancement to make the default to carry the REQUEST value along, is a tough call because it could adversely effect older applications.
    Carl
    Message was edited by:
    Carl Backstrom

  • TS4080 apple thunderbolt display image on display intermittently goes dark, does not wake from sleep after clicking mouse or keyboard, but there is "bonk" sound after clicking mouse or pressing keys. Rebooting by pressing the power button resolves issue.

    My apple thunderbolt display (which I purchased 1.5 years ago; OS 10.7.5 Mac Mini) intermittently goes dark, does not wake from sleep after clicking mouse or keyboard, but there is "bonk" sound after clicking mouse or pressing keys, so am thinking it is a hardware problem with the display. Rebooting by pressing the power button turns the screen back on, but the same phenomenon has occurred several times. Could this be a software issue, or do I need to have my display repaired? Your feedback would be appreciated.

    Hi ED, tough to tell, but it does sound like it's waking with the bonk, just not displaying.
    Long shot but...
    I wonder if it's a variation of this, of which I've seen many different symptoms...
    Resolution
    Move the mouse or trackpad cursor over the center area of the login window so you can see the user icons. Click on the icon of the user that you would like to login as, type in the user's password, and press Return.
    If the login window is configured to show only the name and password fields, type in the user's name and password into the fields, and press Return (even if you cannot see the rest of the login window).
    Additional Information
    This issue will not occur if the display is not sleeping when the account is logged out. Use the steps below to confirm that the account is not configured to log out automatically while the display is sleeping:
        1.    Open System Preferences > Security & Privacy > General.  Click the padlock to unlock the preference pane and enter your admin password. Click the Advanced button at the bottom, then see if the option "Log out after N minutes of inactivity" (where N is the number of minutes) is enabled.
        2.    Open System Preferences > Energy Saver and configure Display Sleep to occur after the account is logged out, by dragging the slider to a number of minutes that is greater than N was set to in the previous step.
    Important: If automatic log out is not needed, disable "Log out after Nminutes of inactivity" in System Preferences > Security & Privacy > General. This will also prevent the issue.
    http://support.apple.com/kb/TS4135?viewlocale=en_US

  • Expose / Spaces function(s) fail to work with mouse buttons, ongoing issue

    Please see this now very old thread:
    http://discussions.apple.com/thread.jspa?threadID=2131775&start=0&start=0
    This is an issue as old as snow leopard itself. The problem varies in that it can effect spaces or expose. When using a non-apple mouse, one or more of these functions will fail to perform with a mouse button indefinitely as soon as a restart has taken place.
    In my particular case, whatever mouse button I assign to "show desktop" fails to function entirely after a restart has taken place. This remains true even if I re-apply the setting in system preferences, such as changing it to another button, or changing it to nothing, and back. I can still use keyboard shortcuts and screen corners to activate "show desktop". I can continue to use other expose and spaces features with the properly assigned mouse keys. Only one feature, in my case "show desktop", fails to function with -any- mouse button after a restart.
    To make this even more clear, this behavior has remained the same and consistent for the 14 months I've had snow leopard. It has even continued to exist after I recently removed and recreated my HFS+ partition, and re-installed OS 10.6, entirely from scratch. It did not exist whatsoever for the year and a month I had OS 10.5 leopard, before upgrading to 10.6. This behavior was +literally introduced upon installing snow leopard+. I have a razer death adder 1500 DPI mouse.
    Several others share the exact same symptoms, with only the affected expose/spaces function and mouse model differing. A sibling of mine experienced the +exact same issue+ with an entirely different mac model and the exact same model of mouse.
    As a relatively unimportant aside, certain "tricks" seem to fix the issue, but only temporarily (one involves moving the location of spaces and/or expose out of the utilities folder, another involves deleting "com.apple.symbolichotkeys.plist" from ~/Library/Preferences). Unfortunately, these tricks:
    A. always only fix the problem temporarily, the issue returns
    B. do not address whatever is causing the issue in the first place
    This is really frustrating quite a few people, as the linked-to thread can attest to. Along with the obvious, this frustration is magnified because:
    A. This issue +does not appear+ to involve terribly challenging technical difficulties (i.e., merely mouse button behaviors).
    B. This issue did not seem to exist before OS 10.6.
    C. This issue, with the previous two points above in mind, has remained unaddressed for 14-plus months - the entire duration of Mac OS 10.6 snow leopard. I myself originally figured a reasonable time for this issue to be addressed & resolved would be a matter of +a few days+, weeks at most, and at the very least, thought I'd be using these beloved features again +well over a year ago+.
    To put it frankly, what the %$#&? Why hasn't this been addressed yet?
    Message was edited by: -DrD-
    Message was edited by: -DrD-

    Anyone even care? I submitted this as feedback to apple, and haven't got a reply through that route, either.

Maybe you are looking for

  • Printer drivers constantly becoming corrupt

    We have a large mixture of HP and Ricoh printers in our environment.  They are all linked through a Server 2007 Enterprise edition print server.  For the HP printers, some of them do use the specific print driver and other use a universal print drive

  • Address Cleansing

    Hi , I have an requirement to cleanse Customer and Vendor addresses. I get the data in  .txt file format from legacy system. I need to create a realtime job in DQXI which transforms the .txt file  into XML  and does all tha validations in DQXI ,Clean

  • USING YAMAHA 01X AS A LOGIC CONTROLLER....NEED HELP

    I purchased a new Yamaha 01x on clearance ($219) for use as a software controller for Logic Studio (8). I find the Yamaha 01x manual very cumbersome and difficult to understand and am having trouble setting this up. I have a few questions if someone

  • TS1389 i am trying to buy movies. they say i must deauthorize other computers that are no longer alive.

    i no longer use at least two of the other computers i once authorized but i cannot get them to work to establish the task of deauthorizing.. i have been purchasing songs recently and they have been downloaded onto the one and only computer that i hav

  • How to carry forward leaves to the next year with out writing PCR

    Hi All, Could you please tell me the process steps for quota carry forward from previous year to the next year with out writing a PCR Regards Sita