Pages

Showing posts with label 0. Show all posts
Showing posts with label 0. Show all posts

Tuesday, February 3, 2015

Insert Vimeo Youtube videos in PowerPoint slides with authorSTERAM Desktop 2 0

authorSTREAM the online presentation sharing platform has released the second version of their free PowerPoint add-in called authorSTREAM Desktop. As compared to authorSTREAM Desktop 1.0 which was launched almost two years back, the latest version lets you search and insert videos from Vimeo in addition to YouTube. It also lets you search images from Flickr and Bing right from within the PowerPoint.

Most amazing thing which authorSTREAM has done is its advance search and filters. authorSTREAM not only allows you to search images on different parameters like color, size or type but also on the basis of  licensing information. You can search creative commons stuff from Flickr and that too without leaving the PowerPoint. authorSTREAM also inserts the attribution text in the slides along with the images to help users get rid of some of the copyright worries.You can also create a collection of selected images or videos to be used later in the slides.



authorSTREAM Desktop with the addition of more video and image search APIs should help PowerPoint users create effective presentation with just few clicks.
Read more »

Tuesday, January 27, 2015

PIRANHA Business Tab 7 0 GPS Tablet Firmware

PIRANHA (GPS) Business Tab 7.0

Allwinner A10 CPU Firmware 

Tablet SPEC:


 Allwinner A10
 1.4 GHz Processor
 GPS
 8 GB Flash Memory
 1 GB DDR3 RAM
 0.3 MP Front Camera
 HDMI
 3G
 WIFI Tablet PC

you can use this Android Tablet firmware,  ROM to restore your Android China tablets to generic firmwares or upgrades . Make sure to charge battery upto 60%. Power failure during flashing may result dead or broken tablets.
Note : Consider flashing Stock firmwares , as a last option.



Download 4.0 FOR GPS P435.
Click here to download 4.0 for P415


Before Proceeding must read :


What board id ,BoxChip,CPU Chip ,does my tablet pc have ? 

Things to remember before Flashing Tablet Pc 

Frequently Asked Question about Tablets 

Required Flashing Tools & Tutorials 





  • Tablet Flashing Tool :  Firmware upgrade tool LiveSuit & Drivers
  • Tablet Flashing Tool:   Firmware upgrade Tool Phoenix Usb Pro
  • Flashing with SD Card:Firmware update instruction with microSD card 
  • Live Suit Tutorial :  how to flash tablet with LiveSuit    

  • When Flashing a tablet is necessary ? 

    Restoring your tablet PC or smartphones to stock ROM is necessary when android tablet or smartphones faces the following problems. 
    1. Forgotten Pattern Lock on Android Tablets. (If undone by Hard reset)
    2.Too many pattern attempts / Reset user lock.(If undone by Hard reset)
    3. Tablets PC stuck on Gmail account.
    4. Android Tablet PC stuck on Android logo.
    5.Unexpected error / Force close errors generate by Android operating system .
    6. Tablet Android  hang on start-up / Multiple errors generating by OS. 
    7. Market Android / Google play having problems or generating errors. 
    8.Upgrading to new Android version.
    Read more »

    Monday, January 19, 2015

    Onda vx610w 7” luxury version official Android 2 3 v2 0 5 firmware

    Android 2.3 v2.0.5 firmware for Onda vx610w luxury v1 version.

    What’s new:
    1).Improve the ROM space to 1GB from 512MB;
    2).Add more 3G dongles support;
    3).Pre-installed app “Onda market”;
    4).Pre-installed app “QQ game”;
    5).Pre-installed app “Google Android Market”;
    6).Optimized local video and online video play;
    7).Improve stability of RJ45 ethernet internet;
    8).Add more formats of external hard drive;
    9).Add suport of IDX+SUB video subtitle;
    10).Improve performance of camera;
    11).Improve response of capacities touch screen;
    Click here to download 2.3-v2.05
    Before you do any firmware-install,please make sure your device is fully charged!
    Read more »

    Saturday, January 17, 2015

    Formatting Externally Loaded Text In Flash ActionScript 3 0

    This article is a continuation of the Loading External Text Files In Flash ActionScript 3.0 tutorial. In this lesson, well be using a TextFormat object to style our externally loaded text. So lets go back to the code and create the ff:
    • a TextFormat object (lets name it textStyle)
    • some text formatting properties (lets change the font and the size)
    var myTextField:TextField = new TextField();
    var textURL:URLRequest = new URLRequest("summer.txt");
    var textLoader:URLLoader = new URLLoader();

    // This next line creates the TextFormat object which will be used to
    // change the text formatting
    var textStyle:TextFormat = new TextFormat();

    addChild(myTextField);

    // Add in some formatting properties using the TextFormat object.
    // Lets change the font to Verdana and the size to 14
    textStyle.font = "Verdana";
    textStyle.size = 14;


    myTextField.border = true;
    myTextField.multiline = true;
    myTextField.wordWrap = true;
    myTextField.width = 215;
    myTextField.height = 225;
    myTextField.x = 300;
    myTextField. y = 50;

    After creating the TextFormat object and setting some properties, well then need to apply the TextFormat object to our TextField. Otherwise, we wont see any formatting changes. To assign the TextFormat object to the TextField, well use the setTextFormat() method of the TextField class. The TextFormat object is passed to this method as a parameter. Thats how it gets assigned to a specific TextField. Also, the setTextFormat() method must be used only after the text has been assigned to the TextField and not before. So in this example, well need to add this inside the displayText function, right after the line that says myTextField.text = e.target.data; .
    function displayText(e:Event):void 
    {
    myTextField.text = e.target.data;
    // This next line assigns the textStyle TextFormat object
    // to the TextField with the instance name myTextField
    myTextField.setTextFormat(textStyle);

    }
    So now, if you test the movie, you should see the formatting changes applied to the text.

    Heres the code in full:
    import flash.text.TextField;
    import flash.net.URLRequest;
    import flash.net.URLLoader;
    import flash.text.TextFormat;

    var myTextField:TextField = new TextField();
    var textURL:URLRequest = new URLRequest("summer.txt");
    var textLoader:URLLoader = new URLLoader();
    var textStyle:TextFormat = new TextFormat();

    addChild(myTextField);

    textStyle.font = "Verdana";
    textStyle.size = 14;

    myTextField.border = true;
    myTextField.multiline = true;
    myTextField.wordWrap = true;
    myTextField.width = 215;
    myTextField.height = 225;
    myTextField.x = 300;
    myTextField. y = 50;

    textLoader.addEventListener(Event.COMPLETE, displayText);

    function displayText(e:Event):void
    {
    myTextField.text = e.target.data;
    myTextField.setTextFormat(textStyle);
    }

    textLoader.load(textURL);

    Youll also notice that all the text does not fit inside the TextField anymore (since we made the font size larger). In the next part, well fix this by learning how to add a scrolling functionality for our TextField.

    PREV: Loading External Text Files In Flash ActionScript 3.0
    NEXT: Completing The Project: Adding Text Scrolling
    Read more »