Facebook application using edge

Hi
i made a edge animation using the last version of edge animate (CC 2014.1). everything was working.    Then i tried to publish this edge as an facebook iframe application. this kind of app uses https access.
my edge was working using http or https : https://myurl.com/my_edge_project/sample.html
but in a iframe not :
<iframe frameborder="0" scrolling="no" width="790" height="790" src="https://myurl.com/my_edge_project/sample.html"></iframe>
this not working also :
<iframe frameborder="0" scrolling="no" width="790" height="790" src="http://myurl.com/my_edge_project/sample.html"></iframe>
i obtain this error   Javascript error in event handler! Event Type = symbol      (from edge.5.0.0.min.js or edge.5.0.1.min.js, edge create 2 files :-s seems it's a bug)
the workaround i found is to use an html file containing an iframe with my edge :
index.html (global) :   <iframe frameborder="0" scrolling="no" width="790" height="790" src="my_edge_project/sample.html"></iframe>
and in facebook to use this file index.html instead of directly  the edge sample.html file
then it's an iframe in a iframe :-(
I would like to know if someone have a better solution ?
Regards

Thanks Gil!
I am going to need sounds, so I will definitely try out the Edge Commons software there. For the app I'm creating, the videos need to be played seamlessly without player controls, and running offline. Now I am importing the .png file sequence into Edge, and going frame by frame w/ opacity. It's beginning to be cpu intensive, so the sprite sheets might have to do.
Jackson

Similar Messages

  • My Adobe Flash plugin is fully updated but it keeps crashing when I use Facebook applications

    My Adobe Flash plugin is fully updated but it keeps crashing when I use Facebook applications. What could cause of this crash?
    == This happened ==
    Not sure how often
    == 3 days ago
    ''locked by a moderator due to the age of this thread - please start you own thread and provide pertinent information about your problem''

    None of the 'fixes' Adobe or Firefox have, 'fix' anything. Mine crashes once every 5 minutes... this is bulls#!@ guys. I've sworn by FF for years, but I can't get any work done with this... I'm dumping FF

  • My Facebook applications have all shrunk using Firefox. I can not use the whole play area.

    My Facebook applications have all shrunk when I use Firefox. I updated versions of Firefox and this did not help.

    Hello Mary.
    Hopefully this support article is what you need:
    http://support.mozilla.com/en-US/kb/Websites+look+wrong

  • Closing an application using ios4

    Is there a way to close an application using ios4 without double tapping the home button and closing the application by holding down on the application and waiting for the red minus sign?
    Before you just had to hit the home button to exit the application, and now I'm not sure.
    Not sure it makes a difference if the applications are open, but I thought I'd like to know if there is a simple step to exit and close the application.
    Thanks in advance.

    I actually have noticed my battery is depleting faster since upgrading to iOS4. Basically I've noticed that every time I look at the battery sensor, it's gone down 1% from the last time I looked, and I'm checking it quite frequently. A test I ran was I had Facebook & TweetDeck open at the same time (just 2 apps). I posted a tweet on TweetDeck and found my battery was down 1% in the time it took to draft a small 140 character message. I don't know if that is something to do with the new OS but I do know writing a tweet didn't use up 1 whole percent of my battery before. I think the new OS was really meant for the iPhone 4 and the 3GS was just like an afterthought. Maybe its not the multitasking per se, maybe it's just the new OS eats through more battery naturally but either way, it kind of ***** for those of us who live on our 3GS iPhones and are not eligible to upgrade.

  • How does Facebook application utilize Blackberry push based architecture?

    Hi Friends,
    I have posted this message in Blackberry Java Development forum. But was told that "if you are not RIM you will not be able to use the push-architecture with BIS". 
    Here goes the actual message. Please provide your valuable inputs.
    I am developing an Blackberry client application which will be similar to Facebook application for Blackberry.
    Since, this application can be  download by any blackberry user who would be subscribed to different BES or BIS, how will the push based architecture of BB work here.
    See my previous post 'Push content to devices on different BES' (http://supportforums.blackberry.com/rim/board/message?board.id=java_dev&message.id=3196&jump=true#M3196), which says that push will work through BES.
    If that is the case,
    How does the FaceBook application for Blackberry work?
    Users who download the Fackebook application will definetly not be on the same BES or might be on BIS as well.
    Then how will Facebook application receive notificatios and messages instantly using blackberry's push architecture?
    (http://www.blackberry.com/news/press/2007/pr-24_10_2007-01.shtml)
    Does RIM provide any framework or support for developing facebook like applications which would utilize push architecture irrespective of BES or BIS?
    Thanks,
    Suresh.

    Facebook doesn't use the BlackBerry network, it uses the standard data network.  If you're on BES, that typically is routed through your BES server.  If you're not on a BES, it will use BIS.
    I don't believe the application is a "push" application either - it's more likely a real time IM client. 
    Jerry

  • How do I configure an enterprise application using Weblogic 10 wlconfig

    Hi All,
    I am converting an installer from WL8 to WL10. We use wlconfig to configure our EAR in wl8 with several wlconfig commands. These don't seem to work though when attempting to use wl10. The following error comes up more often than not and does not seem to be appropriate to what is actually happening.
    Unable to create new bean of type WebAppComponent for pcidomain_new:Name=GenPortal,Type=Application:missing create method
    I have searched the Weblogic Documentation and have found only general information on how to use wlconfig with a simple example that does not touch on application deployment. I have also found an MBean Reference but am unclear as to how to marry the two.
    It would be really great if someone knew where I might find a concrete example of creating an Enterprise application using WL10.
    Here is the current wlconfig task that we use successfully in weblogic 8.
    ${server-mbean} is read in earlier with a wlconfig query command.
              <wlconfig url="t3://${env.COMPUTERNAME}:${weblogic_port}" username="${weblogic_username}" password="${weblogic_password}">
                   <create type="Application" name="GenPortal" property="GenPortalApp">
                        <set attribute="Path" value="${domain_home}/${domain_name}/applications/GenPortal.ear" />
                        <set attribute="StagingMode" value="nostage" />
                        <set attribute="TwoPhase" value="true" />
                        <create type="WebAppComponent" name="GenPortal">
                             <set attribute="Targets" value="${server-mbean}" />
                             <set attribute="URI" value="GenPortalWebApp.war" />
                        </create>
                        <create type="EJBComponent" name="GenPortalEJB">
                             <set attribute="Targets" value="${server-mbean}" />
                             <set attribute="URI" value="GenPortalEJB.jar" />
                        </create>
                        <create type="EJBComponent" name="BidEvaluatorEJB">
                             <set attribute="Targets" value="${server-mbean}" />
                             <set attribute="URI" value="BidEvaluatorEJB.jar" />
                        </create>
                        <create type="EJBComponent" name="BidFormulatorEJB">
                             <set attribute="Targets" value="${server-mbean}" />
                             <set attribute="URI" value="BidFormulatorEJB.jar" />
                        </create>
                        <create type="EJBComponent" name="ConfiguratorEJB">
                             <set attribute="Targets" value="${server-mbean}" />
                             <set attribute="URI" value="ConfiguratorEJB.jar" />
                        </create>
                        <create type="EJBComponent" name="ISOCommunicationEJB">
                             <set attribute="Targets" value="${server-mbean}" />
                             <set attribute="URI" value="ISOCommunicationEJB.jar" />
                        </create>
                        <create type="EJBComponent" name="LMPManagerEJB">
                             <set attribute="Targets" value="${server-mbean}" />
                             <set attribute="URI" value="LMPManagerEJB.jar" />
                        </create>
                        <create type="EJBComponent" name="ScriptCalcEJB">
                             <set attribute="Targets" value="${server-mbean}" />
                             <set attribute="URI" value="ScriptCalcEJB.jar" />
                        </create>
                        <create type="EJBComponent" name="SettlementEJB">
                             <set attribute="Targets" value="${server-mbean}" />
                             <set attribute="URI" value="SettlementEJB.jar" />
                        </create>
                   </create>
                   <create type="StartupClass" name="PCI_Initializer">
                        <set attribute="Targets" value="${server-mbean}" />
                        <set attribute="ClassName" value="com.pci.gtdw.bean.Initialize" />
                        <set attribute="Arguments" value="port=${weblogic_port},user=background,password=${background_user_password},debug=false,loggerLevel=debug" />
                   </create>
                   <set mbean="${domain_name}:Name=${domain_name},Type=JTA" attribute="TimeoutSeconds" value="1200" />
              </wlconfig>
    As I mentioned earlier right now this fails with when trying to create the WebAppComponent as seen in the error message above.
    Thanks for any help you can provide.

    Here's a couple ideas:
    1. Easier, but with non-deterministic response time:   Wire the button up to one of your I/O pins and poll it.  When you detect the button, issue a software call to stop the pulse train.  If the duration of the button press may be short compared to your polling rate, then wire it to a counter source pin and perform edge counting.  When you poll any value > 0, the press has happened.  (Sometimes the value may be >1 if the switch has "bounce").
    2. Trickier, but with deterministic hardware timing:  Configure another counter, call it counter B, for triggered pulse generation.  Wire/configure the button as the trigger.  Make sure that the "high time" of the pulse is long enough to let your software respond, if needed.   Also configure your original continuous pulse train counter to use Ctr B's output as a "pause trigger", specifying to pause when high.   When the button is pressed, counter B will fire a pulse and that pulse will inhibit your original counter's pulse generation.  In short, the pulses will stop until counter B's pulse has completed its full duration.  Your software can monitor for this series of events and stop the original counter task if needed.
    -Kevin P.

  • Facebook application is out of order.

    I loaded new update by Facebook application. After then loading, Facebook application has been out of order. O wanna use the application but not open. this application alerts network error

    Here is the link to Apple's Knowledge Base article on troubleshooting portables that won't turn on or start up:
    http://docs.info.apple.com/article.html?artnum=50959
    If nothing there helps, try plugging it in with the adapter and picking it up in your left palm to the left of the trackpad and squeeze the case there between your palm and left thumb as you push the power button. Do not let up the pressure on the case. Continue applying this pressure as for several minutes in an attempt to start up. Does pressure on the case there allow it to start up?

  • Facebook application grow large file size

    Why facebook applications grow larger and larger file size. What can I do. Since this program is to use the file size is big time. I use facebook version 4.0.3 on iphone4 run on iOS 5.0.1.
    thank you.
    Eak.

    Most of the logs rotation for the different componets can be set in EM console but if you just want to do it with a cron or script here is what I have used in the past. Edit it to your needs.
    #!/bin/sh
    ORACLE_HOME=/home/oracle10FRS
    apache_logs=$ORACLE_HOME/Apache/Apache/logs
    webcache_logs=$ORACLE_HOME/webcache/logs
    sysman_logs=$ORACLE_HOME/sysman/log
    j2ee_logs=$ORACLE_HOME/j2ee/OC4J_BI_Forms/log/OC4J_BI_Forms_default_island_1
    also_j2ee=$ORACLE_HOME/j2ee/home/log/home_default_island_1
    max_size=1500000000
    for file in `ls $apache_logs/*_log`
    do
         size=`ls -l $file | awk '{print $5}'`
         echo "File $file is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$file
         fi
    done
    for wfile in `ls $webcache_logs/*_log`
    do
         size=`ls -l $wfile | awk '{print $5}'`
         echo "File $wfile is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$wfile
         fi
    done
    for sfile in `ls $sysman_logs/*log`
    do
         size=`ls -l $sfile | awk '{print $5}'`
         echo "File $sfile is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$sfile
         fi
    done
    for jfile in `ls $j2ee_logs/*.log`
    do
         size=`ls -l $jfile | awk '{print $5}'`
         echo "File $jfile is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$jfile
         fi
    done
    for j2file in `ls $also_j2ee/*.log`
    do
         size=`ls -l $j2file | awk '{print $5}'`
         echo "File $j2file is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$j2file
         fi
    done

  • I am a new using Adobe products, and I am creating an Animation using Edge Animation.....

    Hi guys.
    As I said, I am new working with Adobe products, like Dw, and now I am creating an animation using Edge Animation.
    Actually, I am creating a carrousel with different pictures representing three different apps being displayed from different devices, moving them and creating a simulated
    movement for each one, based  on the functionality, that action should be activated by a button (i.e.) titled "Inventory", the action to execute is to move
    the three related screens ( Desktop, Ipad and Iphone ) from the original position  to the middle screen, but at the same time, and this is what I need to know,
    If there is another set of screens for a different application, how to move those back to the original position, before moving
    the selected one, "Inventory". I tried to use a duplicated transition and inverting, it works, but it doesn't stop waiting for a new action, and how to combine
    that movement back with the selected app-transition?
    I put  two screenshots with the stage and the original position for all of them. I have not created the buttons yet. I imagine I should use some kind
    of conditional statements to execute the action sending back  those elements  located in the middle  of screen, because were selected before,
    and then execute to animation to move the selected app.
    I would appreciate your help on this matter.
    Thanks.
    Gustavo Hevia
    original Position.
    After the First animation for Inventory App.

    No answers, Ok.
    I will try to give you more information about I want to do.
    I am a Filemaker Developer, and I started creating my webpage, and one of thing I would like to do is this
    animation and put it on my website.
    What I want is to simulate a carrousel of options to show the selected application using the three buttons,
    Now, I put the three buttons and each one of them is moving the three corresponding applications, that's fine.
    But the issue I have :
    I am using Mouseover and Mouseout to show a different color and size of the buttons, and to execute the
    corresponding animation.
    For each event I created different labels : Inventory_hover ; Inventory_mouseover ; Inventory_Animation and
    Inventory_Animation_Reverse and so on.
    Testing that
    After I selected one of them, and it ended moving the three pictures to the center of the screen, and then I
    leave, the three screens moved to the original position, which is not a bad idea, but I want to control that
    moving.
    So, what I want as a summary is :
    1) to control that back movement. I was trying to figure out how to add some code inside the Animation code, and
    just before execute that animation, check if there is another application selected before, and then move that
    set of pictures back to the original position, since I have only three applications pictures, and only one can move
    at the time, the checking "If Statements" would be for two others conditions.
    2) That should be done only when one of the buttons is clicked, and not when the mouse leaves the buttons like it
    is happening now.
    I attached a zip file with my EA files.
    Thank you in advance, Any help would be really appreciated.

  • I have updated my facebook application to the latest one and it is not working..what should i do?

    I have updated my facebook application to the latest one and it is not working...i deleted it and reinstalled it and still not working..what shoul i do?Thank you.

    cristinar wrote:
    I have updated my facebook application to the latest one and it is not working...i deleted it and reinstalled it and still not working..what shoul i do?Thank you.
    As suggested try a reset: Simultaneously hold down the Home and On buttons until the iPad shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the iPad back on using the On button. In some cases it also helps to double click the Home button and close all apps from the tray before doing the reset.
    Also, it might help if you provide a little more detail on what you mean by "not working"

  • TS1702 I updated Facebook application and I can't open it it shut down immediately

    I updated Facebook application and I can't open it it shut down immediately what shall I do ?
    And how to change my Facebook profile picture or  cover photo from my I pad ?

    Try giving it a reset. Hold down the sleep and home keys, past when you see the red power down slider and until you see the silver apple. Let it reboot and try again.
    If that doesn't work, look in the app's page in itunes. It's entirely possible Facebook has put out a 'bad update' that is crashing. Look in the reviews to see if others have your problem.
    There are other ways to use Facebook without the app. You can use safari to access either the regular facebook site or m.facebook.com . or you can look for third party apps. I have one called Facely but there are others.
    the 'official' facebook app is buggy at best.

  • Facebook Application for N96

    Are there any free of charge facebook applications in the uk that allow me to post photos straight to my profile without having to text them and incure charges.  I used the widsets facebook application before and loved the way it worked but now this has been closed. What do you guys and girls reccomend?????
    I dont pretend to know everything like some people on these boards i am just trying to help. Its not all about the kudos.

    i must be stupid. I have been trying to get that to work but i cant. i have downloaded the widget signed up given permision to let them post my photo's and when i send them they dont goto facebook. any ideas what im doing wrong?
    I dont pretend to know everything like some people on these boards i am just trying to help. Its not all about the kudos.

  • E7 facebook applications

    Hy, I am thinking of buying and E7 or N8, can't really decide.. the main problem would be that I checked with Ovi store and none of them seem to be compatible with the Facebook application... do they have it pre-installed ..? I actually need to upload photos and eventually check in some places ... not just change my status... Thank you very much.

    There are LOADS of FB apps or workarrounds for Symbian^3 phones, all the ones Rad suggested are good, I use Gravity and Snaptu, but also the Socially app, which I like and find useful for 'multiple posts' if I want to say the same thing on more than one social site. I also find either the Mobile or Full site work really well on Opera mobile and so save both FB and Twitter as one of my 'Tiles' on opera mobile
    http://snaptu.com/
    http://m.sociallyapp.com/dnld/
    http://www.opera.com/mobile/download/
    All the above are free as is the Social app which comes with Symbian^3 and Check in built into Ovi maps.
    I would really reccommens Gravity, but it is a paid app and if you don't use Twitter, you won't get the full benefit of it.
    Both phones are great IMHO and I use the E7, if your main priority is photography then the N8 is a better choice.
    Good Luck
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Facebook application Blocked

    I bought the Blackberry Torch 9800 from my company. The Facebook application is blocked, message as followed:
    "This application have been blocked by your corporate system administrator. Contact your system administrator for more information".
    Would you be able to help me to unblocked so that I can used the Facebook via wifi.
    Solved!
    Go to Solution.

    Hi and Welcome to the Community!
    If your BB remains activated on your company system, then you need to talk to your BES admins about this...they are enforcing that blockage via BES IT Policy.
    If instead you mean that you are separated from your company and  no longer using their services, then their BES admins did not properly cleanse your device when they gave it to you. In that case, you need this:
    KB31291 How to reset a BlackBerry smartphone to factory settings using BlackBerry Desktop Software
    You'll of course need a full backup first, instructions for which you can find in my auto-sig on this post. But, when you restore, be sure to NOT do a full restore...only do a selective restore of only those databases you need (e.g., contacts, calendar, etc.), especially avoiding any databases that have anything to do with IT Policy, Enterprise, etc. If you do restore those, you'll just wind up back where you are now as those will dutifully restore the IT Policy back to your BB.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • After Firefox updated itself to 3.6.12 I lost sound regarding all facebook applications

    after Firefox updated itself to 3.6.12 I lost sound regarding all facebook applications and videos. I have installed the latest flash and that doesn't solve the problem

    After Firefox updated to 3.6.12, my homepage stated that I did not have the Flash Player installed. The latest player was installed, but I uninstalled and attempted to re-install. The installation process worked, but the Adobe Flash banner on their page does not Flash like when a proper install occurs. The Adobe DLM add on will not allow me to change options on Firefox Addon page. Now Flash content on homepage will not play, and I am forced to use IE to view content.

Maybe you are looking for

  • External hard drive won't appear on desktop

    I just bought a Western Digital passport 250gb external hard drive and when I plug it into my iBook G4 (version OS 10.4.10) it will not appear (via usb 2.0). I tried plugging it into a macbook and it appeared. Any ideas would be very much appreciated

  • I want to listen to internet radio as I used to do. The selection "Radio" has gone from my list under "Music". How do I get it back again?

    I want to listen to internet radio as I used to do. The selection "Radio" has gone from my list under "Music". How do I get it back again?

  • Binary file of unknown formats

    Hello everybody, I posted a message earlier today but unfortunately I missed to give more details about my problem. I am sorry about that. I am a new user of LabView so I still have many things to learn. What I am trying to do is use LabView (8.2) to

  • C7 Conversations Problem

    Hello, My device's default message view is Conversations and it's set to notify receiving a message by blinking the Menu button. My system is updated to Anna and there hasn't been any problems with it since then. Upgrade was perfect without any error

  • Document Flow not updated in CRM from ECC

    Hi Experts, We are having a scenario where we are creating Service Orders in CRM, which in turn creates a meterial reservation document in ECC for the spare part items. However, the material reservation number is not getting updated in the document f