Porting JS (mobile services) for Flash (Action Script)

Hi!
There is JS-class for mobile services
ajax.aspnetcdn.com/ajax/mobileservices/MobileServices.Web-1.2.5.min.js
May be anybody know is there port of this for Flash-projects (for example, for AIR)
Thanx!

Ensure your event listener (or as u call it, key catcher) is referencing the instance of the button....so for example, if the original button is called "button" and the one you have on the stage is an instance of "button" with the instance name "buttonInstance", ensure the event handler is attached to the instance on stage...
It sounds like the event is not even being triggered as the trace is not being executed...this tells me that the event is not being "heard" by the listener.
Why not email your lecturer with your code and ask them for some direction? The worst thing that will happen is that they won't reply to your email. If that fails, go and see them in person. Persistence is a valuable attribute.

Similar Messages

  • I am looking for FLASH Action Script Assistance.

    What's the best source to find a person to assist with Compiler errors related to Flash scripts?

    Compiler errors: I have attempted to correct Source according to the suggestions by the compiler errors to no avail.
    The SOURCE CODE appears below the COMPILER ERRORS.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 32, Column 17
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 46, Column 10
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 62, Column 17
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 77, Column 10
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 94, Column 17
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 95, Column 17
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 95, Column 21
    1084: Syntax error: expecting rightparen before leftbrace.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 125, Column 32
    1084: Syntax error: expecting rightparen before and.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 127, Column 36
    1084: Syntax error: expecting rightparen before and.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 147, Column 28
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 147, Column 34
    1084: Syntax error: expecting rightparen before _root.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 170, Column 17
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 171, Column 17
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 171, Column 21
    1084: Syntax error: expecting rightparen before leftbrace.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 186, Column 32
    1084: Syntax error: expecting rightparen before and.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 188, Column 36
    1084: Syntax error: expecting rightparen before and.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 208, Column 28
    1084: Syntax error: expecting identifier before greaterthan.
    Symbol 'slidingMenu', Layer 'as', Frame 1, Line 208, Column 34
    1084: Syntax error: expecting rightparen before _root.
    ========================================================================================== ================================
    Source for slidingMenu
    slidingMenu.RollOverBoxes = function(boxNumber:Number) {
    if (_root.link<>boxNumber) {
    _root.my_motion_finished = 0;
    var cBox:MovieClip = eval('box'+boxNumber);
    cBox.title_main.gotoAndPlay("s1");
    for (var i = 1; i<=7; i++) {
    var cBox:MovieClip = eval('box'+i);
    xkoord = cBox.my_x;
    if (_root.splash_flag == 1) {
    if (boxNumber == 1) {
    slidingMenu.move_all(126);
    } else {
    slidingMenu.move_all(-126);
    if (i<>boxNumber) {
    if (i<boxNumber) {
    _root.myTween = new Tween(cBox, "_x", Strong.easeOut, cBox._x, xkoord-small_height_over, time_for_animation2, false);
    cBox.my_x = xkoord-small_height_over;
    } else {
    _root.myTween = new Tween(cBox, "_x", Strong.easeOut, cBox._x, xkoord+small_height_over, time_for_animation2, false);
    cBox.my_x = xkoord+small_height_over;
    _root.myTween.onMotionFinished = function() {
    _root.my_motion_finished = 1;
    slidingMenu.RollOutBoxes = function(boxNumber:Number) {
    if (_root.link<>boxNumber) {
    _root.my_motion_finished2 = 0;
    var cBox:MovieClip = eval('box'+boxNumber);
    //cBox.title_main.gotoAndPlay("s2");
    cBox.title_main.gotoAndPlay("s2");
    for (var i = 1; i<=7; i++) {
    var cBox:MovieClip = eval('box'+i);
    xkoord = cBox.my_x;
    if (_root.splash_flag == 1) {
    if (boxNumber == 1) {
    slidingMenu.move_all(-126);
    } else {
    slidingMenu.move_all(-126);
    if (i<>boxNumber) {
    if (i<boxNumber) {
    _root.myTween = new Tween(cBox, "_x", Strong.easeOut, cBox._x, xkoord+small_height_over, time_for_animation2, false);
    cBox.my_x = xkoord+small_height_over;
    } else {
    _root.myTween = new Tween(cBox, "_x", Strong.easeOut, cBox._x, xkoord-small_height_over, time_for_animation2, false);
    cBox.my_x = xkoord-small_height_over;
    _root.myTween.onMotionFinished = function() {
    _root.my_motion_finished2 = 1;
    // Functions
    slidingMenu.moveBoxes = function(boxNumber:Number) {
    if (_root.link<>boxNumber) {
    if (boxNumber<>7) {
    small_height = 568;
    small_height_over = 0;
    } else {
    small_height = 208;
    small_height_over = 360;
    if (boxNumber == 7) {
    _root.splash_flag = 1;
    slidingMenu.move_all(-126);
    } else {
    _root.splash_flag = 0;
    if (boxNumber == 5) {
    //slidingMenu.move_all(196-boxNumber*593+780);
    slidingMenu.move_all(136-(boxNumber-1)*593);
    } else {
    if (boxNumber == 1) {
    //slidingMenu.move_all(196-boxNumber*593+320);
    slidingMenu.move_all(136-(boxNumber-1)*593);
    } else {
    slidingMenu.move_all(136-(boxNumber-1)*593);
    _root.my_motion_finished3 = 0;
    k = 1;
    //-1239.0
    //eval('box'+_root.link).title_main.gotoAndPlay("s2");
    for (var i = 1; i<=7; i++) {
    var cBox:MovieClip = eval('box'+i);
    if (_root.start_status == 0 and i<>boxNumber) {
    //cBox.title_main.gotoAndPlay("s3");
    } else if (_root.link_prev == 0 and i == boxNumber) {
    //cBox.title_main.gotoAndPlay("s6");
    if (i == boxNumber) {
    _root.link_prev = _root.link;
    _root.link = boxNumber;
    cBox.pages.gotoAndPlay("s1");
    //if (_root.link<>0) {
    //cBox.title_main.gotoAndPlay("s2");
    var cBox2:MovieClip = eval('box'+_root.link_prev);
    cBox2.title_main.gotoAndPlay("s2");
    _root.pic_num_prev = _root.pic_num;
    _root.pic_num = 1;
    _root.pic_num2_prev = _root.pic_num2;
    _root.pic_num2 = 1;
    _root.pic_num3_prev = _root.pic_num3;
    _root.pic_num3 = 1;
    _root.pic_num4_prev = _root.pic_num4;
    _root.pic_num4 = 1;
    if (_root.pic_num_prev<>1 or _root.pic_num2_prev<>1 or _root.pic_num3_prev<>1 or _root.pic_num4_prev<>1) {
    cBox2.title_main.area.gall.play();
    cBox2.pages.gotoAndPlay(cBox2.pages._totalframes-cBox2.pages._currentframe);
    _root.scroller.gotoAndStop(2);
    xkoord = cBox.my_x;
    if (i<=boxNumber) {
    _root.myTween = new Tween(cBox, "_x", Back.easeOut, cBox._x, (k)*(small_height)-200, time_for_animation, false);
    cBox.my_x = (k)*(small_height)-200;
    } else {
    _root.myTween = new Tween(cBox, "_x", Back.easeOut, cBox._x, (k)*(small_height)+big_height-232, time_for_animation, false);
    cBox.my_x = (k)*(small_height)+big_height-232;
    _root.myTween.onMotionFinished = function() {
    _root.my_motion_finished3 = 1;
    k++;
    _root.start_status = 1;
    slidingMenu.appearBoxes = function(boxNumber:Number) {
    if (_root.link<>boxNumber) {
    if (boxNumber<>7) {
    if (boxNumber == 1) {
    slidingMenu.move_all(396-boxNumber*93);
    } else {
    slidingMenu.move_all(336-boxNumber*93);
    } else {
    slidingMenu.move_all(-426);
    _root.my_motion_finished3 = 0;
    k = 1;
    //-1239.0
    //eval('box'+_root.link).title_main.gotoAndPlay("s2");
    for (var i = 1; i<=7; i++) {
    var cBox:MovieClip = eval('box'+i);
    if (_root.start_status == 0 and i<>boxNumber) {
    //cBox.title_main.gotoAndPlay("s3");
    } else if (_root.link_prev == 0 and i == boxNumber) {
    //cBox.title_main.gotoAndPlay("s6");
    if (i == boxNumber) {
    _root.link_prev = _root.link;
    _root.link = boxNumber;
    cBox.pages.gotoAndPlay("s1");
    //if (_root.link<>0) {
    //cBox.title_main.gotoAndPlay("s2");
    var cBox2:MovieClip = eval('box'+_root.link_prev);
    cBox2.title_main.gotoAndPlay("s2");
    _root.pic_num_prev = _root.pic_num;
    _root.pic_num = 1;
    _root.pic_num2_prev = _root.pic_num2;
    _root.pic_num2 = 1;
    _root.pic_num3_prev = _root.pic_num3;
    _root.pic_num3 = 1;
    _root.pic_num4_prev = _root.pic_num4;
    _root.pic_num4 = 1;
    if (_root.pic_num_prev<>1 or _root.pic_num2_prev<>1 or _root.pic_num3_prev<>1 or _root.pic_num4_prev<>1) {
    cBox2.title_main.area.gall.play();
    cBox2.pages.gotoAndPlay(cBox2.pages._totalframes-cBox2.pages._currentframe);
    _root.scroller.gotoAndStop(2);
    xkoord = cBox.my_x;
    if (i<=boxNumber) {
    _root.myTween = new Tween(cBox, "_x", Strong.easeOut, cBox._x, (k)*(small_height)-200, 5+int(70-k*5), false);
    cBox.my_x = (k)*(small_height)-200;
    } else {
    _root.myTween = new Tween(cBox, "_x", Strong.easeOut, cBox._x, (k)*(small_height)+big_height-232, time_for_animation+int(k*20), false);
    cBox.my_x = (k)*(small_height)+big_height-232;
    _root.myTween.onMotionFinished = function() {
    _root.my_motion_finished3 = 1;
    k++;
    _root.start_status = 1;
    slidingMenu.StopBoxes = function() {
    for (var i = 1; i<=7; i++) {
    var cBox:MovieClip = eval('box'+i);
    //_root.myTween = new Tween(cBox, "_x", Back.easeOut, cBox._x, xkoord-small_height_over, 1, false);
    _root.myTween.continueTo(1, 1);
    slidingMenu.move_all = function(num) {
    var cBox:MovieClip = _root.box1;
    _root.myTween_move_all = new Tween(cBox, "_x", Back.easeOut, cBox._x, num, 25, false);
    //slidingMenu.moveBoxes();

  • Video bookmark (videomark) using flash/action script?

    Video bookmark is called videomark.
    Anybody did videomark using flash?.
    Is there any good place, i can learn more about videomark in
    flash?.

    yeah..........
    Can I have a small example on this ... so that it would be very easy for me to understand....
    I am a new bee in flash action scripting......
    Thanks & Regards

  • Can access c++ library from flash action script by using SWC lib?

    We want to develope a Flash application based on Windows CE 6.0 R3. The application aims to communicate with middleware libraries written in C/C++. Is it possible to create SWC file using the c++ library file so that we can load this as a component in fla project for accessing the library functions from flash action script 3.0? OR Is there any simple way to access c++ library from action script?
    Thanks,
    Saumini

    I don't think Alchemy will help you.  The reason is Alchemy does not give socket capabilities beyond what Flash provides.

  • Help... link URL from XML to Flash Action Script 2

    I am trying to link a different URL to each of my files in XML and use this XML in Flash were I created a carousel. In the carousel, when you click on a picture I would like to insert a specific URL. Each picture will have a different URL (http://------------).
    Here are my codes:
    XML:
    <icons>
    <icon image="icon1.png" tooltip="Planning" />
    <icon image="icon2.png" tooltip="Investments" />
    <icon image="icon3.png" tooltip="Education" />
    <icon image="icon4.png" tooltip="Insurances" />
    <icon image="icon5.png" tooltip="Mortgages" />
    <icon image="icon6.png" tooltip="Retirement" />
    <icon image="icon7.png" tooltip="Business Owner" />
    <icon image="icon8.png" tooltip="Banking" />
    </icons>
    Flash Action Script 2:
    import mx.utils.Delegate;
    var numOfItems:Number;
    var radiusX:Number = 250;
    var radiusY:Number = 75;
    var centerX:Number = Stage.width/2;
    var centerY:Number = Stage.height/2;
    var speed:Number = 0.01;
    var perspective:Number = 60;
    var home:MovieClip = this;
    var tooltip:MovieClip = this.attachMovie("tooltip","tooltip",10000);
    tooltip._alpha = 0;
    var xml:XML = new XML();
    xml.ignoreWhite = true;
    xml.onLoad = function()
    var nodes = this.firstChild.childNodes;
    numOfItems = nodes.length;
    for(var i=0;i<numOfItems;i++)
      var t = home.attachMovie("item","item"+i,i+1);
      t.angle = i * ((Math.PI*2)/numOfItems);
      t.onEnterFrame = mover;
      t.toolText = nodes[i].attributes.tooltip;
      t.icon.inner.loadMovie(nodes[i].attributes.image);
      t.ref.inner.loadMovie(nodes[i].attributes.image);
      t.icon.onRollOver = over;
      t.icon.onRollOut = out;
      t.icon.onRelease = released;
    function over()
    home.tooltip.tipText.text = this._parent.toolText;
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    home.tooltip.onEnterFrame = Delegate.create(this,moveTip);
    home.tooltip._alpha = 100;
    function out()
    delete home.tooltip.onEnterFrame;
    home.tooltip._alpha = 0;
    function released()
    function moveTip()
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    xml.load("icons.xml");
    function mover ()
    this._x = Math.cos(this.angle) * radiusX + centerX;
    this._y = Math.sin(this.angle) * radiusY + centerY;
    var s = (this._y - perspective) / (centerY+radiusY-perspective);
    this._xscale = this._yscale = s * 100
    this.angle += this._parent.speed;
    this.swapDepths(Math.round(this._xscale) + 100);
    this.onMouseMove = function()
    speed = (this._xmouse-centerX)/10000;
    Thanks so much for the help.

    You should be able to add that data into your xml tags and then extract it in the AS2 onLoad function...
    XML:
    <icons>
    <icon image="icon1.png" tooltip="Planning" linkURL="http://www.someURL.com/somePage.html" />
    AS2:
    xml.onLoad = function()
    etc....
    t.onEnterFrame = mover;
    t.toolText = nodes[i].attributes.tooltip;
    t.urlLink = nodes[i].attributes.linkURL;
    etc...

  • CRM Mobile Service For Handheld

    Can anyone help me understand why this log shows method CRMHH_SYNC could not be executed.  My architecture is as follows:
    WebAS 620 SP53
    ME 21SP03
    CRM Server 40SP08
    CRM HH 40SP08
    I have followed the installation guide for ME21SP03 (Table Mappings, Authorizations, RFC Destination, etc.) and also to the Mobile Service for Handheld Scenario configuration Guide.  Any help would be greatly appreciated.
    Scott
    new request -
    [20050714 10:32:08:391] I EventMappingStrategyImpl.createEventMethod 
    [20050714 10:32:08:391] I methodName = doEventSync 
    [20050714 10:32:08:391] I method = public void com.sap.crm.handheld.webpages.service.sync.SyncOptionsWebPage.doEventSync(com.sap.crm.handheld.core.webtools.RequestContext) throws com.sap.crm.handheld.core.webtools.WebPageException 
    [20050714 10:32:08:391] I evnetName = Sync 
    eventMethod = public void com.sap.crm.handheld.webpages.service.sync.SyncOptionsWebPage.doEventSync(com.sap.crm.handheld.core.webtools.RequestContext) throws com.sap.crm.handheld.core.webtools.WebPageException 
    [20050714 10:32:08:621] I pageURI = /sync/Wait.jsp and dispatcher = org.apache.tomcat.facade.RequestDispatcherImpl@6d2633 
    [20050714 10:32:08:641] D in UpSyncPhase.execute() 
    [20050714 10:32:08:672] D GUID generation last time (1121351528672) was >= than current time (1121351528672) --> use this time instead 1121351528673 
    [20050714 10:32:08:682] D created Container(CRMHH_SYNC_PLAYBACK) 
    [20050714 10:32:08:682] D begin Container.addCall 
    [20050714 10:32:08:682] D sending method: CRM_WAP_GO_TO_ACT_SAVE 
    [20050714 10:32:08:682] D Container.addItem(METHOD_NAME, 1, CRM_WAP_GO_TO_ACT_SAVE) 
    [20050714 10:32:08:692] D Container.addItem(TRANSACT_ID, 1, 4414029B1CE282C2D5C13E8F81D9A0E6) 
    [20050714 10:32:08:692] D Container.addItem(IV_FROM_TIME, 1, 20050714143100) 
    [20050714 10:32:08:692] D Container.addItem(IV_PRIORITY, 1, ) 
    [20050714 10:32:08:692] D Container.addItem(IV_FOLLOWUP_PARENT, 1, ) 
    [20050714 10:32:08:692] D Container.addItem(HH_SCENARIO_ID, 1, 02) 
    [20050714 10:32:08:692] D Container.addItem(IV_OFFLINE_LUID_ACTIVITY, 1, DD2912268524DC211A7D08B597FA26D2) 
    [20050714 10:32:08:692] D Container.addItem(SESSION_ID, 1, E386F8910CD7AEA7566E23893E9FD298) 
    [20050714 10:32:08:692] D Container.addItem(IV_ACTIVITY_TYPE, 1, ) 
    [20050714 10:32:08:692] D Container.addItem(DUMMY_VALUE, 1, TASK) 
    [20050714 10:32:08:692] D Container.addItem(IV_OFFLINE_TASK_FLG, 1, X) 
    [20050714 10:32:08:692] D Container.addItem(IV_ACTIVITY_DESCRIPTION, 1, SCOTT"S TEST) 
    [20050714 10:32:08:692] D Container.addItem(IV_STATUS, 1, ) 
    [20050714 10:32:08:692] D Container.addItem(IV_REASON, 1, ) 
    [20050714 10:32:08:692] D end Container.addCall 
    [20050714 10:32:08:732] D end UpSyncPhase.execute() 
    [20050714 10:32:08:732] I in DownSyncPhase.execute([Ljava.lang.String;@27fa12) 
    [20050714 10:32:08:742] D created Container(CRMHH_SYNC) 
    [20050714 10:32:08:742] D begin Container.addCall 
    [20050714 10:32:08:742] D sending method: CRMHH_SYNC_SELECT 
    [20050714 10:32:08:742] D Container.addItem(METHOD_NAME, 1, CRMHH_SYNC_SELECT) 
    [20050714 10:32:08:742] D Container.addItem(TRANSACT_ID, 1, 5422A97279A1E29F0849B9F2AA392DFC) 
    [20050714 10:32:08:742] D Container.addItem(PRODUCT_SRV, 1, dummyValue) 
    [20050714 10:32:08:742] D Container.addItem(ATTENDANCE, 1, dummyValue) 
    [20050714 10:32:08:742] D Container.addItem(HH_SCENARIO_ID, 1, 02) 
    [20050714 10:32:08:742] D Container.addItem(ASSIGNMENT, 1, dummyValue) 
    [20050714 10:32:08:742] D Container.addItem(ACTIVITY, 1, dummyValue) 
    [20050714 10:32:08:742] D Container.addItem(SESSION_ID, 1, E386F8910CD7AEA7566E23893E9FD298) 
    [20050714 10:32:08:742] D Container.addItem(BP, 1, dummyValue) 
    [20050714 10:32:08:742] D Container.addItem(LANGUAGE, 1, EN) 
    [20050714 10:32:08:742] D Container.addItem(A_TO_Z_GROUPS, 1, AE,FJ,KO,PU,VZ,09) 
    [20050714 10:32:08:742] D Container.addItem(PACKED, 1, dummyValue) 
    [20050714 10:32:08:742] D Container.addItem(TIMESTAMP, 1, 1121351528732) 
    [20050714 10:32:08:742] D Container.addItem(VERSION, 1, SP11) 
    [20050714 10:32:08:742] D end Container.addCall 
    [20050714 10:32:08:812] S Synchronize with backend called 
    [20050714 10:32:08:812] D Synchronisation: Fire SyncEvent 0 
    [20050714 10:32:08:812] I SyncEvent Performing com.sapmarkets.apps.wafhome.SyncStatus 
    [20050714 10:32:08:812] I SyncEvent Performing com.sap.ip.me.core.UserManagerSyncEventListener 
    [20050714 10:32:08:812] I SyncEvent Performing com.sap.ip.me.smartsync.syncadp.SmartSyncSyncEventListener 
    [20050714 10:32:08:812] I SyncAdapter: get the Start event; start to process outbound message. 
    [20050714 10:32:08:842] D Me Persistence initialization, step 2: start create instance of com.sap.ip.me.persist.core.PersistenceRuntimeImpl 
    [20050714 10:32:08:842] D Me Persistence initialization, step 3: end create instance of com.sap.ip.me.persist.core.PersistenceRuntimeImpl 
    [20050714 10:32:08:942] I SyncEvent Performing com.sap.ip.me.core.StatusUpdater 
    [20050714 10:32:08:942] I SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener 
    [20050714 10:32:08:972] I Synchronization started for user SERVICEREP2 
    [20050714 10:32:08:972] D Synchronisation: create outbound container for each conversation id 
    [20050714 10:32:09:212] S Synchronisation started 
    [20050714 10:32:09:212] D Dumping file ''C:\Program Files\SAPMobileEngine\sync\SERVICEREP2\packages\package.sync'' 
    INH-H[1]=010515c12c58895de3fd;SERVICEREP2;C;;7653A2E9A0C4BB41B1931D3C9886A9FB;5B6377EC9BBEC746A9BB741E9A5B5904;;;NEW_PROTOCOL;;0;;0&INH-H[2]=010515c135e4fb041296;SERVICEREP2;A;;7653A2E9A0C4BB41B1931D3C9886A9FB;BD334E974AAAE54DA0F3EF570D5B30... 
    [20050714 10:32:09:212] D End of content of file ''C:\Program Files\SAPMobileEngine\sync\SERVICEREP2\packages\package.sync'' 
    [20050714 10:32:09:212] S Do not use http proxy (system properties update) 
    [20050714 10:32:09:212] D do httpPost http://sapatl.abacoatl.abacoinc.com:50000/meSync/servlet/meSync?sysid=abc&login=SERVICEREP2&password=**********&client=000&~language=EN&ACKNOWLEDGE=X& via C:\Program Files\SAPMobileEngine\sync\SERVI... 
    [20050714 10:32:09:212] S UrlConnectionTest: Set sleeping time for future connection tests to 500 
    [20050714 10:32:09:212] S UrlConnectionTest: returning instance for host sapatl.abacoatl.abacoinc.com 
    [20050714 10:32:09:212] D UrlConnectionTest: lastHostChecked was 
    [20050714 10:32:09:212] D UrlConnectionTest: lastTimeOfCheck was 0 
    [20050714 10:32:09:212] D UrlConnectionTest: last check was 1121351529212 ms ago 
    [20050714 10:32:09:212] S UrlConnectionTest: try number: 1 
    [20050714 10:32:09:212] S UrlConnectionTestThread: method run() started... 
    [20050714 10:32:09:222] S UrlConnectionTestThread: URL protocol is http 
    [20050714 10:32:09:222] S UrlConnectionTestThread: HTTP responsecode is 200 
    [20050714 10:32:09:713] S UrlConnectionTest: it took 501 ms to test the connection 
    [20050714 10:32:09:713] S UrlConnectionTest: Connection could be established!!! 
    [20050714 10:32:09:713] S URL connection test was successfull!!! 
    [20050714 10:32:09:713] D GzipDataCompression: Gzip data compression is switched off 
    [20050714 10:32:09:713] I Http Connection start 
    [20050714 10:32:09:723] I Http Connection end 
    [20050714 10:32:09:723] I Http Connection start 
    [20050714 10:32:09:813] I Http Connection end 
    [20050714 10:32:09:813] S Synchronisation successfully connected 
    [20050714 10:32:09:823] I New SyncInboundManager SINGLETON created : com.sap.ip.me.sync.SyncInboundManager@718e8e 
    [20050714 10:32:09:823] I Number of pending inbound containers before inbound processing = 0 
    [20050714 10:32:09:833] S Synchronisation: valid response received from server 
    [20050714 10:32:09:833] I -
    InboundContainer created: Type:C,Id:8298A492781CA749A20E4B9AF8B72EE4,SId:,Items:0,MaxI:0 
    [20050714 10:32:09:833] I -
    InboundContainer created: Type:A,Id:6A988084A1676B429072B422111D22C3,SId:,Items:0,MaxI:0 
    [20050714 10:32:09:833] I -
    InboundContainer created: Type:A,Id:7D2B560DE64E264181D29CA026EBC57C,SId:,Items:0,MaxI:0 
    [20050714 10:32:09:833] I -
    InboundContainer created: Type:A,Id:7BCDFAA19094E84F9A9ADFC384ABA2CB,SId:,Items:0,MaxI:0 
    [20050714 10:32:09:833] D SyncInboundContainer: closing reader for inbound file / stream 
    [20050714 10:32:09:833] D Dumping file ''C:\Program Files\SAPMobileEngine\sync\SERVICEREP2\inbound.sync'' 
    &WAF_SYNC&STATUS=&Execution Time =103155& HeaderType = MEREPLICATION &MORE_PACKAGES_WAITING = & 
    HEADERS&0&8298A492781CA749A20E4B9AF8B72EE4 &SERVICEREP2 &C & &0000-00-00 &00:00:00 &0000-00-00 &00:00:00 & &7653A2E9A0C4BB41B1931D3C9886A9FB &010515c135e4fb041296 & & &NEW_PROTOCOL & & & &0000000000 & 
    HEADERS&1&6A988084A1676B429072B422111D22C3 &SERVICEREP2 &A & &0000-00-00 &00:00:00 &2005-07-14 &10:31:55 &O &7653A2E9A0C4BB41B1931D3C9886A9FB &010515c2725cc0556bd7 & & &NEW_PROTOCOL & & & &0000000000 & 
    HEADERS&2&7D2B560DE64E264181D29CA026EBC57C &SERVICEREP2 &A & &0000-00-00 &00:00:00 &2005-07-14 &10:31:55 &O &B15257F600FB7B48A49F09112DAE2585 &010515c272ac66b0b471 & & &NEW_PROTOCOL & & & &0000000000 & 
    HEADERS&3&7BCDFAA19094E84F9A9ADFC384ABA2CB &SERVICEREP2 &A & &0000-00-00 &00:00:00 &2005-07-14 &10:31:55 &O &DFD994D2EC0DC24F87A6E77555BCAF4D &010515c2720c456d28d4 & & &NEW_PROTOCOL & & & &0000000000 & 
    [20050714 10:32:09:833] D End of content of file ''C:\Program Files\SAPMobileEngine\sync\SERVICEREP2\inbound.sync'' 
    [20050714 10:32:09:843] I All inbound containers successfully read from file 
    [20050714 10:32:09:843] S Synchronisation: Start processing inbound data 
    [20050714 10:32:09:843] I There are 4 inbound containers to be processed 
    [20050714 10:32:09:893] D GUID generation last time (1121351529893) was >= than current time (1121351529893) --> use this time instead 1121351529894 
    [20050714 10:32:09:913] I Processed 4 acknowledges and 0 sub-containers 
    [20050714 10:32:09:913] I Processed 0 not arranged containers 
    [20050714 10:32:09:913] I Processed 0 ordered containers 
    [20050714 10:32:09:913] I Number of pending inbound containers after inbound processing = 0 
    [20050714 10:32:09:913] S Synchronisation: Processing of inbound data finished 
    [20050714 10:32:09:923] A There are no more packages waiting 
    [20050714 10:32:09:923] D resetting the info which outbound containers are already created for user SERVICEREP2 
    [20050714 10:32:09:933] I Synchronization finished for user SERVICEREP2 
    [20050714 10:32:09:933] I Synchronization started for user (SHARED) 
    [20050714 10:32:09:933] D Synchronisation: create outbound container for each conversation id 
    [20050714 10:32:09:973] S Synchronisation started 
    [20050714 10:32:09:973] D Dumping file ''C:\Program Files\SAPMobileEngine\sync\(SHARED)\packages\package.sync'' 
    INH-H[1]=010515c1390f50b1054b;SERVICEREP2;C;;20AC7A4F37ADC74BB348AADCFFF810E7;CD9781E70D122A4E89B3F7A8393AE988;;;NEW_PROTOCOL;;0;;0&INH-H[2]=010515c13910ef8dd9fe;SERVICEREP2;C;;4F78594976510E4BBB7C0099206FDAE6;449E76D46FE69F4B833868EFAAEBB7... 
    [20050714 10:32:09:973] D End of content of file ''C:\Program Files\SAPMobileEngine\sync\(SHARED)\packages\package.sync'' 
    [20050714 10:32:09:973] S Do not use http proxy (system properties update) 
    [20050714 10:32:09:973] D do httpPost http://sapatl.abacoatl.abacoinc.com:50000/meSync/servlet/meSync?sysid=abc&login=SERVICEREP2&password=**********&client=000&~language=EN&ACKNOWLEDGE=X& via C:\Program Files\SAPMobileEngine\sync\(SHAR... 
    [20050714 10:32:09:983] S UrlConnectionTest: returning instance for same host sapatl.abacoatl.abacoinc.com 
    [20050714 10:32:09:983] D UrlConnectionTest: lastHostChecked was sapatl.abacoatl.abacoinc.com 
    [20050714 10:32:09:983] D UrlConnectionTest: lastTimeOfCheck was 1121351529212 
    [20050714 10:32:09:983] D UrlConnectionTest: last check was 771 ms ago 
    [20050714 10:32:09:983] S UrlConnectionTest: skipping test for sapatl.abacoatl.abacoinc.com 
    [20050714 10:32:09:983] S URL connection test was successfull!!! 
    [20050714 10:32:09:983] D GzipDataCompression: Gzip data compression is switched off 
    [20050714 10:32:09:983] I Http Connection start 
    [20050714 10:32:09:983] I Http Connection end 
    [20050714 10:32:09:983] I Http Connection start 
    [20050714 10:32:16:423] I Http Connection end 
    [20050714 10:32:16:423] S Synchronisation successfully connected 
    [20050714 10:32:16:423] I Number of pending inbound containers before inbound processing = 0 
    [20050714 10:32:16:423] S Synchronisation: valid response received from server 
    [20050714 10:32:16:423] I -
    InboundContainer created: Type:A,Id:FF753981510B3B46961132AD416BB0D8,SId:,Items:0,MaxI:14 
    [20050714 10:32:16:423] I -
    InboundContainer created: Type:A,Id:3F3C505B22DDE9448798EDD487D42045,SId:,Items:0,MaxI:14 
    [20050714 10:32:16:423] I -
    InboundContainer created: Type:R,Id:BCBBE9B9FCBC1A4BAB38DD8F67369DDA,SId:,Items:0,MaxI:16 
    [20050714 10:32:16:423] I -
    InboundContainer created: Type:R,Id:1A69636588A0824F954BEEE1ED4CF70C,SId:,Items:0,MaxI:16 
    [20050714 10:32:16:433] D SyncInboundContainer: closing reader for inbound file / stream 
    [20050714 10:32:16:433] D Dumping file ''C:\Program Files\SAPMobileEngine\sync\(SHARED)\inbound.sync'' 
    &WAF_SYNC&STATUS=&Execution Time =103157& HeaderType = MEREPLICATION &MORE_PACKAGES_WAITING = & 
    HEADERS&0&FF753981510B3B46961132AD416BB0D8 &SERVICEREP2 &A &CRMHH_SYNC &0000-00-00 &00:00:00 &2005-07-14 &10:32:00 &O &68F42C5021041447A946ED8C235BE538 &010515c2711cd877a203 & & &NEW_PROTOCOL & & & &0000000014 & 
    HEADERS&1&3F3C505B22DDE9448798EDD487D42045 &SERVICEREP2 &A &CRMHH_SYNC_PLAYBACK &0000-00-00 &00:00:00 &2005-07-14 &10:32:01 &O &68F42C5021041447A946ED8C235BE538 &010515c270e1ca246e14 & & &NEW_PROTOCOL & & & &0000000014 & 
    HEADERS&2&BCBBE9B9FCBC1A4BAB38DD8F67369DDA &SERVICEREP2 &R &CRMHH_SYNC &2005-07-14 &10:32:00 &2005-07-14 &10:32:00 &E &68F42C5021041447A946ED8C235BE538 &010515c2711cd877a203 & & &NEW_PROTOCOL & &0000000000 & &0000000016 & 
    HEADERS&3&1A69636588A0824F954BEEE1ED4CF70C &SERVICEREP2 &R &CRMHH_SYNC_PLAYBACK &2005-07-14 &10:32:01 &2005-07-14 &10:32:01 &E &68F42C5021041447A946ED8C235BE538 &010515c270e1ca246e14 & & &NEW_PROTOCOL & &0000000000 & &0000000016 & 
    CONTAINERS&0&1A69636588A0824F954BEEE1ED4CF70C & &DUMMY_VALUE &0000000009 &TASK & 
    CONTAINERS&1&1A69636588A0824F954BEEE1ED4CF70C & &HH_SCENARIO_ID &0000000005 &02 & 
    CONTAINERS&2&1A69636588A0824F954BEEE1ED4CF70C & &IV_ACTIVITY_DESCRIPTION &0000000011 &SCOTT"S TEST & 
    CONTAINERS&3&1A69636588A0824F954BEEE1ED4CF70C & &IV_ACTIVITY_TYPE &0000000008 & & 
    CONTAINERS&4&1A69636588A0824F954BEEE1ED4CF70C & &IV_FOLLOWUP_PARENT &0000000004 & & 
    CONTAINERS&5&1A69636588A0824F954BEEE1ED4CF70C & &IV_FROM_TIME &0000000002 &20050714143100 & 
    CONTAINERS&6&1A69636588A0824F954BEEE1ED4CF70C & &IV_OFFLINE_LUID_ACTIVITY &0000000006 &DD2912268524DC211A7D08B597FA26D2 & 
    CONTAINERS&7&1A69636588A0824F954BEEE1ED4CF70C & &IV_OFFLINE_TASK_FLG &0000000010 &X & 
    CONTAINERS&8&1A69636588A0824F954BEEE1ED4CF70C & &IV_PRIORITY &0000000003 & & 
    CONTAINERS&9&1A69636588A0824F954BEEE1ED4CF70C & &IV_REASON &0000000013 & & 
    CONTAINERS&10&1A69636588A0824F954BEEE1ED4CF70C & &IV_STATUS &0000000012 & & 
    CONTAINERS&11&1A69636588A0824F954BEEE1ED4CF70C & &METHOD_NAME &0000000000 &CRM_WAP_GO_TO_ACT_SAVE & 
    CONTAINERS&12&1A69636588A0824F954BEEE1ED4CF70C & &RETURN &0000000000 &EWAF 001Method CRMHH_SYNC_PLAYBACK could not be executed & 
    CONTAINERS&13&1A69636588A0824F954BEEE1ED4CF70C & &SESSION_ID &0000000007 &E386F8910CD7AEA7566E23893E9FD298 & 
    CONTAINERS&14&1A69636588A0824F954BEEE1ED4CF70C & &SYNCUSER &0000000000 &SERVICEREP2 & 
    CONTAINERS&15&1A69636588A0824F954BEEE1ED4CF70C & &TRANSACT_ID &0000000001 &4414029B1CE282C2D5C13E8F81D9A0E6 & 
    CONTAINERS&16&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &ACTIVITY &0000000006 &dummyValue & 
    CONTAINERS&17&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &ASSIGNMENT &0000000005 &dummyValue & 
    CONTAINERS&18&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &ATTENDANCE &0000000003 &dummyValue & 
    CONTAINERS&19&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &A_TO_Z_GROUPS &0000000010 &AE,FJ,KO,PU,VZ,09 & 
    CONTAINERS&20&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &BP &0000000008 &dummyValue & 
    CONTAINERS&21&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &HH_SCENARIO_ID &0000000004 &02 & 
    CONTAINERS&22&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &LANGUAGE &0000000009 &EN & 
    CONTAINERS&23&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &METHOD_NAME &0000000000 &CRMHH_SYNC_SELECT & 
    CONTAINERS&24&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &PACKED &0000000011 &dummyValue & 
    CONTAINERS&25&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &PRODUCT_SRV &0000000002 &dummyValue & 
    CONTAINERS&26&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &RETURN &0000000000 &EWAF 001Method CRMHH_SYNC could not be executed & 
    CONTAINERS&27&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &SESSION_ID &0000000007 &E386F8910CD7AEA7566E23893E9FD298 & 
    CONTAINERS&28&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &SYNCUSER &0000000000 &SERVICEREP2 & 
    CONTAINERS&29&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &TIMESTAMP &0000000012 &1121351528732 & 
    CONTAINERS&30&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &TRANSACT_ID &0000000001 &5422A97279A1E29F0849B9F2AA392DFC & 
    CONTAINERS&31&BCBBE9B9FCBC1A4BAB38DD8F67369DDA & &VERSION &0000000013 &SP11 & 
    [20050714 10:32:16:433] D End of content of file ''C:\Program Files\SAPMobileEngine\sync\(SHARED)\inbound.sync''

    Hi, the message
    RETURN &0000000000 &EWAF 001Method CRMHH_SYNC could not be executed
    indicates that the corresponding function module from BWAFMAPP for CRMHH_SYNC could not be executed, probably due to that fact that either in table MEMAPPDEST, the RFC destination is maintained incorrectly, ot the RFC destinatio nis down, or the function module is not RFC enabled in the CRM system (chec kfruntion module properties for this one).
    Cheers, Stefan

  • How do you auto reconnect a live video stream broadcast in flash action script 3?

    how do you auto reconnect a live video stream broadcast in flash action script 3?
    so i don't have to ask people to refresh the page if the connection drops
    i copy pasted the live video stream broadcast files and script from here;
    http://www.adobe.com/devnet/adobe-media-server/articles/beginner_live_fms3.html
    http://www.adobe.com/content/dotcom/en/devnet/adobe-media-
    server/articles/beginner_live_fms3/_jcr_content/articlePrerequistes/multiplefiles
    /node_1278314297096/file.res/beginner_live_fms3.zip
    i don't know what i'm doing

    Why don't you use several layers with appropriate alpha properties, and move these layers according to the mouse events?

  • Can oracle audit logs keep info of Blocking or blacklisting a user ID, terminal or access port, and the reason for the action?

    Hello,
    I am workin on Oracle 11G STIGs and one STIGs states that audit log should include followings;
    - User ID.
    - Successful and unsuccessful attempts to access security files
    - Date and time of the event.
    - Type of event.
    - Success or failure of event.
    - Successful and unsuccessful logons.
    - Denial of access resulting from excessive number of logon attempts.
    - Blocking or blacklisting a user ID, terminal or access port, and the reason for the action.
    - Activities that might modify, bypass, or negate safeguards controlled by the system.
    I know how to enable audit trial with OS or DB, EXTENDED levels.  However, I could not find if it is possible that audit logs can contain info of Blocking or blacklisting a user ID, terminal or access port, and the reason for the action.

    2687254 wrote:
    Hello,
    I am workin on Oracle 11G STIGs and one STIGs states that audit log should include followings;
    - User ID.
    - Successful and unsuccessful attempts to access security files
    - Date and time of the event.
    - Type of event.
    - Success or failure of event.
    - Successful and unsuccessful logons.
    - Denial of access resulting from excessive number of logon attempts.
    - Blocking or blacklisting a user ID, terminal or access port, and the reason for the action.
    - Activities that might modify, bypass, or negate safeguards controlled by the system.
    I know how to enable audit trial with OS or DB, EXTENDED levels.  However, I could not find if it is possible that audit logs can contain info of Blocking or blacklisting a user ID, terminal or access port, and the reason for the action.
    Think about that.  If the port or terminal (client ip address) is blocked, then the communication never got to the database.  So how would the database be able to audit an action that never got there?

  • New to flash / action script 3

    hi guys,
    got sick of playing flash games and want to learn to create.
    i downloaded a gif of sub zero from mortal kombat...the gif has all the frames for each action like jumping / punching etc.
    i have imported it into flash and i have organised the key frames so when i press enter it looks pretty smooth.
    will i be able to control it like this with keyboard using action script? or do i have to convert it to a vector graphic?
    or is this just not possible.
    can anybody please recommend me a good flash/as3 book to read please...i know there are lots...
    thanks
    jonininireland

    imm for an easy gif control try to import it as a movie clip , Gif images must be framed inside your - character Movie clip -
    try to learn about cross images technique for animating chracters.
    of course u'll be able to control game by keyboard ha ! .
    see:http://as3gamedev.blogspot.com/
    Read :Essential Guide to Flash Games
    try:Develop Flash Games
    Good luck
    Mhood

  • Send data from html to flash action script

    Hi,
    I would like my flash to act differently depending on what
    html page it is on. Can I send information from html code to action
    script?

    Hi,
    Yes you can, by using FLASHVARS. Refer the attached code for
    example. Also you can use Javascript setVariable method of Flash
    object to set values in between i.e. after the page has loaded, as
    in case of FLASHVARS these are sent to flash just at the begining
    i.e. once SWF loads. In the attached exmple i've sent 2 variables
    to Flash one is 'username' and other is 'userId', thse will be
    fetched inside flash movie as _root.username and _root.userId.
    Note: I've added flashvars as PARAM and also as an attribute
    for EMBED tag (used by Mozilla, NS etc)
    Hope this helps.
    Thanks,
    Sumeet

  • Flash Action Script

    I have 3 problems on action script on the following :
    a) I have two instances on the stage. I want to link these 2
    instances by drawing a line by clicking the mouse and drag from
    one instance to another.
    b) I have 2 instances A & B on the stage. I want to drag
    instance A and place it on instance B, Instance A is unmovable
    after
    placing on instance B.
    c) I have an instance on stage which is made visible = false
    on load. onRelease of button this instance is visible = true. I go
    to next frame, then I go back to previous frame, the
    instance become visible = false again. How does the action Script
    like by
    letting the instance visible = true when I go to previous
    frame.
    By dafei

    Flash CS3 works with events.
    To handle clicks you have to capture the click event
    To load a link you have navigateToURL:
    http://livedocs.adobe.com/flex/2/langref/flash/net/package.html#navigateToURL()

  • Captivate 8 - module FLASH - Action Script

    Bonjour,
    J'utilise Captive 8 pour créer des modules de formation e-learning.
    Le problème est que ma société ne peut pas passer à IE11 pour afficher les modules en HTML5.
    Pour pouvoir créer des modules, il faut que la publication en SWF se fasse avec Action Script 2 et Captivate 8 utilise Action Script3 que mon module de compilation (obligatoire de passer par là) ne gère pas.
    Y a-t-il une solution ?
    Merci de m'aider.

    Bonjour,
    merci de votre réponse et voici donc un descriptif complet de mon "problème".
    1) j'utilise Captivate8 AS3 pour générer des modules en SWF et en HTML5.
    2) j'utilise un outil spécifique MyRenda du Cerfi ensuite pour compiler mon module afin de l'insérer dans MyTeacher (CERFI)
    3) MyRenda compile avec ISPRING qui ne gère pas AS3 pour créer des modules en FLASH
    Vu que ma société utilise encore la version de IE8 pour le portail applicatif (impératif pour des raisons applicatifs métiers), je ne peux pas générer des SWF et vu que IE8 ne supporte pas le HTML5, je ne peux pas publier mes modules de formations.
    Ma question :
    Est-il possible de modifier AS3 en AS2 pour Captivate8 ? ou est-il possible d'obtenir une version antérieure de Captivate qui utilise encore AS2 ?
    En espérant avoir été claire, je reste à disposition.

  • Help, advice needed for learning Action Script

    I don't have any experience with programing and even scripting and I can't find tutorials for total beginners. I started to read this one
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b8cbfe-7ff7.html
    but I have difficulties understanding the explanations.
    If you have any advice and pointers to tutorials for total dummy beginners I will greatly  appreciate it.

    I’m 27 years old and one month ago I started study ActionScript 3.0. After red a lot of forums with recommendations about what need to do for study as3 I clear next things:
    Try to visit forums about as3 and discus with people about your problems and also try to help other solve their problems (you can help a lot of people to solve their problems, you can find a lot answers to your questions, you can share your experience with others)
    Try to read books about as3 (in books you can find all theory and some examples for this theory, so this info will be very helpful for you, because it’s a fundamental knowledge what you must to know)
    Try to visit sites with tutorials (on the net you can find a lot sites with tutorials and there you step by step will study a lot of things)
    Share your knowledge with others (create your blog or something else where you will show to people your examples of work, where you will write about as3 and will share your experiences and knowledge, this can give you chance to consolidate your knowledge and give opportunity other people study as3)
    Try to separate big not understandable problem to smaller(after you find answer to all small problems you can find answer to big problem)
    And the main what you must remember then YOU MUST CODING EVERY DAY! (I think without it you never been a as3 coder.)
    I can recommend next sites witch can help you to study ActionScript 3.0:
    Books:
    <a href="http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/">http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/</a><br>
    <a href="http://www.amazon.com/Essential-ActionScript-3-0-Colin-Moock/dp/0596526946">Essential ActionScript 3.0</a><br>
    <a href="http://www.amazon.com/Learning-ActionScript-3-0-Beginners-Guide/dp/059652787X/ref=sr_1_2?i e=UTF8&s=books&qid=1261737552&sr=1-2">Learning ActionScript 3.0: A Beginner's Guide</a><br>
    <a href="http://www.amazon.com/ActionScript-Adobe-Flash-Professional-Classroom/dp/0321579216/ref=sr _1_6?ie=UTF8&s=books&qid=1261737552&sr=1-6">ActionScript 3.0 for Adobe Flash CS4 Professional Classroom in a Book</a><br>
    <a href="http://www.amazon.com/ActionScript-3-0-Game-Programming-University/dp/0789737027/ref=sr_1_ 7?ie=UTF8&s=books&qid=1261737552&sr=1-7">ActionScript 3.0 Game Programming University</a><br>
    <a href="http://www.amazon.com/ActionScript-3-0-Cookbook-Application-Developers/dp/0596526954/ref=s r_1_8?ie=UTF8&s=books&qid=1261737552&sr=1-8">ActionScript 3.0 Cookbook: Solutions for Flash Platform and Flex Application Developers</a>
    Forums:
    <a href="http://forums.adobe.com/community/flash/flash_actionscript3">http://forums.adobe.com/community/flash/flash_actionscript3</a><br>
    <a href="http://www.actionscript.org/forums/forumdisplay.php3?f=75">http://www.actionscript.org/forums/forumdisplay.php3?f=75</a><br>
    <a href="http://www.flasher.ru/forum/forumdisplay.php?f=83">http://www.flasher.ru/forum/forumdisplay.php?f=83</a>
    Blogs:
    <a href="http://theflashblog.com/">http://theflashblog.com/</a><br>
    <a href="http://www.mikechambers.com/blog/">http://www.mikechambers.com/blog/</a><br>
    <a href="http://as3journal.blogspot.com/">http://as3journal.blogspot.com/</a><br>
    <a href="http://flash-templates-today.com/blog/">http://flash-templates-today.com/blog/</a> <br>
    <a href="http://xitri.com/">http://xitri.com/</a><br>
    <a href="http://www.hamstersteam.com/">http://www.hamstersteam.com/</a><br>
    <a href="http://flash-animation.ru/">http://flash-animation.ru/</a><br>
    <a href="http://www.keyframer.com/">http://www.keyframer.com/</a>
    Tutorials:
    <a href="http://cookbooks.adobe.com/actionscript">http://cookbooks.adobe.com/actionscript</a><br>
    <a href="http://www.hongkiat.com/blog/30-free-flash-photo-galleries-and-tutorials/">http://www.hongkiat.com/blog/30-free-flash-photo-galleries-and-tutorials/</a><br>
    <a href="http://www.ilike2flash.com/">http://www.ilike2flash.com/</a><br>
    <a href="http://xuroqflash.com/">http://xuroqflash.com/</a><br>
    <a href="http://www.emanueleferonato.com/category/actionscript-3/">http://www.emanueleferonato.com/category/actionscript-3/</a><br>
    <a href="http://www.graphicmania.net/category/adobe-flash/">http://www.graphicmania.net/category/adobe-flash/</a><br>
    <a href="http://www.flashperfection.com/">http://www.flashperfection.com/</a><br>
    <a href="http://active.tutsplus.com/category/tutorials/">http://active.tutsplus.com/category/tutorials/</a><br>

  • Google Earth or other fun services for Flash C4

    I´m wondering if I can integrate Googles API in Flash CS4.
    I´ loolking for fun and useful API:s motsly for Sweden like:
    - translating
    - video upload and mapping
    - maps with uploaded local potos.
    - Gps position
    - Google Earth - not Flash earth (it´s boring)
    - ans so on.

    yes Google maps can be inserted in flash using Google Api for Flash.
    You can find more info on Google
    http://code.google.com/apis/maps/documentation/flash/

  • How to make a systemd service for a bash script with pipes?

    I haven't been able to make a successful systemd service from this script.
    The script itself works (in terminal and xdg autostart), but systemd doesn't run anything after the first pipe (neither sed nor spd-say execute).
    Here's my service:
    [Unit]
    Description=Speak kernel and userspace messages
    [Service]
    Type=simple
    ExecStart=/usr/local/sbin/dmesg-speak
    [Install]
    WantedBy=multi-user.target
    Systemd says the script starts successfully, but only dmesg is started; it's output is not piped through sed or spd-say.
    I've also tried Type=forking without much success.
    Is there something I can do other than switching to sysv-init?
    Do I need IgnoreSIGPIPE=false?
    Last edited by quequotion (2015-02-12 17:07:21)

    fsckd wrote:The linked script appears to lack a hashbang. No hashbang = arbitrary interpretor.
    Yeah, that should probably be there. Since last post I've employed /usr/bin/bash in the service and added a hasbang, but sdp-say still does not run as a systemd service.
    I didn't test either option individually; the key seems to be finding an audio output accessible before user login. I am not certain:
    ccoffey wrote:If a pulseaudio session exists at all
    I am curious to try this:
    ccoffey wrote:run pulseaudio and dbus via XVFB.
    Setting DISPLAY as root would then allow you play audio.
    Still, it seems to me that ALSA would be available at some stage during boot, as is speech-dispatcher (for working with speakup!). If espeak were configured to play audio for root to ALSA, there would be a sound outlet for it (espeak can be used in pipeline mode without speech-dispatcher if need be), and pulseaudio would be probably be OK with that whenever it got around to starting (audio passed through alsa gets piped through, regardless of its source right?).
    I have tried the script with espeak instead of spd-say without success.
    Last edited by quequotion (2015-02-26 03:06:24)

Maybe you are looking for