Need Help In JTAPI generating a Flash Hook Signal

Hi all,
I am currently involved in a project that requires me to transfer a incoming call to another call. However, the lines that they are using is phonenet. Thus if I am to transfer a call in this environment, the application will use up 2 of the channals without freeing them even after the caller and the transfered party have terminated their connection(gotta physically busyout the trunk)
I am very new in the field of telecommunication and esp to Jtapi. I would need some help from you guys as The only way that I think that could solve my problem is to send a flash hook signal then dial the number(flash hook transfer).
Can anyone advise me on this?
Thanks..
Kenny

Hey there,
Have you tried File->Add to Library and then choose the songs off the flash drive? Another way is to head to "Edit" and then choose "Preferences". From there, head over to the "Advanced" tab and make sure there is a check mark next to "Copy files to iTunes Music folder when adding to library." See if that helps.
B-rock

Similar Messages

  • I need help with shooting in my flash game for University

    Hi there
    Ive tried to make my tank in my game shoot, all the code that is there works but when i push space to shoot which is my shooting key it does not shoot I really need help with this and I would appriciate anyone that could help
    listed below should be the correct code
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    listed below is my entire code
    import flash.display.MovieClip;
        //declare varibles to create mines
    //how much time before allowed to shoot again
    var cTime:int = 0;
    //the time it has to reach in order to be allowed to shoot (in frames)
    var cLimit:int = 12;
    //whether or not the user is allowed to shoot
    var shootAllow:Boolean = true;
    var minesInGame:uint;
    var mineMaker:Timer;
    var cursor:MovieClip;
    var index:int=0;
    var tankMine_mc:MovieClip;
    var antiTankmine_mc:MovieClip;
    var maxHP:int = 100;
    var currentHP:int = maxHP;
    var percentHP:Number = currentHP / maxHP;
    function initialiseMine():void
        minesInGame = 15;
        //create a timer fires every second
        mineMaker = new Timer(6000, minesInGame);
        //tell timer to listen for Timer event
        mineMaker.addEventListener(TimerEvent.TIMER, createMine);
        //start the timer
        mineMaker.start();
    function createMine(event:TimerEvent):void
    //var tankMine_mc:MovieClip;
    //create a new instance of tankMine
    tankMine_mc = new Mine();
    //set the x and y axis
    tankMine_mc.y = 513;
    tankMine_mc.x = 1080;
    // adds mines to stage
    addChild(tankMine_mc);
    tankMine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal(evt:Event):void{
        evt.target.x -= Math.random()*5;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseMine();
        //declare varibles to create mines
    var atmInGame:uint;
    var atmMaker:Timer;
    function initialiseAtm():void
        atmInGame = 15;
        //create a timer fires every second
        atmMaker = new Timer(8000, minesInGame);
        //tell timer to listen for Timer event
        atmMaker.addEventListener(TimerEvent.TIMER, createAtm);
        //start the timer
        atmMaker.start();
    function createAtm(event:TimerEvent):void
    //var antiTankmine_mc
    //create a new instance of tankMine
    antiTankmine_mc = new Atm();
    //set the x and y axis
    antiTankmine_mc.y = 473;
    antiTankmine_mc.x = 1080;
    // adds mines to stage
    addChild(antiTankmine_mc);
    antiTankmine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal_2(evt:Event):void{
        evt.target.x -= Math.random()*10;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseAtm();
    function moveForward():void{
        bg_mc.x -=10;
    function moveBackward():void{
        bg_mc.x +=10;
    var tank_mc:Tank;
    // create a new Tank and put it into the variable
    // tank_mc
    tank_mc= new Tank;
    // set the location ( x and y) of tank_mc
    tank_mc.x=0;
    tank_mc.y=375;
    // show the tank_mc on the stage.
    addChild(tank_mc);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, onMovementKeys);
    //creates the movement
    function onMovementKeys(evt:KeyboardEvent):void
        //makes the tank move by 10 pixels right
        if (evt.keyCode==Keyboard.D)
        tank_mc.x+=5;
    //makes the tank move by 10 pixels left
    if (evt.keyCode==Keyboard.A)
    tank_mc.x-=5
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    if (tank_mc.hitTestObject(antiTankmine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(antiTankmine_mc);
    if (tank_mc.hitTestObject(tankMine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(tankMine_mc);
        //var maxHP:int = 100;
    //var currentHP:int = maxHP;
    //var percentHP:Number = currentHP / maxHP;
        //Incrementing the cTime
    //checking if cTime has reached the limit yet
    if(cTime < cLimit){
        cTime ++;
    } else {
        //if it has, then allow the user to shoot
        shootAllow = true;
        //and reset cTime
        cTime = 0;
    function updateHealthBar():void
        percentHP = currentHP / maxHP;
        healthBar.barColor.scaleX = percentHP;
        if(currentHP <= 0)
            currentHP = 0;
            trace("Game Over");
        updateHealthBar();

    USe the trace function to analyze what happens and what fails to happen in the code you showed.  trace the conditional values to see if they are set up to allow a shot when you press the key

  • Need help with installing Yahoo style flash menu CS5

    I downloaded the Yahoo style menu bar from the the available widgets.  I got the menu bar to show in Dreamweaver, but need help:
    I have trouble understanding how to use the f-source  flash editor to edit the links.
    I don't seem to be able to drop the  f-source.com button from the menu bar.
    The bar  shows up as a tiny bar in IE8, not as I had programmed it in the widget programmer.
    I was instructed to Insert ==> f-source menus ==> Edit menu in Dreamweaver.  Doing this leads to the following message: "Install at least one f-source menu'.  I did install the f-source-UI G file in the Adobe Extension Manager CS5.  What else needs to be installed?  
    My OS is Windows7 and I am working with Dreamweaver CS5.  Please help.
    Thanks,
    Tony Uythoven

    Flash menus (Flash navigation, period) is a terrible thing from a functional standpoint. It looks really nice, but the honeymoon ends there. As far as SEO goes, your entire site, beyond the landing page, is invisible. A search robot will only see an embeded Flash object.
    You have to ask yourself a basic question.
    1. What is the purpose of building a website and putting it online?
    If it's for your own personal enjoyment and nothing more, then a Flash menu may be for you. If it's for a business or band, or a political group or social group, and you want people to be able to find it in Google, Yahoo, Bing, etc. then you want as many indexible links as possible on your landing page so they will show up in related searches like schedules, articles, galleries, etc.

  • Need help in screen capturing for flash CS4 AS3

    Hi, i need help!!!!!!!!!!!!!!!!!!!!!! URGENT!
    I am currently doing Augmented Reality.
    I got my marker to detect my model but my problem now is how to screen capture the content that is in swf.
    (As in capture the dae model shown in the comp not from webcam.)
    & also i just want to capture the swf window not the whole desktop.
    I read online, they say its impossible?
    Or is it possible to call screen capture function in javascript to flash CS4? (LIke external data)
    (Moreover, does anyone know how to detect multiple dae models with different markers?)
    Anyone can help??? Thanks in adv!!

    My current program (Flash CS4, AS3) only can capture what the webcam sees.
    How do i change it to screen capture (something like print screen) with my .DAE models?
    In the case, when i click on the capture button, it print screen.
    Here's part of the code that capture what the webcam sees.
    private function captureImage(e:MouseEvent):void
       bmd.draw(stage);
       bmp = new Bitmap(bmd);
       bmp.x = 140;
       bmp.y = 40;
       addChild(bmp);
       capture.visible = false;
       saveButton.visible = true;
       discardButton.visible = true;
    Really really need help! URGENT!
    Thanks!

  • Need HELP building a website in Flash CS6

    Hi,
    I need help creating buttons within buttons with interactive capablility and separate timlines. The parent button on rollover will display the child button. The Child button on down state must  be able to display a table that has links to images and other content. I'm a designer not a coder and I believe that this effort will require a lot of code.
    Below is an image of the navigation. The small squares are the parent buttons. The text that is displayed on rollover is the child button. Once the text button is clicked a table will animate out of the little orange square on the side and move off to the right displaying numerous images that are linked to other content. After the table displays it needs to have its own timeline. If the orange square is clicked again or if the user clicks on the white space the table will colapse  and the orange square will retract to it's original up state. I hope that makes sense and I appreciate any feedback.

    To get the kind of interaction and anoimation you identify you will need to use movieclip symbols instead of button symbols.

  • NEED HELP TO SET UP SMALL NETWORK - WIRELESS SIGNAL FROM NOVATEL U760 USB

    Hello -
    I need help setting up a small network in my new home in Florida, which has no wired broadband capability - not cable, not dsl. My options are satellite (which I'd like to avoid) or wireless broadband via Millenicom (or now Virgin Mobile) using their Novatel U760 USB stick.
    Here are the network components - someone please tell me how to set this up:
    PC #1 (has wireless card, but I've connected it by ethernet to the router)
    PC #2 (no wireless card; connected via ethernet to router)
    MACBOOK, 1 1/2 years old (2.1 GHz Intel Core 2 Duo, 4 gigs RAM), running OS 10.58, connected wirelessly to router.
    AIRPORT EXTREME BASE STATION, Model A1143.
    I'm not thrilled about using a wireless 3G signal as my primary one, (sprint network, claims 600 - 1400 kbps speed), but it costs 1/2 to 1/3 of what a slightly faster satellite signal would.
    I have not ordered this service yet. Before I do, I'd like a clear understanding that I can, in fact, set up my simple network, which I'd probably do the same as it's now configured with cable broadband - both PC's plug via
    ethernet into the Airport Extreme router, the MacBook connects wirelessly - AND,
    my question is this:
    Can I plug the wireless card - a Novatel U760 USB-stick device - straight into that USB slot in the Airport Extreme base station and will it automatically recognize that device?
    Or, do I have to plug it into the MacBook and somehow share that wireless signal between the 2 PC's (only 1 of which has a wireless card, so I'd have to get a card for PC #2)?
    And help anyone can provide will be much appreciated!
    Thanks,
    Em

    from the Airport FAQ #14:
    "Question: Can I connect my Soundsticks or other USB speakers to AirPort Express?
    Answer: No. The USB port is for connecting a printer, not for other devices."
    Im assuming other devices include USB modems.
    So, I would say your cheaper route would be to get a second wireless card and just share your internet connection from one of your PC.

  • Need Help To Extract Logo from Flash File .swf

    I have an attached Flash file that is in
    .swf format. There is a N64 logo within this file that I'm
    trying to extract as a
    .png with a transparent background. I've been able to open
    it in a program called
    Flash Decompiler Trillix and in the sub-menus it has the
    logo listed as a frame.
    This is about as far as I have gotten and I'm stuck. Perhaps
    someone else knows how to do this a little easier. I just need to
    find a way to extra the logo that already has a transparent
    background and save it in
    .png format.
    Any help here would be hot." ;)
    Logo Flash
    File .swf

    Hello,
    I ran into a similar problem a few months ago. I have the
    Sothink Flash Decompiler and what I did was turn the SWF back into
    a FLA. I then opened it in Flash and then exported what I wanted as
    a PNG image.
    Decompilers can extract the actual image whether it be jpeg,
    gif, png, etc. But when it's listed as a frame(as you mentioned
    above) then the method above is probably the best way to get it.
    Good luck

  • Need help with  effect to sing vocal hook with

    I have to sign a hook along with a singer but i'm not a singer i'm a rapper, can anyone point in the direction of an effect that would help smooth me out or even give my voice less cringing ability. I've been reviewing artists who sing (not well but good enough on a track) and need to figure out how to achieve this sound. I am providing a link to an artist named hard target.
    http://www.myspace.com/hardtarget
    I will either be doing this on logic express or garageband

    Hi,
    try these effects:
    - pitch correction
    - vocal transformer
    - compressor
    - limiter
    - EQ
    I'm afraid I could write at least 10 pages about this subject... experimenting will be the best thing to learn!
    Kind regards,
    Jaap

  • Need help converting quicktime movies into Flash files

    I need to convert a QT, PhotoJPEG compressed, movie file into a .flv format. I have AE 6.5 Standard and it keeps quitting on exporting a SWV file which would could probably get me by with my client. But, again, it errors out saying something like a JPG is busy, or a file is busy.
    I have FlipforMac,a purchased version. But I'm not sure if converting it into a .wmv and then a Flash file is the best route or is even possible.
    Any suggestions or ideas of software that I could purchase??
    ~reicko

    i don't think you have read up on the use of flash video
    (FLV). there's nothing you need that you do
    not already have (except maybe quicktime pro or some other
    video editing program). the FLV exporter
    comes FREE with flash 8. You should be able to open your
    quicktime movie in QT PRO and export to FLV
    format - then use any of the flash playback components for
    FLV files - best bet is to read the help
    docs on this subject and go to the devnet section of
    adobe.com where there are several in-depth
    articles about implementing flash video into your site.
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    rhian wrote:
    > Hi,
    > Thanks for your reply. I am using Flash 8. I've been
    looking into streaming
    > and it's very expensive with quicktime movies, however
    I've found a company
    > that will stream flash movies much more cheaply which is
    why I want to convert
    > it to a flash movie.
    >
    > Sorry are you say that Quicktime Pro allows you convert
    files into flash
    > formats?
    > Rhian
    >

  • Need Help - Windows Vista and Latest Flash Player

    Have Windows Vista and Adobe for viewing video. Just recently I was unable to
    view the videos. Pop-up showed that I needed to update to the Flash Player 11. I down loaded
    as instructed and was advised that download was successful but still can't view the videos
    since the same sign shows up. Have tried to see what I'm missing but without much luck.

    What is your browser?  If IE:
    http://forums.adobe.com/thread/885448
    http://forums.adobe.com/thread/867968

  • I need help getting rid of Adobe Flash Player

    First - cor-el, thanks for your suggestion (reply form won't let me enter a reply).
    Now, my problem: I use very slow dial-up. I cannot have a Flash Player on my computer or nothing else opens. When I downloaded Adobe Reader 8, somehow Adobe Flash Player 10 downloaded with it. It is messing up my Internet use. When I tried to remove it in Add or Remove Programs, and with Adobe's downloadable remover, a notice opens saying it will remove the Flash Player when Windows Messenger is closed. But Windows Messenger isn't open. I never use it. Adobe states “Due to recent enhancements to the Adobe Flash Player installers, you can now remove the player only by using the Adobe Flash Player uninstaller.” Surely there must be a way to find the components and delete each one. Can anyone tell me how to do that? Or maybe suggest something else besides reinstalling the operating system again (I did it two weeks ago -- took all day with help from Dell techs on the phone) and living without Adobe Reader?
    == Operating system ==
    WinXP

    First, a quick workaround.
    In Firefox,
    Tools> Addons
    Plugin Tab
    Locate Flash Player on the list and press disable.
    Restart Firefox.
    That should at least prevent it from running in Firefox and slowing down browsing. I think.

  • Need help in importing from a flash drive

    My problem is the content on the flash drive will play in itunes as long as the flash drive is connected to my computer. How to I move the files from the flash permanently into itunes?
    Thanks for any help

    Hey there,
    Have you tried File->Add to Library and then choose the songs off the flash drive? Another way is to head to "Edit" and then choose "Preferences". From there, head over to the "Advanced" tab and make sure there is a check mark next to "Copy files to iTunes Music folder when adding to library." See if that helps.
    B-rock

  • Need help to save CS4 to Flash 8 FLV file

    I have an .flv project done in Flash CS4, and can save as CS3. Can anyone help me save as Flash 8 (from CS3)
    Let me know via email - [email protected]
    Thanks so much.

    I have an .flv project done in Flash CS4, and can save as CS3. Can anyone help me save as Flash 8 (from CS3)
    Let me know via email - [email protected]
    Thanks so much.

  • Rookie needs help! Can't find flash drive?

    I am attempting to move music files from my old dell relic to my macbook air. I am not sure the macbook is seeing the flash drive? Or maybe the deal is I don't know how to find it?
    I pulled it out of the USB port and the error message came up that I did not properly eject it....not sure what to do. No icon appears on my desktop or anything.
    Can someone help me figure this out?
    Would love to be able to hold on to all those music files!
    Thanks!
    Patricia

    Hi Dana,
    Not sure what OS you are running, but if you are running Mountain Lion, you can go into Finder Preferences, and tell it to show your External Disks, etc. on the Desktop:
    Cheers,
    GB

  • Need help exporting transparent gifs for flash - rough edges

    Hello,
    I have a flash header i am building for a website. The layers i am exporting for web have a rough white edge (gif.s - save for web). Basically I am trying to transition the flower group to another color saved from a layer in Photoshop.
    Would a path help? The image in the library is set to allow smoothing.
    Here is a link to a screen shot in a new window.
    http://www.kineticcreativeco.com/forums/index.html

    gif has no »soft« transparencies if I understand correctly; are psd or png-24 possible to use for you?

Maybe you are looking for

  • Bug in Calendar app

    There is a bug in my calendar app It is synced to facebook, and i have wp 8.1 After selecting 'not going' for an event, the event got deleted from the app, but it keeps on showing on the live tile I tried switching off and on many times, but w after

  • Siri not reading my messages?

    I might be going crazy, but I recall that Siri is suppose to read your new messages when you received them and ask her to read it. On my phone if i ask siri to read a new mesages, she respons by saying "You have a new message from "name of the person

  • Im only starting and cant work out how to give a black and white photo blue eyes

    im a beginer and cant figer out how to give a black and white portrat photo blue eyes

  • Need a stand alone flash player

    currently l have version 7 installed that came with Flash MX problem is on occasion l find its not up to its job.. basically put l want a more up to date version of the stand alone player so l can run files made with newer versions as the stand alone

  • SOA-INFRA server is not starting up D8B3 Standalone server setup

    while starting the Managed Server hitting with this error: Caused By: oracle.mds.config.MDSConfigurationException: MDS-01330: unable to load MDS configuration document MDS-01329: unable to load element "persistence-config" MDS-01370: MetadataStore co